cxs is a local-first CLI for searching Codex session logs. It is designed for progressive retrieval: find the right session first, then read
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(skill): 改为安装命令加指南链接

cat bf292512 966fa243

+13 -20
+2 -12
.agents/skills/cxs/SKILL.md
··· 1 1 --- 2 2 name: cxs 3 - description: "用 cxs 对 Codex session 日志做渐进式检索:find -> read-range -> read-page。Requires local cxs CLI in PATH or CXS_BIN. 用于用户说之前、上次、前几天、昨天、我记得我配过、我试过、我们讨论过、翻一下之前的 session、找那次我跑通的命令、之前那个 codex 对话、以前 debug 过的问题、历史对话、codex 历史、session 历史,或者需要在 ~/.codex/sessions 里定位一段对话、但又不想把整批 JSONL 拉进来读。不是用来做当前仓库代码搜索、读当前文件、查外部文档、总结今天提交或收尾当前会话。Also triggers on English: 'last time I', 'earlier session', 'did we already', 'I remember configuring', 'previous codex chat', 'search my codex history'." 3 + description: "用 cxs 对 Codex session 日志做渐进式检索:find -> read-range -> read-page。用于用户说之前、上次、前几天、昨天、我记得我配过、我试过、我们讨论过、翻一下之前的 session、找那次我跑通的命令、之前那个 codex 对话、以前 debug 过的问题、历史对话、codex 历史、session 历史,或者需要在 ~/.codex/sessions 里定位一段对话、但又不想把整批 JSONL 拉进来读。不是用来做当前仓库代码搜索、读当前文件、查外部文档、总结今天提交或收尾当前会话。Also triggers on English: 'last time I', 'earlier session', 'did we already', 'I remember configuring', 'previous codex chat', 'search my codex history'." 4 4 --- 5 5 6 6 # cxs ··· 9 9 10 10 ## 安装 11 11 12 - 先准备 `cxs` CLI,再装 skill: 13 - 14 12 ```bash 15 - git clone https://github.com/catoncat/cxs.git 16 - cd cxs 17 - bun install 18 - export CXS_BIN="$PWD/bin/cxs" 19 13 npx skills add catoncat/cxs --skill cxs -g -a codex -y 20 14 ``` 21 15 22 - 只想看仓库里的 skill 时: 23 - 24 - ```bash 25 - npx skills add catoncat/cxs --list 26 - ``` 16 + CLI install guide: https://github.com/catoncat/cxs#cli-install-guide 27 17 28 18 ## 路径前提 29 19
+11 -8
README.md
··· 35 35 bun install 36 36 ``` 37 37 38 + ## CLI Install Guide 39 + 40 + ```bash 41 + git clone https://github.com/catoncat/cxs.git 42 + cd cxs 43 + bun install 44 + export CXS_BIN="$PWD/bin/cxs" 45 + ``` 46 + 38 47 要求: 39 48 40 49 - Bun `>= 1.3` ··· 200 209 npx skills add catoncat/cxs --list 201 210 ``` 202 211 203 - 先准备 `cxs` CLI,再安装 skill: 212 + CLI install guide: 204 213 205 - ```bash 206 - git clone https://github.com/catoncat/cxs.git 207 - cd cxs 208 - bun install 209 - export CXS_BIN="$PWD/bin/cxs" 210 - npx skills add catoncat/cxs --skill cxs -g -a codex -y 211 - ``` 214 + `https://github.com/catoncat/cxs#cli-install-guide` 212 215 213 216 注意: 214 217