@silicaclaw/cli 1.0.0-beta.25 → 1.0.0-beta.29

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/CHANGELOG.md CHANGED
@@ -2,6 +2,33 @@
2
2
 
3
3
  ## v1.0 beta - 2026-03-18
4
4
 
5
+ ### Beta 28
6
+
7
+ - local-console version visibility:
8
+ - the page now shows the current running SilicaClaw version in the brand area
9
+ - the top header now includes the active version
10
+ - node snapshot now includes `app_version`
11
+
12
+ ### Beta 27
13
+
14
+ - terminal UX cleanup:
15
+ - CLI and gateway commands now share a cleaner product-style output format
16
+ - `status` now defaults to human-readable output while internal tooling uses `--json`
17
+ - `start` / `stop` / `restart` now show concise summaries instead of raw JSON blocks
18
+ - onboarding and docs alignment:
19
+ - quickstart output now uses the same summary-oriented command language
20
+ - README and INSTALL now recommend `install -> source env -> silicaclaw start/status/stop/update`
21
+ - messaging polish:
22
+ - error messages now provide clearer recovery guidance
23
+ - command help is grouped by task instead of one long usage block
24
+
25
+ ### Beta 26
26
+
27
+ - install command resilience:
28
+ - `silicaclaw install` no longer fails hard when shell startup files are not writable
29
+ - install still creates the command shim and `~/.silicaclaw/env.sh`
30
+ - users now get a manual one-line fallback when rc file updates are blocked by permissions
31
+
5
32
  ### Beta 25
6
33
 
7
34
  - relay load reduction:
package/INSTALL.md CHANGED
@@ -19,28 +19,30 @@ npm install
19
19
  CLI-style onboarding command (recommended, zero-config):
20
20
 
21
21
  ```bash
22
- npx @silicaclaw/cli@beta onboard
22
+ npx -y @silicaclaw/cli@beta onboard
23
23
  ```
24
24
 
25
25
  Cross-network quick wizard (defaults to global-preview):
26
26
 
27
27
  ```bash
28
- npx @silicaclaw/cli@beta connect
28
+ npx -y @silicaclaw/cli@beta connect
29
29
  ```
30
30
 
31
31
  Check/update CLI version:
32
32
 
33
33
  ```bash
34
- npx @silicaclaw/cli@beta update
34
+ npx -y @silicaclaw/cli@beta update
35
35
  ```
36
36
 
37
37
  Gateway background service commands:
38
38
 
39
39
  ```bash
40
- npx @silicaclaw/cli@beta gateway start --mode=local
41
- npx @silicaclaw/cli@beta gateway status
42
- npx @silicaclaw/cli@beta gateway restart --mode=lan
43
- npx @silicaclaw/cli@beta gateway stop
40
+ npx -y @silicaclaw/cli@beta install
41
+ source ~/.silicaclaw/env.sh
42
+ silicaclaw start --mode=global-preview
43
+ silicaclaw status
44
+ silicaclaw restart
45
+ silicaclaw stop
44
46
  ```
45
47
 
46
48
  For most home users, just press Enter on defaults and use `local` mode first.
@@ -48,21 +50,21 @@ For most home users, just press Enter on defaults and use `local` mode first.
48
50
  Optional global install (advanced users only):
49
51
 
50
52
  ```bash
51
- npm i -g @silicaclaw/cli
53
+ npm i -g @silicaclaw/cli@beta
52
54
  silicaclaw onboard
53
55
  silicaclaw connect
54
56
  silicaclaw update
55
- silicaclaw gateway start --mode=local
56
- silicaclaw gateway status
57
- silicaclaw gateway stop
57
+ silicaclaw start
58
+ silicaclaw status
59
+ silicaclaw stop
58
60
  ```
59
61
 
60
- If global install fails with `EACCES`, use alias mode (no PATH edits):
62
+ If global install fails with `EACCES`, use the built-in persistent install:
61
63
 
62
64
  ```bash
63
- alias silicaclaw='npx -y @silicaclaw/cli@beta'
64
- silicaclaw onboard
65
- silicaclaw update
65
+ npx -y @silicaclaw/cli@beta install
66
+ source ~/.silicaclaw/env.sh
67
+ silicaclaw start
66
68
  ```
67
69
 
68
70
  ## 3. Run
@@ -78,7 +80,7 @@ Note: local-console runs in watch mode, so backend changes auto-reload during de
78
80
  OpenClaw-style interactive install/start guide (recommended):
79
81
 
80
82
  ```bash
81
- npm run quickstart
83
+ npx -y @silicaclaw/cli@beta onboard
82
84
  ```
83
85
 
84
86
  It will guide you step-by-step in terminal:
@@ -87,6 +89,7 @@ It will guide you step-by-step in terminal:
87
89
  - install dependencies
88
90
  - prepare `social.md`
89
91
  - choose network mode
92
+ - install the persistent `silicaclaw` command
90
93
  - start local-console with correct runtime args
91
94
 
92
95
  Open:
package/README.md CHANGED
@@ -20,10 +20,11 @@ Daily commands:
20
20
 
21
21
  ```bash
22
22
  npx -y @silicaclaw/cli@beta install
23
- npx -y @silicaclaw/cli@beta start
24
- npx -y @silicaclaw/cli@beta status
25
- npx -y @silicaclaw/cli@beta stop
26
- npx -y @silicaclaw/cli@beta update
23
+ source ~/.silicaclaw/env.sh
24
+ silicaclaw start
25
+ silicaclaw status
26
+ silicaclaw stop
27
+ silicaclaw update
27
28
  ```
28
29
 
29
30
  Default network path:
@@ -72,10 +73,10 @@ npx -y @silicaclaw/cli@beta update
72
73
  Background service:
73
74
 
74
75
  ```bash
75
- npx -y @silicaclaw/cli@beta start
76
- npx -y @silicaclaw/cli@beta status
77
- npx -y @silicaclaw/cli@beta restart
78
- npx -y @silicaclaw/cli@beta stop
76
+ silicaclaw start
77
+ silicaclaw status
78
+ silicaclaw restart
79
+ silicaclaw stop
79
80
  ```
80
81
 
81
82
  Or manual: