@halooojustin/cch 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/README.zh-CN.md +2 -2
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -43,9 +43,9 @@ Then you can just tell Claude Code things like "find my iOS debugging conversati
|
|
|
43
43
|
Just describe what you remember. AI finds the session.
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
ch
|
|
47
|
-
ch the one where I was deploying
|
|
48
|
-
ch
|
|
46
|
+
ch the iOS debugging session
|
|
47
|
+
ch the one where I was deploying openclaw
|
|
48
|
+
ch the wallet refactor last week
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
`ch` pipes your query + session list to `claude -p` (tries Haiku first for speed, falls back to default model), which returns the best matches. Pick one and it resumes in your multiplexer.
|
|
@@ -121,7 +121,7 @@ Descriptions you pass to `ch new` are used in multiple places:
|
|
|
121
121
|
|
|
122
122
|
- **Zellij tab name** — visible in the tab bar when inside the session (supports Chinese)
|
|
123
123
|
- **`ch ls` output** — shown next to the session name
|
|
124
|
-
- **Session name** — English descriptions are included in the session name (e.g. `ch-
|
|
124
|
+
- **Session name** — English descriptions are included in the session name (e.g. `ch-myproject-fix-login-bug`), Chinese descriptions use a hash fallback (e.g. `ch-myproject-a1b2c3`) since Zellij session names don't support CJK
|
|
125
125
|
|
|
126
126
|
## Configuration
|
|
127
127
|
|
package/README.zh-CN.md
CHANGED
|
@@ -45,7 +45,7 @@ cp -r $(npm root -g)/cch/skill ~/.claude/skills/cch
|
|
|
45
45
|
```bash
|
|
46
46
|
ch 上次帮我调试 iOS 的那个对话
|
|
47
47
|
ch 帮我部署虾的那几个
|
|
48
|
-
ch
|
|
48
|
+
ch demo 钱包重构的那个
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
`ch` 会把你的描述和会话列表一起发给 `claude -p`(优先使用 Haiku 模型加速,失败自动回退到默认模型),返回最匹配的结果。选中后直接在终端复用器里恢复。
|
|
@@ -121,7 +121,7 @@ ch kill ch-myproject-fix-auth
|
|
|
121
121
|
|
|
122
122
|
- **Zellij tab 名** — 进入会话后在 tab 栏可见(支持中文)
|
|
123
123
|
- **`ch ls` 输出** — 显示在会话名旁边
|
|
124
|
-
- **会话名** — 英文描述直接拼入会话名(如 `ch-
|
|
124
|
+
- **会话名** — 英文描述直接拼入会话名(如 `ch-myproject-fix-login-bug`),中文描述使用哈希缩写(如 `ch-myproject-a1b2c3`),因为 Zellij 会话名不支持 CJK 字符
|
|
125
125
|
|
|
126
126
|
## 配置
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halooojustin/cch",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Claude Code History — AI-powered conversation history management with Zellij/tmux session support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"cli"
|
|
24
24
|
],
|
|
25
25
|
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/halooojustin/cch"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/halooojustin/cch#readme",
|
|
26
31
|
"files": [
|
|
27
32
|
"dist/",
|
|
28
33
|
"bin/",
|