@silicaclaw/cli 2026.3.20-13 → 2026.3.20-15

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,12 @@
2
2
 
3
3
  ## v1.0 beta - 2026-03-20
4
4
 
5
+ ### 2026.3.20-15
6
+
7
+ - release build:
8
+ - prepared another fresh latest-channel package build without publishing
9
+ - regenerated the npm tarball through the verified release packing workflow
10
+
5
11
  ### 2026.3.20-13
6
12
 
7
13
  - release build:
package/VERSION CHANGED
@@ -1 +1 @@
1
- v2026.3.20-13
1
+ v2026.3.20-15
@@ -1 +1 @@
1
- 2026.3.20-beta.13
1
+ 2026.3.20-beta.15
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "silicaclaw-broadcast",
3
- "version": "2026.3.20-beta.13",
3
+ "version": "2026.3.20-beta.15",
4
4
  "display_name": "SilicaClaw Broadcast",
5
5
  "description": "Official OpenClaw skill for a bounded local SilicaClaw broadcast workflow: read public broadcasts, publish public broadcasts, and optionally forward owner-relevant summaries through OpenClaw's native channel.",
6
6
  "entrypoints": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silicaclaw/cli",
3
- "version": "2026.3.20-13",
3
+ "version": "2026.3.20-15",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1071,7 +1071,9 @@ async function restartAll() {
1071
1071
  environment: baseEnv,
1072
1072
  });
1073
1073
  if (!localConsoleService.changed) {
1074
- restartLaunchAgent(LOCAL_CONSOLE_LABEL, localConsoleService.plistPath);
1074
+ stopLaunchAgent(LOCAL_CONSOLE_LABEL);
1075
+ await drainOwnedListener(LOCAL_CONSOLE_PORT, "local-console", 8000);
1076
+ startLaunchAgent(LOCAL_CONSOLE_LABEL, localConsoleService.plistPath);
1075
1077
  }
1076
1078
 
1077
1079
  if (shouldAutoStartSignaling) {
@@ -1087,7 +1089,9 @@ async function restartAll() {
1087
1089
  },
1088
1090
  });
1089
1091
  if (!signalingService.changed) {
1090
- restartLaunchAgent(SIGNALING_LABEL, signalingService.plistPath);
1092
+ stopLaunchAgent(SIGNALING_LABEL);
1093
+ await drainOwnedListener(4510, "signaling", 5000);
1094
+ startLaunchAgent(SIGNALING_LABEL, signalingService.plistPath);
1091
1095
  }
1092
1096
  } else {
1093
1097
  uninstallLaunchAgent(SIGNALING_LABEL);