cc-claw 0.5.6 → 0.6.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 +3 -1
- package/dist/cli.js +922 -106
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Send text, voice, photos, documents, or videos. Switch backends with `/claude`,
|
|
|
11
11
|
## What Can It Do
|
|
12
12
|
|
|
13
13
|
- **Multi-backend AI** — Switch between Claude, Gemini, and Codex mid-conversation. Each backend supports per-model thinking levels.
|
|
14
|
-
- **Agent orchestration** — Spawn
|
|
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).
|
|
17
17
|
- **Memory** — Hybrid vector + keyword search. The agent remembers what you tell it across sessions, with salience decay.
|
|
@@ -153,6 +153,8 @@ Read commands work offline (direct DB access). Write commands require the daemon
|
|
|
153
153
|
| Command | Description |
|
|
154
154
|
|---------|-------------|
|
|
155
155
|
| `/agents` | List sub-agents |
|
|
156
|
+
| `/agents mode` | Set agent mode (auto/native/claw) |
|
|
157
|
+
| `/agents history` | Native sub-agent activity (24h) |
|
|
156
158
|
| `/tasks` | Task board |
|
|
157
159
|
| `/stopagent <id>` | Cancel one agent |
|
|
158
160
|
| `/stopall` | Cancel all agents |
|