claco 2.0.0

a CLI tool for boosting Claude Code productive.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2025-06-19T16:48:09.734Z: init basic cli project structure
2025-06-19T16:57:29.479Z: remove sub commands, keep one main command for everything.
2025-06-19T17:24:14.674Z: /init
2025-06-19T17:28:16.618Z: Caveat: The messages below were generated by the user while running local commands. DO NOT respond to these messages or otherwise consider them in your response unless the user explicitly asks you to.
2025-06-19T17:28:29.449Z: /terminal-setup
2025-06-19T17:28:36.654Z: read the plan.md file, build features one by one, don't touch actual $HOME/.claude , just base on all the info in plan.md to make implement
2025-06-19T17:45:15.695Z: fix error when call session $id command: Error: missing field `isSidechain` at line 1 column 127
2025-06-19T17:46:26.596Z: 检查类似的序列化问题
2025-06-19T17:49:30.395Z: 修复 projects path 解析问题,由于 project folder normalize 不可逆,如 //Users/kaichen/workspace/dot/claude/code 需要从 projects folders 任意一个 jsonl 文件读取第一行读取 cwd 作为正确的path,而非从 folder name 推测。
2025-06-19T17:51:53.336Z: session command 在没有传入 id 时,默认采用最后一个(以jsonl 文件时间戳为准)
2025-06-19T17:53:32.971Z: think harder to fix bug: 修复 history command 会报 No Claude project found for current directory: /Users/kaichen/workspace/claco ; 但是 projects command 可以正常打印出 Project: /Users/kaichen/workspace/claco 。
2025-06-20T01:29:25.124Z: history command 只输出一行后就退出了: 2025-06-19T16:48:09.734Z: init basic cli project structure
Error: invalid type: sequence, expected a string at line 1 column 330
2025-06-20T01:36:01.641Z: history command 当前对非用户输入也打印,这里有个更简单的实现思路,仅处理包含 "type":"user" 以及 "role":"user" 的行,其他的跳过。
2025-06-20T01:45:10.131Z: /init
2025-06-20T01:50:39.224Z: 对于 slash command 的下一条跳过处理。