cc-claw 0.2.3 → 0.2.4

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
@@ -61,19 +61,17 @@ Config saved to `~/.cc-claw/.env`.
61
61
 
62
62
  ## Run
63
63
 
64
- ```bash
65
- # Background service (recommended)
66
- cc-claw service install
64
+ The setup wizard offers to install CC-Claw as a background service. If you skipped that step:
67
65
 
68
- # Or foreground
69
- cc-claw start
66
+ ```bash
67
+ cc-claw service install # Install + start as background service
70
68
  ```
71
69
 
72
70
  ```bash
73
- cc-claw service start # Start
74
- cc-claw service stop # Stop
75
71
  cc-claw service restart # Restart (pick up config changes)
72
+ cc-claw service stop # Stop the daemon
76
73
  cc-claw service status # Check if running
74
+ cc-claw start # Run in foreground (for debugging)
77
75
  ```
78
76
 
79
77
  ## CLI
package/dist/cli.js CHANGED
@@ -48,7 +48,7 @@ var VERSION;
48
48
  var init_version = __esm({
49
49
  "src/version.ts"() {
50
50
  "use strict";
51
- VERSION = true ? "0.2.3" : (() => {
51
+ VERSION = true ? "0.2.4" : (() => {
52
52
  try {
53
53
  return JSON.parse(readFileSync(join2(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
54
54
  } catch {
@@ -13895,11 +13895,7 @@ async function setup() {
13895
13895
  console.log(dim(" Voice replies will use macOS text-to-speech as fallback."));
13896
13896
  }
13897
13897
  }
13898
- console.log("");
13899
- if (await confirm("Enable web dashboard? (local status page on port 3141)")) {
13900
- env.DASHBOARD_ENABLED = "1";
13901
- console.log(green(" Dashboard will be available at http://localhost:3141"));
13902
- }
13898
+ env.DASHBOARD_ENABLED = "1";
13903
13899
  console.log("");
13904
13900
  if (await confirm("Enable video analysis? (requires Google Gemini API key)")) {
13905
13901
  console.log(dim(" Get a Gemini key at: https://aistudio.google.com/apikey\n"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-claw",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "CC-Claw: Personal AI assistant on Telegram — multi-backend (Claude, Gemini, Codex), sub-agent orchestration, MCP management",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",