@a1hvdy/cc-openclaw 0.3.2 → 0.3.3

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.
Files changed (2) hide show
  1. package/README.md +13 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,10 +13,17 @@ bash <(curl -fsSL https://raw.githubusercontent.com/A1cy/cc-openclaw/main/script
13
13
  ```
14
14
 
15
15
  The bootstrap script handles: prereq detection, openclaw binary install/upgrade,
16
- cc-openclaw clone+build+plugin-install, env file configuration, interactive
17
- prompt for required secrets (Anthropic key, optional Telegram bot tokens),
18
- OpenRouter pricing-cache patch, `openclaw doctor --fix`, gateway restart, and
19
- smoke probes. Idempotent — safe to re-run.
16
+ **npm install of `@a1hvdy/cc-openclaw` via `openclaw plugins install`**, env file
17
+ configuration, interactive prompt for required secrets (Anthropic key, optional
18
+ Telegram bot tokens), OpenRouter pricing-cache patch, `openclaw doctor --fix`,
19
+ gateway restart, and smoke probes. Idempotent — safe to re-run.
20
+
21
+ ### Flags
22
+
23
+ - `--non-interactive` — env-only secret resolution (no prompts)
24
+ - `--skip-tg-tokens` — install without Telegram setup
25
+ - `--no-restart` — skip the gateway restart (manual)
26
+ - `--from-source` — clone+build from GitHub instead of npm (slower; for plugin development)
20
27
 
21
28
  ## Prerequisites
22
29
 
@@ -33,9 +40,9 @@ If you'd rather not run the bootstrap script:
33
40
  # 1. OpenClaw binary
34
41
  npm install -g openclaw@beta
35
42
 
36
- # 2. Plugin install via openclaw CLI
43
+ # 2. Plugin install via openclaw CLI (npm registry)
37
44
  openclaw plugins install --dangerously-force-unsafe-install --force \
38
- github:A1cy/cc-openclaw
45
+ @a1hvdy/cc-openclaw
39
46
 
40
47
  # 3. Required env vars in BOTH ~/.openclaw/.env AND ~/.openclaw/gateway.systemd.env
41
48
  cat >> ~/.openclaw/.env <<EOF
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a1hvdy/cc-openclaw",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "A1xAI's Anthropic CLI bridge plugin for OpenClaw",
5
5
  "author": "@a1cy",
6
6
  "license": "MIT",