tako-cli 0.3.26 → 0.3.28
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 +16 -0
- package/dist/index.js +705 -657
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,6 +99,21 @@ Manage persistent AI agent sessions from CLI or TUI. Sessions survive shell rest
|
|
|
99
99
|
|
|
100
100
|
从 CLI 或 TUI 管理持久化的 AI agent 会话。会话跨 shell 重启保持。
|
|
101
101
|
|
|
102
|
+
### Native Session Search / 原生会话搜索
|
|
103
|
+
|
|
104
|
+
Launcher 项目列表第一项按 `↑` 即可进入历史会话搜索,统一检索 Claude Code、Codex 和 Gemini 的本地 session。搜索框留空时直接浏览最近会话,Claude/Codex 按 `Enter` 续接,Gemini 按 `Enter` 查看详情,按 `→` 均可查看最近对话。
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
tako sessions search "支付回调"
|
|
108
|
+
tako sessions search "upstream timeout" --deep
|
|
109
|
+
tako sessions resume codex:<session-id>
|
|
110
|
+
tako sessions index --status
|
|
111
|
+
tako sessions index --rebuild
|
|
112
|
+
tako sessions index --clear
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
索引完全保存在本机 `~/.tako/session-index/`,目录权限为 `0700`、数据库文件权限为 `0600`。默认搜索排除 system/developer prompt;`--deep` 才包含工具输出和 reasoning。当前 Gemini 历史仅支持搜索和查看,不会伪装成可续接会话。
|
|
116
|
+
|
|
102
117
|
```bash
|
|
103
118
|
tako agent run claude --prompt "fix the failing tests" --json # One-shot task / 一次性任务
|
|
104
119
|
tako agent start claude --model claude-sonnet-4-6 # Create session / 创建会话
|
|
@@ -187,6 +202,7 @@ curl -fsSL https://raw.githubusercontent.com/tako-dev/cli/main/skills/model-benc
|
|
|
187
202
|
| 🧪 Agent test plan / 测试计划 | [`docs/agent/TESTPLAN.md`](docs/agent/TESTPLAN.md) |
|
|
188
203
|
| 💰 Quota module / 用量模块 | [`docs/quota/DESIGN.md`](docs/quota/DESIGN.md) |
|
|
189
204
|
| 🚢 Release runbook / 发版手册 | [`docs/release/RUNBOOK.md`](docs/release/RUNBOOK.md) |
|
|
205
|
+
| Maintainer release rule | Releases are tag-driven through GitHub Actions; see [`AGENTS.md`](AGENTS.md) before publishing. |
|
|
190
206
|
| 🤖 tako-agent skill | [`skills/tako-agent/SKILL.md`](skills/tako-agent/SKILL.md) |
|
|
191
207
|
| 📊 Model benchmark & picker / 选模型指南 | [`skills/model-benchmark/SKILL.md`](skills/model-benchmark/SKILL.md) |
|
|
192
208
|
| 🐛 Issues & feedback | [GitHub Issues](https://github.com/tako-dev/cli/issues) |
|