@a1hvdy/cc-openclaw 0.33.0 → 0.34.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 +21 -0
- package/dist/src/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,6 +25,27 @@ gateway restart, and smoke probes. Idempotent — safe to re-run.
|
|
|
25
25
|
- `--no-restart` — skip the gateway restart (manual)
|
|
26
26
|
- `--from-source` — clone+build from GitHub instead of npm (slower; for plugin development)
|
|
27
27
|
|
|
28
|
+
## Features
|
|
29
|
+
|
|
30
|
+
**Native Claude CLI Support** — cc-openclaw passes through Claude Code's built-in commands:
|
|
31
|
+
- **Multi-turn goals** (`/goal <objective>`) — Set execution conditions that persist across turns with automatic Haiku evaluation (Claude CLI 2.1.139+)
|
|
32
|
+
- **Session management** (`/new`, `/sessions`, `/cc`) — Universal session compatibility
|
|
33
|
+
- **Tool streaming** — Real-time tool call updates in Telegram cards
|
|
34
|
+
- **MCP bridge** — OpenClaw native tools available in Claude Code sessions
|
|
35
|
+
|
|
36
|
+
**Telegram Integration:**
|
|
37
|
+
- Live cards with status updates, tool results, and insights
|
|
38
|
+
- Tool result deduplication (50-60% card size reduction)
|
|
39
|
+
- Session listing optimization (10× faster)
|
|
40
|
+
- Plan attachments and interactive buttons
|
|
41
|
+
|
|
42
|
+
**Performance:**
|
|
43
|
+
- Subprocess pooling for faster cold starts
|
|
44
|
+
- Cache parity optimization for reduced token costs
|
|
45
|
+
- Chunked file reading for large session transcripts
|
|
46
|
+
|
|
47
|
+
See [CHANGELOG.md](CHANGELOG.md) for detailed feature documentation.
|
|
48
|
+
|
|
28
49
|
## Prerequisites
|
|
29
50
|
|
|
30
51
|
- Node.js ≥ 22
|
package/dist/src/index.js
CHANGED
|
@@ -20,7 +20,7 @@ import { registerCwdPatch, registerSyspromptStrip, registerThinkConflictResolver
|
|
|
20
20
|
import { register as registerTelegramMirror } from './channels/telegram-mirror/index.js';
|
|
21
21
|
import { register as registerMcpBridge } from './mcp/index.js';
|
|
22
22
|
export const PLUGIN_ID = 'cc-openclaw';
|
|
23
|
-
export const VERSION = '0.
|
|
23
|
+
export const VERSION = '0.34.0';
|
|
24
24
|
/**
|
|
25
25
|
* Listener-activation flag — gates all sub-module register() calls.
|
|
26
26
|
*
|