@silicaclaw/cli 1.0.0-beta.26 → 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 +20 -0
- package/INSTALL.md +19 -16
- package/README.md +9 -8
- package/apps/local-console/public/index.html +1055 -261
- package/apps/local-console/src/server.ts +21 -0
- package/package.json +1 -1
- package/scripts/quickstart.sh +89 -45
- package/scripts/silicaclaw-cli.mjs +124 -84
- package/scripts/silicaclaw-gateway.mjs +134 -62
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
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
|
+
|
|
5
25
|
### Beta 26
|
|
6
26
|
|
|
7
27
|
- install command resilience:
|
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
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
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
|
|
56
|
-
silicaclaw
|
|
57
|
-
silicaclaw
|
|
57
|
+
silicaclaw start
|
|
58
|
+
silicaclaw status
|
|
59
|
+
silicaclaw stop
|
|
58
60
|
```
|
|
59
61
|
|
|
60
|
-
If global install fails with `EACCES`, use
|
|
62
|
+
If global install fails with `EACCES`, use the built-in persistent install:
|
|
61
63
|
|
|
62
64
|
```bash
|
|
63
|
-
|
|
64
|
-
silicaclaw
|
|
65
|
-
silicaclaw
|
|
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
|
-
|
|
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
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
silicaclaw start
|
|
77
|
+
silicaclaw status
|
|
78
|
+
silicaclaw restart
|
|
79
|
+
silicaclaw stop
|
|
79
80
|
```
|
|
80
81
|
|
|
81
82
|
Or manual:
|