@silicaclaw/cli 2026.3.20-10 → 2026.3.20-12

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,18 @@
2
2
 
3
3
  ## v1.0 beta - 2026-03-20
4
4
 
5
+ ### 2026.3.20-12
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
+
11
+ ### 2026.3.20-11
12
+
13
+ - release build:
14
+ - prepared another fresh latest-channel package build without publishing
15
+ - regenerated the npm tarball through the verified release packing workflow
16
+
5
17
  ### 2026.3.20-10
6
18
 
7
19
  - release build:
package/VERSION CHANGED
@@ -1 +1 @@
1
- v2026.3.20-10
1
+ v2026.3.20-12
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@silicaclaw/core",
3
3
  "version": "0.1.0",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
4
+ "main": "dist/packages/core/src/index.js",
5
+ "types": "dist/packages/core/src/index.d.ts",
6
6
  "scripts": {
7
7
  "build": "tsc -p tsconfig.json",
8
8
  "check": "tsc -p tsconfig.json --noEmit"
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@silicaclaw/storage",
3
3
  "version": "0.1.0",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
4
+ "main": "dist/packages/storage/src/index.js",
5
+ "types": "dist/packages/storage/src/index.d.ts",
6
6
  "scripts": {
7
7
  "build": "tsc -p tsconfig.json",
8
8
  "check": "tsc -p tsconfig.json --noEmit"
@@ -1 +1 @@
1
- 2026.3.20-beta.10
1
+ 2026.3.20-beta.12
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "silicaclaw-broadcast",
3
- "version": "2026.3.20-beta.10",
3
+ "version": "2026.3.20-beta.12",
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-10",
3
+ "version": "2026.3.20-12",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@silicaclaw/core",
3
3
  "version": "0.1.0",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
4
+ "main": "dist/packages/core/src/index.js",
5
+ "types": "dist/packages/core/src/index.d.ts",
6
6
  "scripts": {
7
7
  "build": "tsc -p tsconfig.json",
8
8
  "check": "tsc -p tsconfig.json --noEmit"
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@silicaclaw/storage",
3
3
  "version": "0.1.0",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
4
+ "main": "dist/packages/storage/src/index.js",
5
+ "types": "dist/packages/storage/src/index.d.ts",
6
6
  "scripts": {
7
7
  "build": "tsc -p tsconfig.json",
8
8
  "check": "tsc -p tsconfig.json --noEmit"
@@ -1,3 +0,0 @@
1
- export * from "./jsonRepo";
2
- export * from "./repos";
3
- export * from "./socialRuntimeRepo";
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./jsonRepo"), exports);
18
- __exportStar(require("./repos"), exports);
19
- __exportStar(require("./socialRuntimeRepo"), exports);
@@ -1,7 +0,0 @@
1
- export declare class JsonFileRepo<T> {
2
- private filePath;
3
- private fallback;
4
- constructor(filePath: string, fallback: () => T);
5
- get(): Promise<T>;
6
- set(value: T): Promise<void>;
7
- }
@@ -1,29 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.JsonFileRepo = void 0;
4
- const promises_1 = require("fs/promises");
5
- const path_1 = require("path");
6
- class JsonFileRepo {
7
- filePath;
8
- fallback;
9
- constructor(filePath, fallback) {
10
- this.filePath = filePath;
11
- this.fallback = fallback;
12
- }
13
- async get() {
14
- try {
15
- const raw = await (0, promises_1.readFile)(this.filePath, "utf8");
16
- return JSON.parse(raw);
17
- }
18
- catch {
19
- const seed = this.fallback();
20
- await this.set(seed);
21
- return seed;
22
- }
23
- }
24
- async set(value) {
25
- await (0, promises_1.mkdir)((0, path_1.dirname)(this.filePath), { recursive: true });
26
- await (0, promises_1.writeFile)(this.filePath, JSON.stringify(value, null, 2), "utf8");
27
- }
28
- }
29
- exports.JsonFileRepo = JsonFileRepo;
@@ -1,61 +0,0 @@
1
- import { AgentIdentity, DirectoryState, PublicProfile } from "@silicaclaw/core";
2
- import { JsonFileRepo } from "./jsonRepo";
3
- export type LogEntry = {
4
- id: string;
5
- level: "info" | "warn" | "error";
6
- message: string;
7
- timestamp: number;
8
- };
9
- export type SocialMessageRecord = {
10
- type: "social.message";
11
- message_id: string;
12
- agent_id: string;
13
- public_key: string;
14
- display_name: string;
15
- topic: string;
16
- body: string;
17
- created_at: number;
18
- signature: string;
19
- };
20
- export type SocialMessageObservationRecord = {
21
- type: "social.message.observation";
22
- observation_id: string;
23
- message_id: string;
24
- observed_agent_id: string;
25
- observer_agent_id: string;
26
- observer_public_key: string;
27
- observer_display_name: string;
28
- observed_at: number;
29
- signature: string;
30
- };
31
- export type SocialMessageGovernanceConfig = {
32
- send_limit_max: number;
33
- send_window_ms: number;
34
- receive_limit_max: number;
35
- receive_window_ms: number;
36
- duplicate_window_ms: number;
37
- blocked_agent_ids: string[];
38
- blocked_terms: string[];
39
- };
40
- export declare class IdentityRepo extends JsonFileRepo<AgentIdentity | null> {
41
- constructor(rootDir?: string);
42
- }
43
- export declare class ProfileRepo extends JsonFileRepo<PublicProfile | null> {
44
- constructor(rootDir?: string);
45
- }
46
- export declare class CacheRepo extends JsonFileRepo<DirectoryState> {
47
- constructor(rootDir?: string);
48
- }
49
- export declare class LogRepo extends JsonFileRepo<LogEntry[]> {
50
- constructor(rootDir?: string);
51
- append(entry: Omit<LogEntry, "id">): Promise<void>;
52
- }
53
- export declare class SocialMessageRepo extends JsonFileRepo<SocialMessageRecord[]> {
54
- constructor(rootDir?: string);
55
- }
56
- export declare class SocialMessageObservationRepo extends JsonFileRepo<SocialMessageObservationRecord[]> {
57
- constructor(rootDir?: string);
58
- }
59
- export declare class SocialMessageGovernanceRepo extends JsonFileRepo<SocialMessageGovernanceConfig> {
60
- constructor(rootDir?: string);
61
- }
@@ -1,67 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SocialMessageGovernanceRepo = exports.SocialMessageObservationRepo = exports.SocialMessageRepo = exports.LogRepo = exports.CacheRepo = exports.ProfileRepo = exports.IdentityRepo = void 0;
4
- const path_1 = require("path");
5
- const core_1 = require("@silicaclaw/core");
6
- const jsonRepo_1 = require("./jsonRepo");
7
- class IdentityRepo extends jsonRepo_1.JsonFileRepo {
8
- constructor(rootDir = process.cwd()) {
9
- super((0, path_1.resolve)(rootDir, "data", "identity.json"), () => null);
10
- }
11
- }
12
- exports.IdentityRepo = IdentityRepo;
13
- class ProfileRepo extends jsonRepo_1.JsonFileRepo {
14
- constructor(rootDir = process.cwd()) {
15
- super((0, path_1.resolve)(rootDir, "data", "profile.json"), () => null);
16
- }
17
- }
18
- exports.ProfileRepo = ProfileRepo;
19
- class CacheRepo extends jsonRepo_1.JsonFileRepo {
20
- constructor(rootDir = process.cwd()) {
21
- super((0, path_1.resolve)(rootDir, "data", "cache.json"), () => (0, core_1.createEmptyDirectoryState)());
22
- }
23
- }
24
- exports.CacheRepo = CacheRepo;
25
- class LogRepo extends jsonRepo_1.JsonFileRepo {
26
- constructor(rootDir = process.cwd()) {
27
- super((0, path_1.resolve)(rootDir, "data", "logs.json"), () => []);
28
- }
29
- async append(entry) {
30
- const current = await this.get();
31
- const next = [
32
- {
33
- id: `${entry.timestamp}-${Math.random().toString(36).slice(2, 8)}`,
34
- ...entry,
35
- },
36
- ...current,
37
- ].slice(0, 50);
38
- await this.set(next);
39
- }
40
- }
41
- exports.LogRepo = LogRepo;
42
- class SocialMessageRepo extends jsonRepo_1.JsonFileRepo {
43
- constructor(rootDir = process.cwd()) {
44
- super((0, path_1.resolve)(rootDir, "data", "social-messages.json"), () => []);
45
- }
46
- }
47
- exports.SocialMessageRepo = SocialMessageRepo;
48
- class SocialMessageObservationRepo extends jsonRepo_1.JsonFileRepo {
49
- constructor(rootDir = process.cwd()) {
50
- super((0, path_1.resolve)(rootDir, "data", "social-message-observations.json"), () => []);
51
- }
52
- }
53
- exports.SocialMessageObservationRepo = SocialMessageObservationRepo;
54
- class SocialMessageGovernanceRepo extends jsonRepo_1.JsonFileRepo {
55
- constructor(rootDir = process.cwd()) {
56
- super((0, path_1.resolve)(rootDir, ".silicaclaw", "social.message-governance.json"), () => ({
57
- send_limit_max: 5,
58
- send_window_ms: 60_000,
59
- receive_limit_max: 8,
60
- receive_window_ms: 60_000,
61
- duplicate_window_ms: 180_000,
62
- blocked_agent_ids: [],
63
- blocked_terms: [],
64
- }));
65
- }
66
- }
67
- exports.SocialMessageGovernanceRepo = SocialMessageGovernanceRepo;
@@ -1,5 +0,0 @@
1
- import { SocialRuntimeConfig } from "@silicaclaw/core";
2
- import { JsonFileRepo } from "./jsonRepo";
3
- export declare class SocialRuntimeRepo extends JsonFileRepo<SocialRuntimeConfig> {
4
- constructor(rootDir?: string);
5
- }
@@ -1,57 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SocialRuntimeRepo = void 0;
7
- const path_1 = require("path");
8
- const jsonRepo_1 = require("./jsonRepo");
9
- const silicaclaw_defaults_json_1 = __importDefault(require("../config/silicaclaw-defaults.json"));
10
- function emptyRuntime() {
11
- return {
12
- enabled: true,
13
- public_enabled: false,
14
- source_path: null,
15
- last_loaded_at: 0,
16
- social_found: false,
17
- parse_error: null,
18
- resolved_identity: null,
19
- resolved_profile: null,
20
- resolved_network: {
21
- mode: silicaclaw_defaults_json_1.default.network.default_mode,
22
- adapter: "relay-preview",
23
- namespace: silicaclaw_defaults_json_1.default.network.default_namespace,
24
- port: null,
25
- signaling_url: silicaclaw_defaults_json_1.default.network.global_preview.relay_url,
26
- signaling_urls: [],
27
- room: silicaclaw_defaults_json_1.default.network.global_preview.room,
28
- seed_peers: [],
29
- bootstrap_hints: [],
30
- bootstrap_sources: [],
31
- },
32
- resolved_discovery: {
33
- discoverable: true,
34
- allow_profile_broadcast: true,
35
- allow_presence_broadcast: true,
36
- allow_message_broadcast: true,
37
- },
38
- visibility: {
39
- show_display_name: true,
40
- show_bio: true,
41
- show_tags: true,
42
- show_agent_id: true,
43
- show_last_seen: true,
44
- show_capabilities_summary: true,
45
- },
46
- openclaw: {
47
- bind_existing_identity: true,
48
- use_openclaw_profile_if_available: true,
49
- },
50
- };
51
- }
52
- class SocialRuntimeRepo extends jsonRepo_1.JsonFileRepo {
53
- constructor(rootDir = process.cwd()) {
54
- super((0, path_1.resolve)(rootDir, ".silicaclaw", "social.runtime.json"), emptyRuntime);
55
- }
56
- }
57
- exports.SocialRuntimeRepo = SocialRuntimeRepo;
@@ -1,3 +0,0 @@
1
- export * from "./jsonRepo";
2
- export * from "./repos";
3
- export * from "./socialRuntimeRepo";
@@ -1,19 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./jsonRepo"), exports);
18
- __exportStar(require("./repos"), exports);
19
- __exportStar(require("./socialRuntimeRepo"), exports);
@@ -1,7 +0,0 @@
1
- export declare class JsonFileRepo<T> {
2
- private filePath;
3
- private fallback;
4
- constructor(filePath: string, fallback: () => T);
5
- get(): Promise<T>;
6
- set(value: T): Promise<void>;
7
- }
@@ -1,29 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.JsonFileRepo = void 0;
4
- const promises_1 = require("fs/promises");
5
- const path_1 = require("path");
6
- class JsonFileRepo {
7
- filePath;
8
- fallback;
9
- constructor(filePath, fallback) {
10
- this.filePath = filePath;
11
- this.fallback = fallback;
12
- }
13
- async get() {
14
- try {
15
- const raw = await (0, promises_1.readFile)(this.filePath, "utf8");
16
- return JSON.parse(raw);
17
- }
18
- catch {
19
- const seed = this.fallback();
20
- await this.set(seed);
21
- return seed;
22
- }
23
- }
24
- async set(value) {
25
- await (0, promises_1.mkdir)((0, path_1.dirname)(this.filePath), { recursive: true });
26
- await (0, promises_1.writeFile)(this.filePath, JSON.stringify(value, null, 2), "utf8");
27
- }
28
- }
29
- exports.JsonFileRepo = JsonFileRepo;
@@ -1,61 +0,0 @@
1
- import { AgentIdentity, DirectoryState, PublicProfile } from "@silicaclaw/core";
2
- import { JsonFileRepo } from "./jsonRepo";
3
- export type LogEntry = {
4
- id: string;
5
- level: "info" | "warn" | "error";
6
- message: string;
7
- timestamp: number;
8
- };
9
- export type SocialMessageRecord = {
10
- type: "social.message";
11
- message_id: string;
12
- agent_id: string;
13
- public_key: string;
14
- display_name: string;
15
- topic: string;
16
- body: string;
17
- created_at: number;
18
- signature: string;
19
- };
20
- export type SocialMessageObservationRecord = {
21
- type: "social.message.observation";
22
- observation_id: string;
23
- message_id: string;
24
- observed_agent_id: string;
25
- observer_agent_id: string;
26
- observer_public_key: string;
27
- observer_display_name: string;
28
- observed_at: number;
29
- signature: string;
30
- };
31
- export type SocialMessageGovernanceConfig = {
32
- send_limit_max: number;
33
- send_window_ms: number;
34
- receive_limit_max: number;
35
- receive_window_ms: number;
36
- duplicate_window_ms: number;
37
- blocked_agent_ids: string[];
38
- blocked_terms: string[];
39
- };
40
- export declare class IdentityRepo extends JsonFileRepo<AgentIdentity | null> {
41
- constructor(rootDir?: string);
42
- }
43
- export declare class ProfileRepo extends JsonFileRepo<PublicProfile | null> {
44
- constructor(rootDir?: string);
45
- }
46
- export declare class CacheRepo extends JsonFileRepo<DirectoryState> {
47
- constructor(rootDir?: string);
48
- }
49
- export declare class LogRepo extends JsonFileRepo<LogEntry[]> {
50
- constructor(rootDir?: string);
51
- append(entry: Omit<LogEntry, "id">): Promise<void>;
52
- }
53
- export declare class SocialMessageRepo extends JsonFileRepo<SocialMessageRecord[]> {
54
- constructor(rootDir?: string);
55
- }
56
- export declare class SocialMessageObservationRepo extends JsonFileRepo<SocialMessageObservationRecord[]> {
57
- constructor(rootDir?: string);
58
- }
59
- export declare class SocialMessageGovernanceRepo extends JsonFileRepo<SocialMessageGovernanceConfig> {
60
- constructor(rootDir?: string);
61
- }
@@ -1,67 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SocialMessageGovernanceRepo = exports.SocialMessageObservationRepo = exports.SocialMessageRepo = exports.LogRepo = exports.CacheRepo = exports.ProfileRepo = exports.IdentityRepo = void 0;
4
- const path_1 = require("path");
5
- const core_1 = require("@silicaclaw/core");
6
- const jsonRepo_1 = require("./jsonRepo");
7
- class IdentityRepo extends jsonRepo_1.JsonFileRepo {
8
- constructor(rootDir = process.cwd()) {
9
- super((0, path_1.resolve)(rootDir, "data", "identity.json"), () => null);
10
- }
11
- }
12
- exports.IdentityRepo = IdentityRepo;
13
- class ProfileRepo extends jsonRepo_1.JsonFileRepo {
14
- constructor(rootDir = process.cwd()) {
15
- super((0, path_1.resolve)(rootDir, "data", "profile.json"), () => null);
16
- }
17
- }
18
- exports.ProfileRepo = ProfileRepo;
19
- class CacheRepo extends jsonRepo_1.JsonFileRepo {
20
- constructor(rootDir = process.cwd()) {
21
- super((0, path_1.resolve)(rootDir, "data", "cache.json"), () => (0, core_1.createEmptyDirectoryState)());
22
- }
23
- }
24
- exports.CacheRepo = CacheRepo;
25
- class LogRepo extends jsonRepo_1.JsonFileRepo {
26
- constructor(rootDir = process.cwd()) {
27
- super((0, path_1.resolve)(rootDir, "data", "logs.json"), () => []);
28
- }
29
- async append(entry) {
30
- const current = await this.get();
31
- const next = [
32
- {
33
- id: `${entry.timestamp}-${Math.random().toString(36).slice(2, 8)}`,
34
- ...entry,
35
- },
36
- ...current,
37
- ].slice(0, 50);
38
- await this.set(next);
39
- }
40
- }
41
- exports.LogRepo = LogRepo;
42
- class SocialMessageRepo extends jsonRepo_1.JsonFileRepo {
43
- constructor(rootDir = process.cwd()) {
44
- super((0, path_1.resolve)(rootDir, "data", "social-messages.json"), () => []);
45
- }
46
- }
47
- exports.SocialMessageRepo = SocialMessageRepo;
48
- class SocialMessageObservationRepo extends jsonRepo_1.JsonFileRepo {
49
- constructor(rootDir = process.cwd()) {
50
- super((0, path_1.resolve)(rootDir, "data", "social-message-observations.json"), () => []);
51
- }
52
- }
53
- exports.SocialMessageObservationRepo = SocialMessageObservationRepo;
54
- class SocialMessageGovernanceRepo extends jsonRepo_1.JsonFileRepo {
55
- constructor(rootDir = process.cwd()) {
56
- super((0, path_1.resolve)(rootDir, ".silicaclaw", "social.message-governance.json"), () => ({
57
- send_limit_max: 5,
58
- send_window_ms: 60_000,
59
- receive_limit_max: 8,
60
- receive_window_ms: 60_000,
61
- duplicate_window_ms: 180_000,
62
- blocked_agent_ids: [],
63
- blocked_terms: [],
64
- }));
65
- }
66
- }
67
- exports.SocialMessageGovernanceRepo = SocialMessageGovernanceRepo;
@@ -1,5 +0,0 @@
1
- import { SocialRuntimeConfig } from "@silicaclaw/core";
2
- import { JsonFileRepo } from "./jsonRepo";
3
- export declare class SocialRuntimeRepo extends JsonFileRepo<SocialRuntimeConfig> {
4
- constructor(rootDir?: string);
5
- }
@@ -1,57 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SocialRuntimeRepo = void 0;
7
- const path_1 = require("path");
8
- const jsonRepo_1 = require("./jsonRepo");
9
- const silicaclaw_defaults_json_1 = __importDefault(require("../config/silicaclaw-defaults.json"));
10
- function emptyRuntime() {
11
- return {
12
- enabled: true,
13
- public_enabled: false,
14
- source_path: null,
15
- last_loaded_at: 0,
16
- social_found: false,
17
- parse_error: null,
18
- resolved_identity: null,
19
- resolved_profile: null,
20
- resolved_network: {
21
- mode: silicaclaw_defaults_json_1.default.network.default_mode,
22
- adapter: "relay-preview",
23
- namespace: silicaclaw_defaults_json_1.default.network.default_namespace,
24
- port: null,
25
- signaling_url: silicaclaw_defaults_json_1.default.network.global_preview.relay_url,
26
- signaling_urls: [],
27
- room: silicaclaw_defaults_json_1.default.network.global_preview.room,
28
- seed_peers: [],
29
- bootstrap_hints: [],
30
- bootstrap_sources: [],
31
- },
32
- resolved_discovery: {
33
- discoverable: true,
34
- allow_profile_broadcast: true,
35
- allow_presence_broadcast: true,
36
- allow_message_broadcast: true,
37
- },
38
- visibility: {
39
- show_display_name: true,
40
- show_bio: true,
41
- show_tags: true,
42
- show_agent_id: true,
43
- show_last_seen: true,
44
- show_capabilities_summary: true,
45
- },
46
- openclaw: {
47
- bind_existing_identity: true,
48
- use_openclaw_profile_if_available: true,
49
- },
50
- };
51
- }
52
- class SocialRuntimeRepo extends jsonRepo_1.JsonFileRepo {
53
- constructor(rootDir = process.cwd()) {
54
- super((0, path_1.resolve)(rootDir, ".silicaclaw", "social.runtime.json"), emptyRuntime);
55
- }
56
- }
57
- exports.SocialRuntimeRepo = SocialRuntimeRepo;