@silicaclaw/cli 2026.3.19-17 → 2026.3.19-18
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 +6 -0
- package/VERSION +1 -1
- package/apps/local-console/dist/packages/storage/config/silicaclaw-defaults.json +19 -0
- package/apps/local-console/dist/packages/storage/src/socialRuntimeRepo.js +1 -1
- package/node_modules/@silicaclaw/storage/config/silicaclaw-defaults.json +19 -0
- package/node_modules/@silicaclaw/storage/dist/socialRuntimeRepo.js +1 -1
- package/node_modules/@silicaclaw/storage/src/socialRuntimeRepo.ts +1 -1
- package/openclaw-skills/silicaclaw-broadcast/VERSION +1 -1
- package/openclaw-skills/silicaclaw-broadcast/manifest.json +1 -1
- package/package.json +2 -1
- package/packages/storage/config/silicaclaw-defaults.json +19 -0
- package/packages/storage/dist/socialRuntimeRepo.js +1 -1
- package/packages/storage/src/socialRuntimeRepo.ts +1 -1
- package/scripts/release-pack.mjs +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## v1.0 beta - 2026-03-19
|
|
4
4
|
|
|
5
|
+
### 2026.3.19-18
|
|
6
|
+
|
|
7
|
+
- startup fix:
|
|
8
|
+
- moved storage runtime defaults to package-local config so installed bundles do not resolve config outside the package boundary
|
|
9
|
+
- release packing now checks both root config and bundled storage config presence in the tarball
|
|
10
|
+
|
|
5
11
|
### 2026.3.19-17
|
|
6
12
|
|
|
7
13
|
- startup fix:
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v2026.3.19-
|
|
1
|
+
v2026.3.19-18
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ports": {
|
|
3
|
+
"local_console": 4310,
|
|
4
|
+
"public_explorer": 4311,
|
|
5
|
+
"openclaw_gateway": 18789,
|
|
6
|
+
"network_default": 44123
|
|
7
|
+
},
|
|
8
|
+
"network": {
|
|
9
|
+
"default_mode": "global-preview",
|
|
10
|
+
"default_namespace": "silicaclaw.preview",
|
|
11
|
+
"global_preview": {
|
|
12
|
+
"relay_url": "https://relay.silicaclaw.com",
|
|
13
|
+
"room": "silicaclaw-global-preview"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"bridge": {
|
|
17
|
+
"api_base": "http://localhost:4310"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.SocialRuntimeRepo = void 0;
|
|
7
7
|
const path_1 = require("path");
|
|
8
8
|
const jsonRepo_1 = require("./jsonRepo");
|
|
9
|
-
const silicaclaw_defaults_json_1 = __importDefault(require("
|
|
9
|
+
const silicaclaw_defaults_json_1 = __importDefault(require("../config/silicaclaw-defaults.json"));
|
|
10
10
|
function emptyRuntime() {
|
|
11
11
|
return {
|
|
12
12
|
enabled: true,
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ports": {
|
|
3
|
+
"local_console": 4310,
|
|
4
|
+
"public_explorer": 4311,
|
|
5
|
+
"openclaw_gateway": 18789,
|
|
6
|
+
"network_default": 44123
|
|
7
|
+
},
|
|
8
|
+
"network": {
|
|
9
|
+
"default_mode": "global-preview",
|
|
10
|
+
"default_namespace": "silicaclaw.preview",
|
|
11
|
+
"global_preview": {
|
|
12
|
+
"relay_url": "https://relay.silicaclaw.com",
|
|
13
|
+
"room": "silicaclaw-global-preview"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"bridge": {
|
|
17
|
+
"api_base": "http://localhost:4310"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.SocialRuntimeRepo = void 0;
|
|
7
7
|
const path_1 = require("path");
|
|
8
8
|
const jsonRepo_1 = require("./jsonRepo");
|
|
9
|
-
const silicaclaw_defaults_json_1 = __importDefault(require("
|
|
9
|
+
const silicaclaw_defaults_json_1 = __importDefault(require("../config/silicaclaw-defaults.json"));
|
|
10
10
|
function emptyRuntime() {
|
|
11
11
|
return {
|
|
12
12
|
enabled: true,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { resolve } from "path";
|
|
2
2
|
import { SocialRuntimeConfig } from "@silicaclaw/core";
|
|
3
3
|
import { JsonFileRepo } from "./jsonRepo";
|
|
4
|
-
import defaults from "
|
|
4
|
+
import defaults from "../config/silicaclaw-defaults.json";
|
|
5
5
|
|
|
6
6
|
function emptyRuntime(): SocialRuntimeConfig {
|
|
7
7
|
return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
2026.3.19-beta.
|
|
1
|
+
2026.3.19-beta.18
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silicaclaw-broadcast",
|
|
3
|
-
"version": "2026.3.19-beta.
|
|
3
|
+
"version": "2026.3.19-beta.18",
|
|
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-
|
|
3
|
+
"version": "2026.3.19-18",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"packages/network/src/**",
|
|
27
27
|
"packages/network/tsconfig.json",
|
|
28
28
|
"packages/storage/package.json",
|
|
29
|
+
"packages/storage/config/**",
|
|
29
30
|
"packages/storage/dist/**",
|
|
30
31
|
"packages/storage/src/**",
|
|
31
32
|
"packages/storage/tsconfig.json",
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ports": {
|
|
3
|
+
"local_console": 4310,
|
|
4
|
+
"public_explorer": 4311,
|
|
5
|
+
"openclaw_gateway": 18789,
|
|
6
|
+
"network_default": 44123
|
|
7
|
+
},
|
|
8
|
+
"network": {
|
|
9
|
+
"default_mode": "global-preview",
|
|
10
|
+
"default_namespace": "silicaclaw.preview",
|
|
11
|
+
"global_preview": {
|
|
12
|
+
"relay_url": "https://relay.silicaclaw.com",
|
|
13
|
+
"room": "silicaclaw-global-preview"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"bridge": {
|
|
17
|
+
"api_base": "http://localhost:4310"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.SocialRuntimeRepo = void 0;
|
|
7
7
|
const path_1 = require("path");
|
|
8
8
|
const jsonRepo_1 = require("./jsonRepo");
|
|
9
|
-
const silicaclaw_defaults_json_1 = __importDefault(require("
|
|
9
|
+
const silicaclaw_defaults_json_1 = __importDefault(require("../config/silicaclaw-defaults.json"));
|
|
10
10
|
function emptyRuntime() {
|
|
11
11
|
return {
|
|
12
12
|
enabled: true,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { resolve } from "path";
|
|
2
2
|
import { SocialRuntimeConfig } from "@silicaclaw/core";
|
|
3
3
|
import { JsonFileRepo } from "./jsonRepo";
|
|
4
|
-
import defaults from "
|
|
4
|
+
import defaults from "../config/silicaclaw-defaults.json";
|
|
5
5
|
|
|
6
6
|
function emptyRuntime(): SocialRuntimeConfig {
|
|
7
7
|
return {
|
package/scripts/release-pack.mjs
CHANGED
|
@@ -114,6 +114,8 @@ function verifyPackContents() {
|
|
|
114
114
|
const files = new Set((Array.isArray(packInfo) ? packInfo[0]?.files : packInfo?.files || []).map((entry) => entry.path));
|
|
115
115
|
const requiredFiles = [
|
|
116
116
|
"config/silicaclaw-defaults.json",
|
|
117
|
+
"packages/storage/config/silicaclaw-defaults.json",
|
|
118
|
+
"node_modules/@silicaclaw/storage/config/silicaclaw-defaults.json",
|
|
117
119
|
"scripts/silicaclaw-cli.mjs",
|
|
118
120
|
"scripts/silicaclaw-gateway.mjs",
|
|
119
121
|
];
|