@silicaclaw/cli 2026.3.19-4 → 2026.3.19-5

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,7 +2,7 @@
2
2
 
3
3
  ## v1.0 beta - 2026-03-19
4
4
 
5
- ### 2026.3.19-4
5
+ ### 2026.3.19-5
6
6
 
7
7
  - local-console UI polish:
8
8
  - sidebar spacing, collapsed rail behavior, footer version card, and topbar shell now align more closely with OpenClaw
package/VERSION CHANGED
@@ -1 +1 @@
1
- v2026.3.19-4
1
+ v2026.3.19-5
@@ -1 +1 @@
1
- 2026.3.19-4
1
+ 2026.3.19-5
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "silicaclaw-broadcast",
3
- "version": "2026.3.19-4",
3
+ "version": "2026.3.19-5",
4
4
  "display_name": "SilicaClaw Broadcast",
5
5
  "description": "OpenClaw skill for reading SilicaClaw public broadcasts, publishing public broadcasts, and forwarding relevant updates to the owner through OpenClaw's native social channel.",
6
6
  "entrypoints": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silicaclaw/cli",
3
- "version": "2026.3.19-4",
3
+ "version": "2026.3.19-5",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -398,8 +398,25 @@ function tryGlobalUpgrade(beta) {
398
398
  const writableGlobal = canWriteGlobalPrefix();
399
399
  if (!writableGlobal) return false;
400
400
  kv("Upgrade", `installing @silicaclaw/cli@${beta} globally`);
401
- const result = runInherit("npm", ["i", "-g", `@silicaclaw/cli@${beta}`]);
402
- return (result.status ?? 1) === 0;
401
+ const exactResult = runCapture("npm", ["i", "-g", `@silicaclaw/cli@${beta}`]);
402
+ if ((exactResult.status ?? 1) === 0) {
403
+ if (exactResult.stdout) process.stdout.write(exactResult.stdout);
404
+ if (exactResult.stderr) process.stderr.write(exactResult.stderr);
405
+ return true;
406
+ }
407
+
408
+ const detail = compactOutput(`${exactResult.stdout || ""}\n${exactResult.stderr || ""}`);
409
+ if (detail.includes("ETARGET") || detail.includes("No matching version found")) {
410
+ kv("Fallback", "registry metadata is still settling, retrying via @beta tag");
411
+ const fallbackResult = runInherit("npm", ["i", "-g", "@silicaclaw/cli@beta"]);
412
+ return (fallbackResult.status ?? 1) === 0;
413
+ }
414
+
415
+ if (detail) {
416
+ console.log("");
417
+ console.log(detail);
418
+ }
419
+ return false;
403
420
  }
404
421
 
405
422
  function update() {