cc-claw 0.8.1 → 0.10.0

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 CHANGED
@@ -4,13 +4,13 @@
4
4
  <img src="assets/cc_claw.png" alt="CC-Claw Logo" width="500" />
5
5
  </p>
6
6
 
7
- A personal AI assistant on Telegram, powered by coding CLIs. CC-Claw uses **Claude Code**, **Gemini CLI**, and **Codex** as interchangeable backends — giving you a multi-model AI assistant accessible from any device.
7
+ A personal AI assistant on Telegram, powered by coding CLIs. CC-Claw uses **Claude Code**, **Gemini CLI**, **Codex**, and **Cursor** as interchangeable backends — giving you a multi-model AI assistant accessible from any device.
8
8
 
9
- Send text, voice, photos, documents, or videos. Switch backends with `/claude`, `/gemini`, or `/codex`. Spawn sub-agents across different CLIs to work in parallel. Schedule recurring tasks. All state persists in SQLite.
9
+ Send text, voice, photos, documents, or videos. Switch backends with `/claude`, `/gemini`, `/codex`, or `/cursor`. Spawn sub-agents across different CLIs to work in parallel. Schedule recurring tasks. All state persists in SQLite.
10
10
 
11
11
  ## What Can It Do
12
12
 
13
- - **Multi-backend AI** — Switch between Claude, Gemini, and Codex mid-conversation. Each backend supports per-model thinking levels.
13
+ - **Multi-backend AI** — Switch between Claude, Gemini, Codex, and Cursor mid-conversation. Each backend supports per-model thinking levels.
14
14
  - **Agent orchestration** — Spawn sub-agents using native CLI tools (Claude Agent, Codex spawn_agent, Gemini @subagent) or CC-Claw's cross-backend orchestration. `/agents mode` switches between native (fast, same-backend) and orchestrated (cross-backend, inbox, whiteboard, task board). Auto mode detects intent and picks the right one.
15
15
  - **Agent templates** — Define reusable agent personas as markdown files (`~/.cc-claw/agents/*.md`). Security reviewers, content writers, researchers — spawn them by name.
16
16
  - **Scheduling** — Cron jobs, one-shot tasks, and intervals. Per-job backend, model, and delivery (Telegram, webhook, or silent).
@@ -27,6 +27,7 @@ Send text, voice, photos, documents, or videos. Switch backends with `/claude`,
27
27
  | **Claude** | `claude` | Opus 4.6, Sonnet 4.6, Haiku 4.5 |
28
28
  | **Gemini** | `gemini` | 3.1 Pro Preview, 3 Flash |
29
29
  | **Codex** | `codex` | GPT-5.4, GPT-5.3 Codex, GPT-5.2 Codex |
30
+ | **Cursor** | `agent` | Opus 4.6, GPT-5.4, Sonnet 4.6, Gemini 3.1 Pro, Mini, Nano, Composer 2 |
30
31
 
31
32
  ## Prerequisites
32
33
 
@@ -35,6 +36,7 @@ Send text, voice, photos, documents, or videos. Switch backends with `/claude`,
35
36
  - Claude Code — `npm install -g @anthropic-ai/claude-code`
36
37
  - Gemini CLI — `npm install -g @google/gemini-cli`
37
38
  - Codex — `npm install -g @openai/codex`
39
+ - Cursor CLI — `curl https://cursor.com/install -fsSL | bash`
38
40
  - **Telegram bot token** from [@BotFather](https://t.me/BotFather)
39
41
 
40
42
  ## Install
@@ -121,6 +123,7 @@ Read commands work offline (direct DB access). Write commands require the daemon
121
123
 
122
124
  | Command | Description |
123
125
  |---------|-------------|
126
+ | `/menu` (`/m`) | Home screen keyboard |
124
127
  | `/help` | All commands |
125
128
  | `/status` | Backend, model, session, usage |
126
129
  | `/newchat` | Start fresh (summarizes current session) |
@@ -132,7 +135,7 @@ Read commands work offline (direct DB access). Write commands require the daemon
132
135
  | Command | Description |
133
136
  |---------|-------------|
134
137
  | `/backend` | Switch backend via keyboard |
135
- | `/claude` `/gemini` `/codex` | Quick switch |
138
+ | `/claude` `/gemini` `/codex` `/cursor` | Quick switch |
136
139
  | `/model` | Switch model + thinking level |
137
140
  | `/summarizer` | Session summarization model |
138
141
 
@@ -171,7 +174,7 @@ Read commands work offline (direct DB access). Write commands require the daemon
171
174
  | `/voice_config` | Configure voice provider and voice |
172
175
  | `/response_style` | Set the AI response style (concise/normal/detailed) |
173
176
  | `/verbose` | Tool visibility level |
174
- | `/limits` | Usage limits per backend |
177
+ | `/limits` | Usage limits per backend (alias for `/usage`) |
175
178
 
176
179
  ### Memory & Context
177
180
 
@@ -181,7 +184,7 @@ Read commands work offline (direct DB access). Write commands require the daemon
181
184
  | `/remember <text>` | Save a memory |
182
185
  | `/forget <keyword>` | Remove memories |
183
186
  | `/history` | Past session summaries |
184
- | `/cost` | API cost breakdown |
187
+ | `/cost` | API cost breakdown (alias for `/usage`) |
185
188
  | `/skills` | Browse skills |
186
189
  | `/mcp` | MCP servers |
187
190
 
@@ -66,7 +66,7 @@ Typical workflow:
66
66
  3. You confirm the exact path exists (e.g., it might be foo-bars, foobar, foo_bar, etc.)
67
67
  4. Only then call spawn_agent with the verified cwd`,
68
68
  {
69
- runner: z.string().describe("CLI runner ID (e.g., 'claude', 'gemini', 'codex', 'opencode')"),
69
+ runner: z.string().describe("CLI runner ID (e.g., 'claude', 'gemini', 'codex', 'cursor', 'opencode')"),
70
70
  task: z.string().describe("Task description for the sub-agent"),
71
71
  name: z.string().optional().describe("Human-readable agent name (e.g., 'security-reviewer', 'linkedin-writer')"),
72
72
  description: z.string().optional().describe("Short description of what this agent does"),