cc-claw 0.9.1 → 0.10.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 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
@@ -133,8 +135,9 @@ Read commands work offline (direct DB access). Write commands require the daemon
133
135
  | Command | Description |
134
136
  |---------|-------------|
135
137
  | `/backend` | Switch backend via keyboard |
136
- | `/claude` `/gemini` `/codex` | Quick switch |
138
+ | `/claude` `/gemini` `/codex` `/cursor` | Quick switch |
137
139
  | `/model` | Switch model + thinking level |
140
+ | `/thinking` | Adjust thinking/reasoning level |
138
141
  | `/summarizer` | Session summarization model |
139
142
 
140
143
  ### Scheduling
@@ -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"),