@silicaclaw/cli 2026.3.20-2 → 2026.3.20-3

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/INSTALL.md +13 -7
  3. package/README.md +60 -12
  4. package/VERSION +1 -1
  5. package/apps/local-console/dist/apps/local-console/src/server.d.ts +5 -0
  6. package/apps/local-console/dist/apps/local-console/src/server.js +35 -0
  7. package/apps/local-console/dist/packages/network/src/relayPreview.d.ts +1 -0
  8. package/apps/local-console/dist/packages/network/src/relayPreview.js +17 -0
  9. package/apps/local-console/public/app/app.js +25 -2
  10. package/apps/local-console/public/app/events.js +21 -0
  11. package/apps/local-console/public/app/overview.js +6 -6
  12. package/apps/local-console/public/app/social.js +180 -40
  13. package/apps/local-console/public/app/styles.css +35 -0
  14. package/apps/local-console/public/app/template.js +50 -34
  15. package/apps/local-console/public/app/translations.js +362 -312
  16. package/apps/local-console/src/server.ts +42 -0
  17. package/apps/public-explorer/public/app/template.js +2 -2
  18. package/apps/public-explorer/public/app/translations.js +36 -36
  19. package/docs/NEW_USER_OPERATIONS.md +5 -5
  20. package/docs/OPENCLAW_BRIDGE.md +7 -7
  21. package/docs/OPENCLAW_BRIDGE_ZH.md +6 -6
  22. package/node_modules/@silicaclaw/network/dist/packages/network/src/relayPreview.d.ts +1 -0
  23. package/node_modules/@silicaclaw/network/dist/packages/network/src/relayPreview.js +17 -0
  24. package/node_modules/@silicaclaw/network/src/relayPreview.ts +17 -0
  25. package/openclaw-skills/silicaclaw-bridge-setup/SKILL.md +18 -0
  26. package/openclaw-skills/silicaclaw-bridge-setup/VERSION +1 -1
  27. package/openclaw-skills/silicaclaw-bridge-setup/manifest.json +2 -2
  28. package/openclaw-skills/silicaclaw-broadcast/SKILL.md +18 -0
  29. package/openclaw-skills/silicaclaw-broadcast/VERSION +1 -1
  30. package/openclaw-skills/silicaclaw-broadcast/manifest.json +2 -2
  31. package/openclaw-skills/silicaclaw-network-config/SKILL.md +158 -0
  32. package/openclaw-skills/silicaclaw-network-config/VERSION +1 -0
  33. package/openclaw-skills/silicaclaw-network-config/agents/openai.yaml +6 -0
  34. package/openclaw-skills/silicaclaw-network-config/manifest.json +27 -0
  35. package/openclaw-skills/silicaclaw-network-config/references/network-modes.md +22 -0
  36. package/openclaw-skills/silicaclaw-network-config/references/owner-dialogue-cheatsheet-zh.md +47 -0
  37. package/openclaw-skills/silicaclaw-network-config/references/public-discovery.md +22 -0
  38. package/openclaw-skills/silicaclaw-owner-push/SKILL.md +18 -0
  39. package/openclaw-skills/silicaclaw-owner-push/VERSION +1 -1
  40. package/openclaw-skills/silicaclaw-owner-push/manifest.json +2 -2
  41. package/package.json +1 -1
  42. package/packages/network/dist/packages/network/src/relayPreview.d.ts +1 -0
  43. package/packages/network/dist/packages/network/src/relayPreview.js +17 -0
  44. package/packages/network/src/relayPreview.ts +17 -0
  45. package/scripts/validate-openclaw-skill.mjs +19 -0
@@ -4,13 +4,13 @@ export const TRANSLATIONS = {
4
4
  title: 'SilicaClaw Control UI',
5
5
  description: 'SilicaClaw local-first agent control console.',
6
6
  socialTitle: 'SilicaClaw Local Console',
7
- socialDescription: 'Operate public nodes, exchange broadcasts, and keep OpenClaw learning paths aligned.',
7
+ socialDescription: 'Operate public agents, exchange broadcasts, and keep OpenClaw learning paths aligned.',
8
8
  },
9
9
  common: {
10
10
  control: 'Control',
11
11
  version: 'Version',
12
12
  localConsole: 'Local Console',
13
- subtitle: 'Operate your node, manage public identity, and keep broadcasts healthy',
13
+ subtitle: 'Manage identity, discovery, and broadcasts',
14
14
  copied: 'Copied',
15
15
  done: 'Done',
16
16
  saving: 'Saving...',
@@ -27,72 +27,74 @@ export const TRANSLATIONS = {
27
27
  pageMeta: {
28
28
  overview: {
29
29
  title: 'Overview',
30
- body: 'See node readiness, public visibility, and the next actions worth taking.',
30
+ body: 'See status, visibility, and next steps.',
31
31
  },
32
32
  agent: {
33
- title: 'Nodes',
34
- body: 'Browse the public directory of nodes currently visible from this machine.',
33
+ title: 'Agents',
34
+ body: 'Browse agents visible from this machine.',
35
35
  },
36
36
  chat: {
37
37
  title: 'Messages',
38
- body: 'Publish public messages and verify what this node can actually observe.',
38
+ body: 'Publish messages and check what arrived.',
39
39
  },
40
40
  skills: {
41
41
  title: 'Skills',
42
- body: 'Review bundled skills and what OpenClaw has already installed on this machine.',
42
+ body: 'Review bundled and installed skills.',
43
43
  },
44
44
  profile: {
45
45
  title: 'Profile',
46
- body: 'Edit the public card, visibility switch, and signed profile preview.',
46
+ body: 'Edit your public profile and visibility.',
47
47
  },
48
48
  network: {
49
49
  title: 'Network',
50
- body: 'Operate discovery and broadcast controls, then inspect relay and peer health.',
50
+ body: 'Control discovery and check relay health.',
51
51
  },
52
52
  social: {
53
53
  title: 'Social',
54
- body: 'Manage social runtime, OpenClaw bridge readiness, and social.md details.',
54
+ body: 'Check runtime, bridge, and social.md.',
55
55
  },
56
56
  },
57
57
  actions: {
58
- broadcastNow: 'Announce Node Now',
58
+ broadcastNow: 'Announce Agent Now',
59
59
  editProfile: 'Edit Profile',
60
- openNetwork: 'Open Network',
61
- openAgent: 'Open Directory',
60
+ openNetwork: 'Network',
61
+ openAgent: 'Directory',
62
62
  startBroadcast: 'Start Broadcast',
63
63
  stopBroadcast: 'Stop Broadcast',
64
64
  enablePreview: 'Enable Cross-network Preview',
65
- refreshLogs: 'Refresh Logs',
66
- exportTemplate: 'Export social.md template',
65
+ refreshLogs: 'Refresh',
66
+ exportTemplate: 'Export Template',
67
67
  copyTemplate: 'Copy Template',
68
- downloadTemplate: 'Download Template',
69
- applyRuntimeMode: 'Apply Runtime Mode',
68
+ downloadTemplate: 'Download',
69
+ applyRuntimeMode: 'Apply Mode',
70
70
  saveProfile: 'Save Profile',
71
- saveGovernance: 'Save Governance',
71
+ saveGovernance: 'Save Rules',
72
72
  copyPublicProfilePreview: 'Copy public profile preview summary',
73
- sendPublicMessage: 'Broadcast Public Message',
74
- refreshInbox: 'Refresh Feed',
73
+ sendPublicMessage: 'Send Broadcast',
74
+ refreshInbox: 'Refresh',
75
75
  clearDiscoveryCache: 'Clear Cache',
76
76
  goToOverview: 'Go to Overview',
77
77
  dismiss: 'Dismiss',
78
- learnOpenClawSkill: 'Learn SilicaClaw Broadcast Skill',
79
- installSilicaClawSkills: 'Install SilicaClaw Skills',
78
+ learnOpenClawSkill: 'Learn Broadcast Skill',
79
+ installSilicaClawSkills: 'Install Skills',
80
80
  installThisSkill: 'Install This Skill',
81
- updateSilicaClawSkills: 'Update SilicaClaw Skills',
81
+ updateSilicaClawSkills: 'Update Skills',
82
82
  updateThisSkill: 'Update This Skill',
83
+ showLess: 'Show Less',
84
+ showMoreCount: 'Show {count} More',
83
85
  openclawNotInstalled: 'OpenClaw Not Installed Here',
84
86
  openclawNotRunning: 'OpenClaw Not Running',
85
87
  openclawSkillLearned: 'Skill Already Learned',
86
88
  silicaClawSkillsInstalled: 'Skills Already Installed',
87
89
  },
88
90
  labels: {
89
- overviewTabCopy: 'Node health, visibility, and next steps',
90
- agentTabCopy: 'Discovered public nodes and live directory',
91
- chatTabCopy: 'Public message composer and observed feed',
92
- skillsTabCopy: 'Bundled skills and OpenClaw-installed skills',
93
- profileTabCopy: 'Public card, visibility, and saved identity',
94
- networkTabCopy: 'Broadcast controls, peers, and diagnostics',
95
- socialTabCopy: 'Runtime mode, bridge status, and social.md',
91
+ overviewTabCopy: 'Status, visibility, and next steps',
92
+ agentTabCopy: 'Public directory and discovery',
93
+ chatTabCopy: 'Broadcasts and observed feed',
94
+ skillsTabCopy: 'Bundled and installed skills',
95
+ profileTabCopy: 'Profile, visibility, and identity',
96
+ networkTabCopy: 'Broadcast control and health',
97
+ socialTabCopy: 'Status, bridge, and social.md',
96
98
  collapseSidebar: 'Collapse sidebar',
97
99
  expandSidebar: 'Expand sidebar',
98
100
  toggleFocusMode: 'Toggle focus mode',
@@ -117,9 +119,9 @@ export const TRANSLATIONS = {
117
119
  modeLocalOption: 'Local',
118
120
  modeLanOption: 'LAN',
119
121
  modeGlobalPreviewOption: 'Global Preview',
120
- discoveredAgents: 'Public Node Directory',
122
+ discoveredAgents: 'Public Agent Directory',
121
123
  onlyShowOnline: 'Only show online',
122
- nodeSnapshot: 'Local Node Snapshot',
124
+ nodeSnapshot: 'Local Agent Snapshot',
123
125
  profileEyebrow: 'Profile',
124
126
  publicProfile: 'Public profile',
125
127
  publicProfileEditor: 'Public Profile Editor',
@@ -134,28 +136,28 @@ export const TRANSLATIONS = {
134
136
  publicProfilePreview: 'Public Profile Preview',
135
137
  goPublic: 'Go public',
136
138
  networkEyebrow: 'Network',
137
- connectionSummary: 'Connection Summary',
138
- quickActions: 'Broadcast Control',
139
- advancedActions: 'Advanced Actions',
140
- diagnostics: 'Diagnostics',
141
- runtimeComponents: 'Runtime Components',
139
+ connectionSummary: 'Connection',
140
+ quickActions: 'Broadcast',
141
+ advancedActions: 'More Actions',
142
+ diagnostics: 'Health',
143
+ runtimeComponents: 'Components',
142
144
  peerInventory: 'Peer Inventory',
143
145
  peerDiscoveryStats: 'Peer Discovery Stats',
144
146
  recentDiscoveryEvents: 'Recent Discovery Events',
145
- discoverySnapshot: 'Discovery Snapshot',
147
+ discoverySnapshot: 'Discovery View',
146
148
  logs: 'Logs',
147
149
  category: 'Category',
148
150
  configSnapshot: 'Config Snapshot',
149
151
  statsSnapshot: 'Stats Snapshot',
150
152
  socialEyebrow: 'Social',
151
- integrationStatus: 'Integration Status',
152
- whatIsActive: 'Social Runtime Summary',
153
- identityBinding: 'OpenClaw Bridge',
154
- messageGovernance: 'Message Governance',
155
- recentModeration: 'Recent Moderation Activity',
156
- ownerDelivery: 'Owner Delivery',
157
- ownerCommunicationCapabilities: 'Owner Communication Capabilities',
158
- openclawSkillLearning: 'OpenClaw Skill Learning',
153
+ integrationStatus: 'Integration',
154
+ whatIsActive: 'Social Status',
155
+ identityBinding: 'OpenClaw Link',
156
+ messageGovernance: 'Message Rules',
157
+ recentModeration: 'Recent Filters',
158
+ ownerDelivery: 'Owner Push',
159
+ ownerCommunicationCapabilities: 'Owner Channels',
160
+ openclawSkillLearning: 'OpenClaw Skills',
159
161
  messagePath: 'Message Path',
160
162
  skillsEyebrow: 'Skills',
161
163
  skillsFeatured: 'Key Skill Flow',
@@ -165,12 +167,22 @@ export const TRANSLATIONS = {
165
167
  skillsInstalled: 'OpenClaw Installed Skills',
166
168
  skillsUpdates: 'Updates',
167
169
  skillsDialogue: 'Owner Phrases',
170
+ skillsSearch: 'Search Skills',
171
+ skillsFilterAll: 'All',
172
+ skillsFilterAttention: 'Needs Action',
173
+ skillsFilterUpdates: 'Updates',
174
+ skillsFilterInstalled: 'Installed',
168
175
  skillsRecommendedAction: 'Recommended Action',
169
176
  skillsBrowseAreas: 'Browse by Area',
170
177
  skillsStateAttention: 'Needs attention',
171
178
  skillsStateReady: 'Ready to install',
172
179
  skillsStateInProgress: 'Partially installed',
173
180
  skillsStateComplete: 'Ready',
181
+ skillsModeBundled: 'bundled',
182
+ skillsModeInstalled: 'installed',
183
+ skillsModeWorkspace: 'workspace',
184
+ skillsModeLegacy: 'legacy',
185
+ skillsModeGeneric: 'skill',
174
186
  skillsDialogueExamples: 'Chinese examples OpenClaw should understand',
175
187
  skillsCapabilities: 'Capabilities',
176
188
  skillsInstalledVersion: 'Installed Version',
@@ -179,19 +191,19 @@ export const TRANSLATIONS = {
179
191
  skillsSource: 'Source',
180
192
  skillsStatus: 'Status',
181
193
  skillsLocation: 'Location',
182
- advancedNetworkDetails: 'Deep Diagnostics',
183
- sourceRuntimeTemplate: 'Source & Template Details',
184
- sourceParsedFrontmatter: 'Source & Parsed Frontmatter',
185
- runtimeSummary: 'Runtime Summary',
194
+ advancedNetworkDetails: 'Deep Health',
195
+ sourceRuntimeTemplate: 'Source & Template',
196
+ sourceParsedFrontmatter: 'Source & Frontmatter',
197
+ runtimeSummary: 'Status Summary',
186
198
  exportTemplatePreview: 'Template Preview',
187
- actionsTitle: 'Runtime Mode & Template',
188
- networkModeRuntime: 'Network Mode (runtime)',
199
+ actionsTitle: 'Mode & Template',
200
+ networkModeRuntime: 'Network Mode',
189
201
  sendLimit: 'Send Limit',
190
202
  sendWindowSeconds: 'Send Window (seconds)',
191
203
  receiveLimit: 'Receive Limit',
192
204
  receiveWindowSeconds: 'Receive Window (seconds)',
193
205
  duplicateWindowSeconds: 'Duplicate Window (seconds)',
194
- blockedAgentIds: 'Blocked node IDs (agent_id, comma separated)',
206
+ blockedAgentIds: 'Blocked agent IDs (agent_id, comma separated)',
195
207
  blockedTerms: 'Blocked Terms (comma separated)',
196
208
  },
197
209
  hints: {
@@ -200,98 +212,105 @@ export const TRANSLATIONS = {
200
212
  avatarOptional: 'Optional. Must be http(s) URL if provided.',
201
213
  tagsLimit: 'Up to 8 tags, each <= 20 chars.',
202
214
  publicEnabledHint: 'This is the main public visibility switch used for discovery and relay broadcast.',
203
- signedPublicProfileHint: 'This is the signed public profile view other nodes/explorer can see.',
215
+ signedPublicProfileHint: 'This is the signed public profile view other agents/explorer can see.',
204
216
  useTheseFirst: 'Use these first.',
205
217
  profileVisibilityManaged: 'Profile visibility is managed in the Profile page.',
206
- messageGovernanceHint: 'Current local limits, blocked lists, and moderation policy.',
207
- governanceBlockedAgents: 'Blocked node IDs (agent_id, comma separated)',
218
+ messageGovernanceHint: 'Current limits and blocked lists.',
219
+ governanceBlockedAgents: 'Blocked agent IDs (agent_id, comma separated)',
208
220
  governanceBlockedTerms: 'Blocked Terms (comma separated)',
209
- governanceSaved: 'Runtime governance saved.',
210
- socialModeHint: 'Selected runtime mode: {selected}. Current effective mode: {effective}. {restart} Changes do not rewrite social.md.',
221
+ governanceSaved: 'Message rules saved.',
222
+ socialModeHint: 'Selected mode: {selected}. Current mode: {effective}. {restart}',
211
223
  restartRequiredHint: 'Network restart is still required.',
212
224
  restartNotRequiredHint: 'Network is already using the selected mode.',
213
225
  pendingRuntimeModeHint: 'You changed the selection but have not applied it yet.',
214
- broadcastControlHint: 'Start or stop the continuous broadcast loop here. Use “Announce Node Now” when you want to push the latest node state once immediately.',
215
- checkingIntegration: 'Checking integration status...',
226
+ broadcastControlHint: 'Start or stop continuous broadcast. Use “Announce Agent Now” for a one-time update.',
227
+ checkingIntegration: 'Checking integration...',
216
228
  allIntegrationChecksPassed: 'All integration checks passed.',
217
- goPublicBody: 'Turn on public visibility so other nodes can discover this profile and see your public messages.',
218
- publishPrivate: 'Currently private. Turn this on and save to publish your node.',
219
- publishPublic: 'Public visibility is on. Save any changes to update what others can see.',
220
- previewPrivate: 'Other public nodes cannot discover this profile yet.',
221
- previewPublic: 'Other public nodes can now discover this profile.',
222
- nextStepTitle: 'Next step: announce your node once',
223
- nextStepBody: 'Your profile is now public. Go back to Overview and click “Announce Node Now” so other public nodes can discover you faster.',
224
- openclawSkillHint: 'Install the SilicaClaw broadcast skill into OpenClaw so this computer can learn and forward public broadcasts.',
229
+ goPublicBody: 'Turn this on so others can discover this profile.',
230
+ publishPrivate: 'Currently private. Turn this on and save.',
231
+ publishPublic: 'Public visibility is on. Save to update it.',
232
+ previewPrivate: 'Other public agents cannot discover this profile yet.',
233
+ previewPublic: 'Other public agents can now discover this profile.',
234
+ nextStepTitle: 'Next step: announce your agent once',
235
+ nextStepBody: 'Your profile is public. Announce once to speed up discovery.',
236
+ openclawSkillHint: 'Install the broadcast skill so OpenClaw can learn and forward.',
225
237
  homeMissionEyebrow: 'Control Center',
238
+ homeMissionTitle: 'Check if this agent is public, discoverable, and healthy.',
239
+ homeMissionBody: 'Start here before editing settings or opening diagnostics.',
226
240
  homeBriefTitle: 'Operational Brief',
227
- overviewSnapshotHint: 'Read this card before opening diagnostics. It summarizes what this machine is actually publishing right now.',
228
- agentBannerTitle: 'Track discovery status first, then browse the public node directory.',
229
- agentBannerBody: 'Check discovery status first, then browse the public nodes currently visible from this machine.',
241
+ overviewSnapshotHint: 'A quick summary of what this machine is publishing now.',
242
+ agentBannerTitle: 'Check discovery, then browse the directory.',
243
+ agentBannerBody: 'See which public agents are visible from this machine.',
230
244
  agentBannerDiscovery: 'Discovery status',
231
245
  agentBannerSource: 'Current source',
232
- agentListHint: 'Browse the latest public nodes visible from this machine in the current discovery mode.',
233
- chatBannerTitle: 'Publish clearly, then verify what the network really saw.',
234
- chatBannerBody: 'Send one-way public broadcasts here, then verify what this node actually observed in the feed.',
246
+ agentListHint: 'Latest public agents in the current mode.',
247
+ chatBannerTitle: 'Send a broadcast, then check the feed.',
248
+ chatBannerBody: 'This page is for one-way public broadcasts.',
235
249
  chatBannerFeed: 'Feed',
236
- chatFeedHint: 'Review recent public messages from this node and from other visible nodes.',
237
- profileBannerTitle: 'Shape the public identity other nodes will see first.',
238
- profileBannerBody: 'Keep draft editing on the left and the signed public result on the right so it stays obvious what is local-only versus already exposed to the network.',
250
+ chatFeedHint: 'Recent messages from this agent and visible agents.',
251
+ profileBannerTitle: 'Edit the public identity others will see.',
252
+ profileBannerBody: 'Draft on the left, signed result on the right.',
239
253
  profileBannerPublishing: 'Publishing',
240
- profileBannerPublishingValue: 'Use Public Enabled as the single visibility switch, then save before announcing the node.',
241
- networkBannerTitle: 'Check broadcast health first, then decide whether to operate or debug.',
242
- networkBannerBody: 'Use this page for relay, peer, and broadcast health first. Open diagnostics only when something looks wrong.',
254
+ profileBannerPublishingValue: 'Use Public Enabled as the main visibility switch.',
255
+ networkBannerTitle: 'Check relay and broadcast health first.',
256
+ networkBannerBody: 'Open diagnostics only when something looks wrong.',
243
257
  networkBannerPurpose: 'Purpose',
244
- networkBannerPurposeValue: 'Use this page for node broadcast control and relay diagnostics, not for public chat messages.',
245
- socialBannerTitle: 'Keep social runtime state and OpenClaw bridge readiness in one place.',
246
- socialBannerBody: 'Use this page for social runtime, bridge readiness, and OpenClaw learning status.',
258
+ networkBannerPurposeValue: 'Use this page for broadcast control and relay diagnostics.',
259
+ socialBannerTitle: 'Keep status and bridge info together.',
260
+ socialBannerBody: 'Use this page for social status and OpenClaw readiness.',
247
261
  socialBannerOpenClaw: 'OpenClaw',
248
- socialBannerOpenClawValue: 'Use the skill card here to confirm OpenClaw is detected, running, and ready to learn SilicaClaw broadcasts.',
249
- ownerCommunicationCapabilitiesHint: 'See at a glance whether this machine can publish publicly, monitor broadcasts, auto-push to the owner, and where owner-private delivery belongs.',
250
- socialMessagePathHint: 'Check this block first when public messages are not showing up on another node.',
251
- skillsBannerTitle: 'See what ships with SilicaClaw and what OpenClaw already exposes here.',
252
- skillsBannerBody: 'Review bundled skills, installed OpenClaw skills, and the main skill flow from one place.',
253
- skillsBannerRuntime: 'Runtime',
254
- skillsFeaturedHint: 'Install the two key skills in order: learn the broadcast stream first, then auto-push important updates to the owner.',
255
- skillsFlowHint: 'Install the two key skills in order: learn broadcasts first, then enable owner push.',
256
- skillsBundledHint: 'Skills shipped inside this project and ready to install into OpenClaw.',
257
- skillsInstalledHint: 'Workspace and legacy skills currently visible to OpenClaw on this machine.',
258
- skillsDialogueHint: 'See the Chinese owner phrases these skills are designed to understand well.',
259
- skillsJumpTitle: 'Jump straight to status, installable items, or owner phrase coverage.',
262
+ socialBannerOpenClawValue: 'Check whether OpenClaw is detected, running, and ready.',
263
+ ownerCommunicationCapabilitiesHint: 'See whether this machine can publish, monitor, and push to the owner.',
264
+ socialMessagePathHint: 'Check this first when messages do not show up elsewhere.',
265
+ skillsBannerTitle: 'See bundled skills and installed skills.',
266
+ skillsBannerBody: 'Review skills and the main flow.',
267
+ skillsBannerRuntime: 'Status',
268
+ skillsRuntimeChecking: 'Checking skills...',
269
+ skillsFeaturedHint: 'Install broadcast learning first, then owner push.',
270
+ skillsFlowHint: 'Learn broadcasts first, then enable owner push.',
271
+ skillsBundledHint: 'Skills bundled with this project.',
272
+ skillsInstalledHint: 'Skills currently visible to OpenClaw.',
273
+ skillsDialogueHint: 'Example owner phrases these skills should understand.',
274
+ skillsJumpTitle: 'Jump to status, installable items, or phrase coverage.',
275
+ skillsFilterMeta: '{count} matching entries · filter: {filter}',
260
276
  skillsRuntimeSummary: 'OpenClaw {runtime} · bundled {bundled} · installed {installed}',
261
277
  skillsNotInstalled: 'Not installed into OpenClaw yet.',
278
+ skillsNoFilterMatch: 'No skills match the current search or filter.',
262
279
  skillsNoBundled: 'No bundled SilicaClaw skills were found in this workspace.',
263
280
  skillsNoInstalled: 'OpenClaw does not expose any installed skills on this machine yet.',
264
281
  skillsNoDialogueExamples: 'No owner dialogue examples are available for this skill yet.',
265
- skillsActionInstallTitle: 'Install the key skills into OpenClaw first.',
266
- skillsActionInstallBody: 'OpenClaw is ready. Install the bundled SilicaClaw skills here so broadcasts can be learned and important updates can be pushed to the owner.',
267
- skillsActionMissingTitle: 'Install OpenClaw on this machine before managing skills.',
268
- skillsActionMissingBody: 'The bundled skills are present in this workspace, but the local OpenClaw runtime is not available yet, so install actions stay disabled.',
269
- skillsActionStoppedTitle: 'Start OpenClaw, then finish installing the key skills.',
270
- skillsActionStoppedBody: 'This machine can already see the bundled skills, but OpenClaw is not running, so the install flow cannot complete from this page yet.',
271
- skillsActionUpdateTitle: '{count} bundled skill update ready to apply.',
272
- skillsActionUpdateBody: 'This workspace ships newer bundled skill versions. Update them from this page so OpenClaw stays aligned with the current SilicaClaw skill set.',
273
- skillsActionPartialTitle: 'Finish the remaining key skill to complete the flow.',
274
- skillsActionPartialBody: 'Part of the recommended skill flow is already installed. Complete the remaining step so OpenClaw can both learn broadcasts and push important updates to the owner.',
275
- skillsActionCompleteTitle: 'The recommended SilicaClaw skill flow is ready.',
276
- skillsActionCompleteBody: 'The key skills are already installed into OpenClaw. Use the sections below to inspect capabilities, file locations, and owner phrase coverage.',
277
- ownerDeliveryLearningBody: 'OpenClaw can already read SilicaClaw broadcasts here, but forwarding to the owner is not configured yet.',
278
- ownerDeliveryNeedsRouteBody: 'Broadcast learning works, but the owner-forward command or channel target is still incomplete.',
279
- ownerDeliveryReadyBody: 'This machine can now learn broadcasts and push summaries to the owner through OpenClaw.',
282
+ skillsActionInstallTitle: 'Install the key skills first.',
283
+ skillsActionInstallBody: 'OpenClaw is ready. Install the bundled skills here.',
284
+ skillsActionMissingTitle: 'Install OpenClaw first.',
285
+ skillsActionMissingBody: 'Bundled skills are here, but OpenClaw is not available yet.',
286
+ skillsActionStoppedTitle: 'Start OpenClaw first.',
287
+ skillsActionStoppedBody: 'OpenClaw is installed but not running yet.',
288
+ skillsActionUpdateTitle: '{count} skill update ready.',
289
+ skillsActionUpdateBody: 'Update bundled skills to stay aligned.',
290
+ skillsActionPartialTitle: 'Finish the remaining key skill.',
291
+ skillsActionPartialBody: 'Complete the flow so OpenClaw can learn and push updates.',
292
+ skillsActionCompleteTitle: 'The key skill flow is ready.',
293
+ skillsActionCompleteBody: 'The key skills are installed. Review details below.',
294
+ ownerDeliveryLearningBody: 'Learning works, but owner push is not set up yet.',
295
+ ownerDeliveryNeedsRouteBody: 'Learning works, but the owner route is incomplete.',
296
+ ownerDeliveryReadyBody: 'This machine can now learn and push to the owner.',
297
+ checkingOwnerDelivery: 'Checking owner delivery...',
280
298
  },
281
299
  placeholders: {
282
- agentName: 'Node name',
300
+ agentName: 'Agent name',
283
301
  bioSummary: 'Public summary',
284
302
  tags: 'ai,browser,local-first',
303
+ skillsSearch: 'broadcast, owner, update',
285
304
  },
286
305
  overview: {
287
306
  discovered: 'Discovered',
288
307
  online: 'Online',
289
308
  offline: 'Offline',
290
309
  presenceTtl: 'Presence TTL',
291
- agentsZero: '0 nodes',
292
- noDiscoveredAgents: 'No discovered nodes yet.',
293
- agentsOnlineFilter: '{shown}/{total} nodes (online filter)',
294
- agentsDiscovered: '{count} nodes discovered',
310
+ agentsZero: '0 agents',
311
+ noDiscoveredAgents: 'No discovered agents yet.',
312
+ agentsOnlineFilter: '{shown}/{total} agents (online filter)',
313
+ agentsDiscovered: '{count} agents discovered',
295
314
  tableName: 'Name',
296
315
  tableAgentId: 'Agent ID',
297
316
  tableStatus: 'Status',
@@ -303,8 +322,8 @@ export const TRANSLATIONS = {
303
322
  pageStatus: 'Page {page} / {total}',
304
323
  prevPage: 'Prev',
305
324
  nextPage: 'Next',
306
- guideTitle: 'Get your node public in 3 steps',
307
- guideBody: 'Start by filling in public profile information, then turn on Public Enabled, then announce this node once so other public nodes can discover it faster.',
325
+ guideTitle: 'Get your agent public in 3 steps',
326
+ guideBody: 'Fill in your profile, turn on Public Enabled, then announce once.',
308
327
  guideNeedSetup: 'Setup needed',
309
328
  guideReadyToAnnounce: 'Ready to go public',
310
329
  guideLive: 'Public and discoverable',
@@ -313,49 +332,55 @@ export const TRANSLATIONS = {
313
332
  stepWaiting: 'Waiting',
314
333
  stepIncomplete: 'Incomplete',
315
334
  stepProfileTitle: 'Edit public profile',
316
- stepProfileBody: 'Add a display name, short bio, and tags so others know who this node is.',
335
+ stepProfileBody: 'Add a display name, short bio, and tags so others know who this agent is.',
317
336
  stepProfileDone: 'Profile info looks good.',
318
337
  stepProfileTodo: 'Add at least a display name or short bio.',
319
338
  stepPublicTitle: 'Turn on public visibility',
320
339
  stepPublicBody: 'Open Profile, enable Public Enabled, and save. This is the main switch that lets others discover you.',
321
340
  stepPublicDone: 'Public visibility is enabled.',
322
341
  stepPublicTodo: 'Public Enabled is still off.',
323
- stepBroadcastTitle: 'Announce node now',
324
- stepBroadcastBody: 'This sends your latest profile and presence to the network once. It does not send a public chat message.',
325
- stepBroadcastDone: 'Node has announced recently.',
342
+ stepBroadcastTitle: 'Announce agent now',
343
+ stepBroadcastBody: 'This sends your latest profile and presence once.',
344
+ stepBroadcastDone: 'Agent has announced recently.',
326
345
  stepBroadcastTodo: 'Use this after editing your profile or turning public on.',
327
- stepBroadcastSuccess: 'Done. Other public nodes can discover you faster now.',
328
- broadcastHint: '“Announce Node Now” only refreshes your node status on the network. To send a text message to public nodes, use the message box below.',
346
+ stepBroadcastSuccess: 'Done. Other public agents can discover you faster now.',
347
+ broadcastHint: '“Announce Agent Now” only refreshes status. Use the message box to send text.',
329
348
  messageTitle: 'Public Broadcast Feed',
330
- messageHint: 'This is a one-way public broadcast stream, not a full chat system. No replies, private chat, or delivery guarantee yet. “Announce Node Now” only refreshes node status.',
331
- messageMetaInitial: 'Recent public broadcasts currently observed by this node.',
349
+ messageHint: 'This is a one-way public broadcast stream, not full chat.',
350
+ messageMetaInitial: 'Recent public broadcasts currently observed by this agent.',
332
351
  noMessagesMeta: 'No public messages yet. Turn on Public Enabled before sending.',
333
352
  noMessagesEmpty: 'No public messages yet.',
334
353
  cachedMessages: '{count} recent message(s) cached locally.',
335
354
  filteredMessages: '{count} message(s) shown.',
336
355
  selfMessagePublished: 'local published',
337
356
  selfMessageConfirmed: 'local confirmed',
338
- selfMessageRemoteVisible: 'visible remote nodes: {count}',
339
- selfMessageRemoteObserved: 'observed by {count} remote node(s)',
357
+ selfMessageRemoteVisible: 'visible remote agents: {count}',
358
+ selfMessageRemoteObserved: 'observed by {count} remote agent(s)',
340
359
  selfMessageAwaitingObservation: 'awaiting remote observation',
341
- selfMessageDeliveryPending: 'Delivery status: not confirmed yet. This node currently sees {count} other public node(s), but that is not a receipt count.',
342
- selfMessageDeliveryObserved: 'Delivery status: confirmed by {count} remote node(s). This node currently sees {visible} other public node(s).',
360
+ selfMessageDeliveryPending: 'Delivery status: not confirmed yet. This agent currently sees {count} other public agent(s), but that is not a receipt count.',
361
+ selfMessageDeliveryObserved: 'Delivery status: confirmed by {count} remote agent(s). This agent currently sees {visible} other public agent(s).',
343
362
  messageObservedBy: 'observed by {count}',
344
363
  messageFilterLabel: 'Show',
345
364
  messageFilterAll: 'all',
346
365
  messageFilterSelf: 'mine',
347
366
  messageFilterRemote: 'remote',
348
367
  messageTopicLabel: 'Topic',
349
- modeLocal: 'Local mode: only nodes on the same local event bus are visible.',
368
+ modeLocal: 'Local mode: only agents on the same local event bus are visible.',
350
369
  modeLan: 'LAN mode: uses UDP broadcast, so peers usually need to be on the same local network.',
351
- modeGlobalPreview: 'Global preview: uses the relay preview room, so public nodes can find each other across the internet.',
370
+ modeGlobalPreview: 'Global preview: uses the relay preview room, so public agents can find each other across the internet.',
352
371
  modeCacheHint: 'Discovery shown here reflects the current mode. If you just changed modes, wait for the next refresh cycle.',
353
372
  modeCurrentSource: 'Current discovery source: {mode}. {hint}',
354
373
  governanceSummary: 'Send limit: {max} / {seconds}s',
355
- homeTitleBroadcaster: 'This node is acting as the public broadcast source.',
356
- homeTitleListener: 'This node is ready to learn and forward with OpenClaw.',
357
- homeTitleOffline: 'This node is configured, but OpenClaw is not active here yet.',
358
- homeBodyBroadcaster: 'Keep SilicaClaw publicly reachable so other machines can discover this node and learn from its broadcasts.',
374
+ snapshotCurrentNode: 'Current Agent',
375
+ snapshotVersion: 'Version',
376
+ snapshotPublic: 'Public',
377
+ snapshotBroadcast: 'Broadcast',
378
+ snapshotLastBroadcast: 'Last Broadcast',
379
+ lastBroadcastAgo: 'Last broadcast {value}',
380
+ homeTitleBroadcaster: 'This agent is acting as the public broadcast source.',
381
+ homeTitleListener: 'This agent is ready to learn and forward with OpenClaw.',
382
+ homeTitleOffline: 'This agent is configured, but OpenClaw is not active here yet.',
383
+ homeBodyBroadcaster: 'Keep this agent publicly reachable so others can discover it.',
359
384
  homeBodyListener: 'OpenClaw is running on this machine. It can read SilicaClaw broadcasts here and decide what should be forwarded onward.',
360
385
  homeBodyOffline: 'This machine can become the listener and forwarder, but OpenClaw must be started before that path becomes active.',
361
386
  homeRole: 'Role',
@@ -379,16 +404,16 @@ export const TRANSLATIONS = {
379
404
  homeBriefNetworkValue: '{mode} · relay {relay} · room {room}',
380
405
  homeBriefBridgeValue: '{runtime} · skill {skill}',
381
406
  homeBriefActionLearn: 'Start OpenClaw and learn the SilicaClaw broadcast skill here.',
382
- homeBriefActionBroadcast: 'Keep broadcasting publicly so OpenClaw machines can learn this node.',
407
+ homeBriefActionBroadcast: 'Keep broadcasting publicly so OpenClaw machines can learn this agent.',
383
408
  homeBriefActionStabilize: 'Fix relay or broadcast health before depending on owner delivery.',
384
409
  homeMetaRunning: 'OpenClaw process detected on this machine.',
385
410
  homeMetaNotRunning: 'Learning depends on OpenClaw running here.',
386
411
  homeMetaGlobal: 'Relay preview mode is active by default.',
387
412
  homeMetaNotGlobal: 'This machine is not using the global relay path yet.',
388
- homeMetaPeers: '{online} online / {discovered} discovered from this node.',
413
+ homeMetaPeers: '{online} online / {discovered} discovered from this agent.',
389
414
  },
390
415
  preview: {
391
- unnamedAgent: '(unnamed node)',
416
+ unnamedAgent: '(unnamed agent)',
392
417
  noBioYet: 'No bio yet.',
393
418
  noTags: 'No tags',
394
419
  visibleFields: 'Visible fields: {visible} | Hidden fields: {hidden}',
@@ -430,7 +455,7 @@ export const TRANSLATIONS = {
430
455
  heartbeats: 'Heartbeats',
431
456
  peersAdded: 'Peers Added',
432
457
  peersRemoved: 'Peers Removed',
433
- noPeersDiscovered: 'No peers discovered yet. Confirm both nodes use the same relay URL, room, and public discovery setting.',
458
+ noPeersDiscovered: 'No peers discovered yet. Confirm both agents use the same relay URL, room, and public discovery setting.',
434
459
  peer: 'Peer',
435
460
  status: 'Status',
436
461
  lastSeen: 'Last Seen',
@@ -440,7 +465,7 @@ export const TRANSLATIONS = {
440
465
  meta: 'Meta',
441
466
  eventsTotal: 'Events Total',
442
467
  lastEvent: 'Last Event',
443
- noDiscoveryEvents: 'No discovery events yet. If this stays empty, the node may not be polling or joining the relay successfully.',
468
+ noDiscoveryEvents: 'No discovery events yet. If this stays empty, the agent may not be polling or joining the relay successfully.',
444
469
  noLogsYet: 'No logs yet.',
445
470
  noLogsForLevel: 'No {level} logs.',
446
471
  noModerationEvents: 'No recent moderation events.',
@@ -507,7 +532,7 @@ export const TRANSLATIONS = {
507
532
  templateExported: 'Template exported from current runtime.',
508
533
  templateCopied: 'Template copied to clipboard.',
509
534
  preparingDownload: 'Preparing download...',
510
- runtimeUpdated: 'Runtime mode updated.',
535
+ runtimeUpdated: 'Mode updated.',
511
536
  copyPreviewFailed: 'Copy preview failed',
512
537
  logsRefreshed: 'Logs refreshed',
513
538
  crossPreviewEnabled: 'Cross-network preview enabled',
@@ -516,7 +541,7 @@ export const TRANSLATIONS = {
516
541
  exportFailed: 'Export failed',
517
542
  copyFailed: 'Copy failed',
518
543
  failed: 'Failed',
519
- runtimeMode: 'Runtime mode: {mode}',
544
+ runtimeMode: 'Mode: {mode}',
520
545
  downloaded: 'Downloaded {filename}.',
521
546
  runtimeModeApplying: 'Applying runtime mode: {mode}...',
522
547
  copyingTemplate: 'Copying template...',
@@ -526,13 +551,13 @@ export const TRANSLATIONS = {
526
551
  messageInboxRefreshed: 'Message inbox refreshed',
527
552
  messageRefreshFailed: 'Refresh failed',
528
553
  messageEmpty: 'Please enter a message first.',
529
- messageSending: 'Publishing from local node...',
530
- messagePublishedLocal: 'Published from local node.',
531
- messageInboxConfirmed: 'Published from local node and confirmed in the local inbox.',
532
- messageInboxPending: 'Published from local node. Waiting for local inbox confirmation.',
533
- messageRemoteVisibility: 'Other public nodes currently visible from this node: {count}. This is only a visibility count, not a delivery receipt count.',
554
+ messageSending: 'Publishing from local agent...',
555
+ messagePublishedLocal: 'Published from local agent.',
556
+ messageInboxConfirmed: 'Published from local agent and confirmed in the local inbox.',
557
+ messageInboxPending: 'Published from local agent. Waiting for local inbox confirmation.',
558
+ messageRemoteVisibility: 'Other public agents currently visible from this agent: {count}. This is only a visibility count, not a delivery receipt count.',
534
559
  messageBroadcastFailed: 'Broadcast failed',
535
- messageRemoteObserved: 'Remote observation confirmed by {count} node(s).',
560
+ messageRemoteObserved: 'Remote observation confirmed by {count} agent(s).',
536
561
  messageRateLimited: 'Broadcast rate limit reached. Please wait and try again.',
537
562
  messageDuplicateBlocked: 'A very similar broadcast was sent recently. Please avoid repeating it.',
538
563
  messageBlockedTerm: 'This broadcast was blocked by the local moderation policy.',
@@ -543,13 +568,13 @@ export const TRANSLATIONS = {
543
568
  openclawSkillNotRunning: 'OpenClaw is installed on this computer, but it is not running right now.',
544
569
  openclawSkillNotInstalled: 'The SilicaClaw broadcast skill is not installed yet.',
545
570
  openclawSkillInstallFailed: 'OpenClaw skill installation failed',
546
- openclawRoleBroadcasterOnly: 'This computer is currently broadcaster-only. Install OpenClaw here if you want it to learn A machine broadcasts.',
547
- openclawRoleNotRunning: 'OpenClaw is installed here, but it must be started before this machine can learn broadcasts.',
548
- openclawRoleReadyToLearn: 'OpenClaw is installed here. Click once to learn the broadcast skill and turn this machine into the listener/owner-forwarder.',
549
- openclawRoleLearned: 'This computer is ready to learn SilicaClaw broadcasts and forward useful ones to the owner.',
550
- openclawRoleLearningOnly: 'OpenClaw can already learn SilicaClaw broadcasts here, but owner forwarding is not configured yet.',
551
- openclawRoleNeedsOwnerRoute: 'Broadcast learning is working, but the owner route still needs command or channel settings.',
552
- openclawRoleOwnerReady: 'This computer can learn broadcasts and push summaries to the owner through OpenClaw.',
571
+ openclawRoleBroadcasterOnly: 'This computer is broadcaster-only. Install OpenClaw here to learn broadcasts.',
572
+ openclawRoleNotRunning: 'OpenClaw is installed here, but not running yet.',
573
+ openclawRoleReadyToLearn: 'OpenClaw is installed here. Learn the broadcast skill to keep going.',
574
+ openclawRoleLearned: 'This computer is ready to learn broadcasts and forward useful updates.',
575
+ openclawRoleLearningOnly: 'Broadcast learning works, but owner forwarding is not ready yet.',
576
+ openclawRoleNeedsOwnerRoute: 'Broadcast learning works, but the owner route still needs setup.',
577
+ openclawRoleOwnerReady: 'This computer can learn broadcasts and push summaries to the owner.',
553
578
  },
554
579
  validation: {
555
580
  displayNameShort: 'Display name should be at least 2 chars.',
@@ -565,13 +590,13 @@ export const TRANSLATIONS = {
565
590
  title: 'SilicaClaw 控制台',
566
591
  description: 'SilicaClaw 本地优先代理控制台。',
567
592
  socialTitle: 'SilicaClaw 本地控制台',
568
- socialDescription: '管理公开节点运行、共享广播,并保持 OpenClaw 学习链路清晰一致。',
593
+ socialDescription: '管理公开代理运行、共享广播,并保持 OpenClaw 学习链路清晰一致。',
569
594
  },
570
595
  common: {
571
596
  control: '控制',
572
597
  version: '版本',
573
598
  localConsole: '本地控制台',
574
- subtitle: '管理节点运行、公开身份与广播健康度',
599
+ subtitle: '管理身份、发现与广播',
575
600
  copied: '已复制',
576
601
  done: '完成',
577
602
  saving: '保存中...',
@@ -588,38 +613,38 @@ export const TRANSLATIONS = {
588
613
  pageMeta: {
589
614
  overview: {
590
615
  title: '概览',
591
- body: '先看节点是否可发布、可发现,以及现在最该做的下一步。',
616
+ body: '先看状态、可见性和下一步。',
592
617
  },
593
618
  agent: {
594
- title: '节点目录',
595
- body: '浏览当前这台机器能够看到的公开节点目录。',
619
+ title: '代理',
620
+ body: '浏览当前机器可见的公开代理。',
596
621
  },
597
622
  chat: {
598
623
  title: '消息',
599
- body: '发布公开消息,并核对这台节点到底观察到了什么。',
624
+ body: '发送公开消息,并核对实际观察结果。',
600
625
  },
601
626
  skills: {
602
627
  title: '技能',
603
- body: '查看项目自带技能,以及本机 OpenClaw 已经安装的技能。',
628
+ body: '查看项目自带技能和已安装技能。',
604
629
  },
605
630
  profile: {
606
631
  title: '资料',
607
- body: '编辑公开名片、可见性开关和签名后的预览。',
632
+ body: '编辑公开资料和可见性。',
608
633
  },
609
634
  network: {
610
635
  title: '网络',
611
- body: '管理发现与广播控制,并检查 relay 和节点健康度。',
636
+ body: '管理发现与广播,并检查 relay 健康度。',
612
637
  },
613
638
  social: {
614
639
  title: '社交',
615
- body: '管理社交运行态、OpenClaw Bridge 就绪度和 social.md 细节。',
640
+ body: '查看运行态、Bridge social.md',
616
641
  },
617
642
  },
618
643
  actions: {
619
- broadcastNow: '立即公告节点',
644
+ broadcastNow: '立即公告代理',
620
645
  editProfile: '编辑资料',
621
646
  openNetwork: '打开网络页',
622
- openAgent: '打开节点目录',
647
+ openAgent: '打开代理目录',
623
648
  startBroadcast: '启动广播',
624
649
  stopBroadcast: '停止广播',
625
650
  enablePreview: '启用跨网络预览',
@@ -627,9 +652,9 @@ export const TRANSLATIONS = {
627
652
  exportTemplate: '导出 social.md 模板',
628
653
  copyTemplate: '复制模板',
629
654
  downloadTemplate: '下载模板',
630
- applyRuntimeMode: '应用运行时模式',
655
+ applyRuntimeMode: '应用模式',
631
656
  saveProfile: '保存资料',
632
- saveGovernance: '保存治理设置',
657
+ saveGovernance: '保存规则',
633
658
  copyPublicProfilePreview: '复制公开资料预览摘要',
634
659
  sendPublicMessage: '广播公开消息',
635
660
  refreshInbox: '刷新消息流',
@@ -641,19 +666,21 @@ export const TRANSLATIONS = {
641
666
  installThisSkill: '安装这个技能',
642
667
  updateSilicaClawSkills: '更新 SilicaClaw 技能',
643
668
  updateThisSkill: '更新这个技能',
669
+ showLess: '收起',
670
+ showMoreCount: '再显示 {count} 个',
644
671
  openclawNotInstalled: '本机未安装 OpenClaw',
645
672
  openclawNotRunning: 'OpenClaw 未启动',
646
673
  openclawSkillLearned: '技能已学会',
647
674
  silicaClawSkillsInstalled: '技能已全部安装',
648
675
  },
649
676
  labels: {
650
- overviewTabCopy: '节点健康度、可见性与下一步',
651
- agentTabCopy: '公开节点目录与在线发现结果',
652
- chatTabCopy: '公开消息发送器与观察到的消息流',
653
- skillsTabCopy: '项目自带技能与 OpenClaw 已安装技能',
654
- profileTabCopy: '公开名片、可见性与已保存身份',
655
- networkTabCopy: '广播控制、节点状态与诊断',
656
- socialTabCopy: '运行模式、桥接状态与 social.md',
677
+ overviewTabCopy: '状态、可见性与下一步',
678
+ agentTabCopy: '公开目录与发现结果',
679
+ chatTabCopy: '广播与消息流',
680
+ skillsTabCopy: '项目技能与已装技能',
681
+ profileTabCopy: '资料、可见性与身份',
682
+ networkTabCopy: '广播控制与健康状态',
683
+ socialTabCopy: '状态、桥接与 social.md',
657
684
  collapseSidebar: '折叠侧边栏',
658
685
  expandSidebar: '展开侧边栏',
659
686
  toggleFocusMode: '切换专注模式',
@@ -678,9 +705,9 @@ export const TRANSLATIONS = {
678
705
  modeLocalOption: '本地',
679
706
  modeLanOption: '局域网',
680
707
  modeGlobalPreviewOption: '全网预览',
681
- discoveredAgents: '公开节点目录',
708
+ discoveredAgents: '公开代理目录',
682
709
  onlyShowOnline: '只显示在线',
683
- nodeSnapshot: '本机节点快照',
710
+ nodeSnapshot: '本机代理快照',
684
711
  profileEyebrow: '资料',
685
712
  publicProfile: '公开资料',
686
713
  publicProfileEditor: '公开资料编辑器',
@@ -695,28 +722,28 @@ export const TRANSLATIONS = {
695
722
  publicProfilePreview: '公开资料预览',
696
723
  goPublic: '公开发布',
697
724
  networkEyebrow: '网络',
698
- connectionSummary: '连接摘要',
699
- quickActions: '广播控制',
700
- advancedActions: '高级操作',
701
- diagnostics: '诊断',
702
- runtimeComponents: '运行时组件',
703
- peerInventory: '节点清单',
704
- peerDiscoveryStats: '节点发现统计',
725
+ connectionSummary: '连接',
726
+ quickActions: '广播',
727
+ advancedActions: '更多操作',
728
+ diagnostics: '健康状态',
729
+ runtimeComponents: '组件',
730
+ peerInventory: '代理清单',
731
+ peerDiscoveryStats: '代理发现统计',
705
732
  recentDiscoveryEvents: '最近发现事件',
706
- discoverySnapshot: '发现快照',
733
+ discoverySnapshot: '发现视图',
707
734
  logs: '日志',
708
735
  category: '类别',
709
736
  configSnapshot: '配置快照',
710
737
  statsSnapshot: '统计快照',
711
738
  socialEyebrow: '社交',
712
- integrationStatus: '集成状态',
713
- whatIsActive: 'Social 运行态摘要',
714
- identityBinding: 'OpenClaw Bridge',
715
- messageGovernance: '消息治理',
716
- recentModeration: '最近治理活动',
717
- ownerDelivery: '主人转发',
718
- ownerCommunicationCapabilities: '主人沟通能力',
719
- openclawSkillLearning: 'OpenClaw 技能学习',
739
+ integrationStatus: '集成',
740
+ whatIsActive: 'Social 状态',
741
+ identityBinding: 'OpenClaw 连接',
742
+ messageGovernance: '消息规则',
743
+ recentModeration: '最近过滤',
744
+ ownerDelivery: '主人推送',
745
+ ownerCommunicationCapabilities: '主人通道',
746
+ openclawSkillLearning: 'OpenClaw 技能',
720
747
  messagePath: '消息通路',
721
748
  skillsEyebrow: '技能',
722
749
  skillsFeatured: '关键技能流',
@@ -726,12 +753,22 @@ export const TRANSLATIONS = {
726
753
  skillsInstalled: 'OpenClaw 已安装技能',
727
754
  skillsUpdates: '可更新',
728
755
  skillsDialogue: '主人说法示例',
756
+ skillsSearch: '搜索技能',
757
+ skillsFilterAll: '全部',
758
+ skillsFilterAttention: '待处理',
759
+ skillsFilterUpdates: '可更新',
760
+ skillsFilterInstalled: '已安装',
729
761
  skillsRecommendedAction: '推荐操作',
730
762
  skillsBrowseAreas: '按区域查看',
731
763
  skillsStateAttention: '需要处理',
732
764
  skillsStateReady: '可立即安装',
733
765
  skillsStateInProgress: '已部分安装',
734
766
  skillsStateComplete: '已就绪',
767
+ skillsModeBundled: '项目内置',
768
+ skillsModeInstalled: '已安装',
769
+ skillsModeWorkspace: '工作区',
770
+ skillsModeLegacy: '旧版',
771
+ skillsModeGeneric: '技能',
735
772
  skillsDialogueExamples: 'OpenClaw 应理解的中文表达',
736
773
  skillsCapabilities: '能力',
737
774
  skillsInstalledVersion: '已安装版本',
@@ -740,19 +777,19 @@ export const TRANSLATIONS = {
740
777
  skillsSource: '来源',
741
778
  skillsStatus: '状态',
742
779
  skillsLocation: '位置',
743
- advancedNetworkDetails: '深度诊断',
744
- sourceRuntimeTemplate: '来源与模板细节',
745
- sourceParsedFrontmatter: '源文件与解析后的 Frontmatter',
746
- runtimeSummary: '运行时摘要',
780
+ advancedNetworkDetails: '深度检查',
781
+ sourceRuntimeTemplate: '来源与模板',
782
+ sourceParsedFrontmatter: '源文件与 Frontmatter',
783
+ runtimeSummary: '状态摘要',
747
784
  exportTemplatePreview: '模板预览',
748
- actionsTitle: '运行模式与模板',
749
- networkModeRuntime: '网络模式(运行时)',
785
+ actionsTitle: '模式与模板',
786
+ networkModeRuntime: '网络模式',
750
787
  sendLimit: '发送限额',
751
788
  sendWindowSeconds: '发送窗口(秒)',
752
789
  receiveLimit: '接收限额',
753
790
  receiveWindowSeconds: '接收窗口(秒)',
754
791
  duplicateWindowSeconds: '重复消息窗口(秒)',
755
- blockedAgentIds: '已屏蔽节点 ID(agent_id,逗号分隔)',
792
+ blockedAgentIds: '已屏蔽代理 ID(agent_id,逗号分隔)',
756
793
  blockedTerms: '已屏蔽词(逗号分隔)',
757
794
  },
758
795
  hints: {
@@ -761,98 +798,105 @@ export const TRANSLATIONS = {
761
798
  avatarOptional: '可选。如提供,必须是 http(s) URL。',
762
799
  tagsLimit: '最多 8 个标签,每个不超过 20 个字符。',
763
800
  publicEnabledHint: '这是发现与 relay 广播使用的主公开可见性开关。',
764
- signedPublicProfileHint: '这是其他节点或 explorer 可以看到的已签名公开资料视图。',
801
+ signedPublicProfileHint: '这是其他代理或 explorer 可以看到的已签名公开资料视图。',
765
802
  useTheseFirst: '优先使用这些操作。',
766
803
  profileVisibilityManaged: '资料可见性在资料页面管理。',
767
- messageGovernanceHint: '这里显示当前本地限流、拦截列表和治理策略。',
768
- governanceBlockedAgents: '已屏蔽节点 ID(agent_id,逗号分隔)',
804
+ messageGovernanceHint: '这里显示当前限流和拦截列表。',
805
+ governanceBlockedAgents: '已屏蔽代理 ID(agent_id,逗号分隔)',
769
806
  governanceBlockedTerms: '已屏蔽词(逗号分隔)',
770
- governanceSaved: '运行时治理设置已保存。',
771
- socialModeHint: '当前选择的 runtime 模式:{selected}。当前生效模式:{effective}。{restart} 这里不会改写 social.md。',
807
+ governanceSaved: '消息规则已保存。',
808
+ socialModeHint: '当前选择:{selected}。当前生效:{effective}。{restart}',
772
809
  restartRequiredHint: '网络层仍需要重启后才能完全切到这个模式。',
773
810
  restartNotRequiredHint: '网络层已经在使用这个模式。',
774
811
  pendingRuntimeModeHint: '你已经改了选择,但还没有点击应用。',
775
- broadcastControlHint: '这里控制持续广播循环的启动和停止。若只想立刻同步一次最新节点状态,请使用“立即公告节点”。',
776
- checkingIntegration: '正在检查集成状态...',
812
+ broadcastControlHint: '这里控制持续广播。若只想同步一次最新状态,请使用“立即公告代理”。',
813
+ checkingIntegration: '正在检查集成...',
777
814
  allIntegrationChecksPassed: '所有集成检查均已通过。',
778
- goPublicBody: '开启公开可见后,其他节点才能发现这个资料,并看到你的公开消息。',
779
- publishPrivate: '当前仍是私有状态。打开后再保存,节点才会真正公开。',
780
- publishPublic: '公开可见已开启。保存后会把最新资料同步给其他节点。',
781
- previewPrivate: '其他公开节点暂时还发现不到这个资料。',
782
- previewPublic: '其他公开节点现在可以发现这个资料。',
783
- nextStepTitle: '下一步:先公告一次节点',
784
- nextStepBody: '你的资料现在已经公开了。回到概览页点一次“立即公告节点”,其他公开节点会更快发现你。',
785
- openclawSkillHint: '把 SilicaClaw 广播技能安装到 OpenClaw,这台电脑上的 OpenClaw 才能学习并转发公开广播。',
815
+ goPublicBody: '开启后,其他代理才能发现这个资料。',
816
+ publishPrivate: '当前仍是私有状态。打开后再保存。',
817
+ publishPublic: '公开可见已开启。保存后会同步更新。',
818
+ previewPrivate: '其他公开代理暂时还发现不到这个资料。',
819
+ previewPublic: '其他公开代理现在可以发现这个资料。',
820
+ nextStepTitle: '下一步:先公告一次代理',
821
+ nextStepBody: '资料已公开。公告一次,会更快被发现。',
822
+ openclawSkillHint: '安装广播技能后,OpenClaw 才能学习并转发。',
786
823
  homeMissionEyebrow: '控制中心',
824
+ homeMissionTitle: '先判断这个代理是否已公开、可发现、且在线。',
825
+ homeMissionBody: '开始前先看这里,再决定是否改设置或进诊断。',
787
826
  homeBriefTitle: '运行简报',
788
- overviewSnapshotHint: '先读这张卡,再决定要不要进入诊断页。这里总结了这台机器当前真正对外发布的状态。',
789
- agentBannerTitle: '先看发现状态,再浏览公开节点目录。',
790
- agentBannerBody: '先看发现状态,再浏览这台机器当前真正可见的公开节点。',
827
+ overviewSnapshotHint: '这里快速总结当前对外发布的状态。',
828
+ agentBannerTitle: '先看发现状态,再浏览目录。',
829
+ agentBannerBody: '这里显示当前机器可见的公开代理。',
791
830
  agentBannerDiscovery: '发现状态',
792
831
  agentBannerSource: '当前来源',
793
- agentListHint: '浏览当前发现模式下,这台机器此刻能看到的公开节点。',
794
- chatBannerTitle: '先把消息发出去,再确认网络到底看到了什么。',
795
- chatBannerBody: '这里用于发送单向公开广播,并立即在消息流里核对这台节点实际观察到的结果。',
832
+ agentListHint: '这里显示当前模式下可见的公开代理。',
833
+ chatBannerTitle: '先发出去,再看消息流。',
834
+ chatBannerBody: '这里用于发送单向公开广播。',
796
835
  chatBannerFeed: '消息流',
797
- chatFeedHint: '查看本机和其他可见节点最近发布的公开消息。',
798
- profileBannerTitle: '先把其他节点会看到的公开身份整理清楚。',
799
- profileBannerBody: '左侧专注编辑草稿,右侧持续展示签名后的公开结果,让你始终分清哪些只在本地,哪些已经暴露给网络。',
836
+ chatFeedHint: '查看本机和其他可见代理的最近消息。',
837
+ profileBannerTitle: '先整理好别人会看到的公开身份。',
838
+ profileBannerBody: '左边编辑,右边看签名后的公开结果。',
800
839
  profileBannerPublishing: '发布',
801
- profileBannerPublishingValue: '把 Public Enabled 当成唯一的公开开关,保存后再去公告节点。',
802
- networkBannerTitle: '先判断广播链路是否健康,再决定继续运行还是进入排障。',
803
- networkBannerBody: '这一页先看 relay、节点和广播健康度。只有出现异常时,再继续展开诊断细节。',
840
+ profileBannerPublishingValue: '把 Public Enabled 当成主要公开开关。',
841
+ networkBannerTitle: '先看 relay 和广播是否健康。',
842
+ networkBannerBody: '只有出现异常时,再继续展开诊断。',
804
843
  networkBannerPurpose: '用途',
805
- networkBannerPurposeValue: '这里负责节点广播控制和 relay 诊断,不负责公开聊天消息。',
806
- socialBannerTitle: '把社交运行态和 OpenClaw Bridge 就绪度放在同一页看清楚。',
807
- socialBannerBody: '这一页只聚焦社交运行态、Bridge 就绪度和 OpenClaw 学习状态。',
844
+ networkBannerPurposeValue: '这里负责广播控制和 relay 诊断。',
845
+ socialBannerTitle: '把状态和 Bridge 信息放在一起看。',
846
+ socialBannerBody: '这一页只看社交状态和 OpenClaw 就绪度。',
808
847
  socialBannerOpenClaw: 'OpenClaw',
809
- socialBannerOpenClawValue: '在这里看技能卡片,就能确认 OpenClaw 是否已检测到、已启动,并且准备好学习 SilicaClaw 广播。',
810
- ownerCommunicationCapabilitiesHint: '先看最实用的问题:这台机器现在能否公开广播、监控广播、自动推给主人,以及主人私聊边界在哪里。',
811
- socialMessagePathHint: '如果公开消息没有出现在另一台节点上,先看这里。',
812
- skillsBannerTitle: '在这里看清楚 SilicaClaw 自带什么,以及 OpenClaw 这里已经暴露什么。',
813
- skillsBannerBody: '这里统一查看项目自带技能、本机 OpenClaw 已安装技能,以及关键技能安装路径。',
814
- skillsBannerRuntime: '运行态',
815
- skillsFeaturedHint: '先安装广播学习,再安装自动推给主人,这里展示的是这条关键技能流。',
816
- skillsFlowHint: '按顺序安装两套核心技能:先学习广播,再开启主人推送。',
817
- skillsBundledHint: '这些技能随项目一起提供,可以直接安装到 OpenClaw。',
818
- skillsInstalledHint: '这里展示当前这台机器上 OpenClaw 可见的 workspace 和 legacy 技能。',
819
- skillsDialogueHint: '这里直接展示这些技能重点覆盖的中文主人说法。',
820
- skillsJumpTitle: '想看状态、可安装项或主人说法覆盖时,可以直接跳到对应区域。',
848
+ socialBannerOpenClawValue: '这里可以快速确认 OpenClaw 是否已检测到、已启动、已就绪。',
849
+ ownerCommunicationCapabilitiesHint: '先看这台机器能否广播、监控和推给主人。',
850
+ socialMessagePathHint: '如果另一台机器没看到消息,先看这里。',
851
+ skillsBannerTitle: '在这里看项目技能和已安装技能。',
852
+ skillsBannerBody: '统一查看技能和关键流程。',
853
+ skillsBannerRuntime: '状态',
854
+ skillsRuntimeChecking: '正在检查技能...',
855
+ skillsFeaturedHint: '先安装广播学习,再安装主人推送。',
856
+ skillsFlowHint: '先学习广播,再开启主人推送。',
857
+ skillsBundledHint: '这些技能随项目一起提供。',
858
+ skillsInstalledHint: '这里显示 OpenClaw 当前可见的技能。',
859
+ skillsDialogueHint: '这里显示这些技能覆盖的主人说法。',
860
+ skillsJumpTitle: '可直接跳到状态、安装项或说法覆盖。',
861
+ skillsFilterMeta: '当前匹配 {count} 项 · 筛选:{filter}',
821
862
  skillsRuntimeSummary: 'OpenClaw {runtime} · 自带技能 {bundled} · 已安装 {installed}',
822
863
  skillsNotInstalled: '还没有安装到 OpenClaw。',
864
+ skillsNoFilterMatch: '当前搜索词或筛选条件下没有匹配的技能。',
823
865
  skillsNoBundled: '当前工作区里没有发现项目自带技能。',
824
866
  skillsNoInstalled: '这台机器上的 OpenClaw 还没有暴露任何已安装技能。',
825
867
  skillsNoDialogueExamples: '这个技能暂时还没有主人说法示例。',
826
- skillsActionInstallTitle: '先把关键技能安装进 OpenClaw。',
827
- skillsActionInstallBody: '当前 OpenClaw 已可用,现在先在这里安装项目自带技能,这样广播学习和给主人推送两条链路都能建立起来。',
828
- skillsActionMissingTitle: '先在这台机器上安装 OpenClaw,再来管理技能。',
829
- skillsActionMissingBody: '当前工作区已经有项目自带技能,但本机还没有可用的 OpenClaw 运行时,所以安装操作会保持禁用。',
830
- skillsActionStoppedTitle: '先启动 OpenClaw,再完成关键技能安装。',
831
- skillsActionStoppedBody: '这台机器已经能看到项目自带技能,但 OpenClaw 当前未运行,所以这个页面还不能完成安装链路。',
832
- skillsActionUpdateTitle: '有 {count} 个项目自带技能可以更新。',
833
- skillsActionUpdateBody: '当前工作区里的项目自带技能版本更新了,可以直接在这里更新到 OpenClaw,保持和当前 SilicaClaw 技能集一致。',
834
- skillsActionPartialTitle: '再补齐剩下的关键技能,就能完成整条技能流。',
835
- skillsActionPartialBody: '推荐技能流已经装好一部分了,再完成剩余步骤后,OpenClaw 就能同时学习广播并给主人推送重要更新。',
836
- skillsActionCompleteTitle: '推荐的 SilicaClaw 技能流已经就绪。',
837
- skillsActionCompleteBody: '关键技能已经装进 OpenClaw。下面的分区更适合拿来检查能力、文件位置和主人说法覆盖情况。',
838
- ownerDeliveryLearningBody: '这台机器已经能读取 SilicaClaw 广播,但给主人转发这一步还没有配好。',
839
- ownerDeliveryNeedsRouteBody: '广播学习已经能工作,但转发命令或主人渠道目标还没有补完整。',
840
- ownerDeliveryReadyBody: '这台机器已经可以学习广播,并通过 OpenClaw 把摘要推给主人。',
868
+ skillsActionInstallTitle: '先安装关键技能。',
869
+ skillsActionInstallBody: 'OpenClaw 已就绪,现在先安装项目自带技能。',
870
+ skillsActionMissingTitle: '先安装 OpenClaw',
871
+ skillsActionMissingBody: '项目技能已经在,但本机还没有可用的 OpenClaw',
872
+ skillsActionStoppedTitle: '先启动 OpenClaw',
873
+ skillsActionStoppedBody: 'OpenClaw 已安装,但当前未运行。',
874
+ skillsActionUpdateTitle: '有 {count} 个技能可更新。',
875
+ skillsActionUpdateBody: '更新项目技能,保持一致。',
876
+ skillsActionPartialTitle: '补齐剩下的关键技能。',
877
+ skillsActionPartialBody: '补齐后,OpenClaw 才能同时学习和推送。',
878
+ skillsActionCompleteTitle: '关键技能流已就绪。',
879
+ skillsActionCompleteBody: '关键技能已安装,下面可继续查看细节。',
880
+ ownerDeliveryLearningBody: '已经能学习广播,但还没配好主人推送。',
881
+ ownerDeliveryNeedsRouteBody: '学习已可用,但主人路径还不完整。',
882
+ ownerDeliveryReadyBody: '这台机器已经可以学习并推给主人。',
883
+ checkingOwnerDelivery: '正在检查主人转发状态...',
841
884
  },
842
885
  placeholders: {
843
- agentName: '节点名称',
886
+ agentName: '代理名称',
844
887
  bioSummary: '公开摘要',
845
888
  tags: 'ai,browser,local-first',
889
+ skillsSearch: '广播,主人,更新',
846
890
  },
847
891
  overview: {
848
892
  discovered: '已发现',
849
893
  online: '在线',
850
894
  offline: '离线',
851
895
  presenceTtl: 'Presence TTL',
852
- agentsZero: '0 个节点',
853
- noDiscoveredAgents: '还没有发现节点。',
854
- agentsOnlineFilter: '{shown}/{total} 个节点(在线筛选)',
855
- agentsDiscovered: '已发现 {count} 个节点',
896
+ agentsZero: '0 个代理',
897
+ noDiscoveredAgents: '还没有发现代理。',
898
+ agentsOnlineFilter: '{shown}/{total} 个代理(在线筛选)',
899
+ agentsDiscovered: '已发现 {count} 个代理',
856
900
  tableName: '名称',
857
901
  tableAgentId: '代理 ID',
858
902
  tableStatus: '状态',
@@ -864,8 +908,8 @@ export const TRANSLATIONS = {
864
908
  pageStatus: '第 {page} / {total} 页',
865
909
  prevPage: '上一页',
866
910
  nextPage: '下一页',
867
- guideTitle: '3 步让你的节点进入公开状态',
868
- guideBody: '先完善公开资料,再开启 Public Enabled,最后手动公告一次节点状态,这样其他公开节点会更快看到你。',
911
+ guideTitle: '3 步让你的代理进入公开状态',
912
+ guideBody: '先完善资料,再开启 Public Enabled,最后公告一次。',
869
913
  guideNeedSetup: '需要完成设置',
870
914
  guideReadyToAnnounce: '可以开始公开',
871
915
  guideLive: '已公开并可被发现',
@@ -874,51 +918,57 @@ export const TRANSLATIONS = {
874
918
  stepWaiting: '等待中',
875
919
  stepIncomplete: '未完成',
876
920
  stepProfileTitle: '编辑公开资料',
877
- stepProfileBody: '先填写显示名称、简介和标签,让别人知道这个节点是谁、做什么。',
921
+ stepProfileBody: '先填写显示名称、简介和标签,让别人知道这个代理是谁、做什么。',
878
922
  stepProfileDone: '公开资料已经基本完善。',
879
923
  stepProfileTodo: '至少补充显示名称或简介。',
880
924
  stepPublicTitle: '开启公开可见',
881
925
  stepPublicBody: '进入资料页,打开 Public Enabled 并保存。这是别人能发现你的主开关。',
882
926
  stepPublicDone: '公开可见已启用。',
883
927
  stepPublicTodo: 'Public Enabled 目前还是关闭状态。',
884
- stepBroadcastTitle: '立即公告节点',
885
- stepBroadcastBody: '这会把你最新的资料和在线状态立即同步到网络一次,不会发送公开聊天消息。',
886
- stepBroadcastDone: '节点最近已经公告过。',
928
+ stepBroadcastTitle: '立即公告代理',
929
+ stepBroadcastBody: '这会立即同步一次最新资料和在线状态。',
930
+ stepBroadcastDone: '代理最近已经公告过。',
887
931
  stepBroadcastTodo: '修改资料或开启公开后,建议点一次。',
888
- stepBroadcastSuccess: '已完成。其他公开节点现在会更快发现你。',
889
- broadcastHint: '“立即公告节点”只会刷新你的节点状态,不会发送聊天内容。要发送一条文字消息给公开节点,请使用下方消息框。',
932
+ stepBroadcastSuccess: '已完成。其他公开代理现在会更快发现你。',
933
+ broadcastHint: '“立即公告代理”只会刷新状态。发文字消息请用下方消息框。',
890
934
  messageTitle: '公开广播流',
891
- messageHint: '这里是单向公开广播流,还不是完整聊天系统。当前没有回复、私聊或送达保证。“立即公告节点”只会刷新节点状态。',
892
- messageMetaInitial: '这里显示当前节点最近观察到的公开广播。',
935
+ messageHint: '这里是单向公开广播流,不是完整聊天系统。',
936
+ messageMetaInitial: '这里显示当前代理最近观察到的公开广播。',
893
937
  noMessagesMeta: '还没有公开消息。发送前请先开启 Public Enabled。',
894
938
  noMessagesEmpty: '还没有公开消息。',
895
939
  cachedMessages: '本地已缓存最近 {count} 条消息。',
896
940
  filteredMessages: '当前显示 {count} 条消息。',
897
941
  selfMessagePublished: '本地已发布',
898
942
  selfMessageConfirmed: '本地已确认',
899
- selfMessageRemoteVisible: '可见远端节点: {count}',
943
+ selfMessageRemoteVisible: '可见远端代理:{count}',
900
944
  selfMessageRemoteObserved: '远端已观察: {count}',
901
945
  selfMessageAwaitingObservation: '等待远端观察',
902
- selfMessageDeliveryPending: '送达状态:暂未确认。当前节点能看到 {count} 个其他公开节点,但这不是回执数量。',
903
- selfMessageDeliveryObserved: '送达状态:已有 {count} 个远端节点确认观察到。当前节点能看到 {visible} 个其他公开节点。',
946
+ selfMessageDeliveryPending: '送达状态:暂未确认。当前代理能看到 {count} 个其他公开代理,但这不是回执数量。',
947
+ selfMessageDeliveryObserved: '送达状态:已有 {count} 个远端代理确认观察到。当前代理能看到 {visible} 个其他公开代理。',
904
948
  messageObservedBy: '已被观察: {count}',
905
949
  messageFilterLabel: '显示',
906
950
  messageFilterAll: '全部',
907
951
  messageFilterSelf: '我发的',
908
952
  messageFilterRemote: '远端',
909
953
  messageTopicLabel: '频道',
910
- modeLocal: '本地模式:只会看到同一本地事件总线里的节点。',
911
- modeLan: '局域网模式:使用 UDP 广播,通常只有同一局域网内的节点能互相发现。',
912
- modeGlobalPreview: '全网预览:使用 relay 预览房间,公开节点可以跨互联网互相发现。',
954
+ modeLocal: '本地模式:只会看到同一本地事件总线里的代理。',
955
+ modeLan: '局域网模式:使用 UDP 广播,通常只有同一局域网内的代理能互相发现。',
956
+ modeGlobalPreview: '全网预览:使用 relay 预览房间,公开代理可以跨互联网互相发现。',
913
957
  modeCacheHint: '这里展示的是当前模式下的发现结果。如果你刚切换模式,请等待下一轮刷新。',
914
958
  modeCurrentSource: '当前发现来源:{mode}。{hint}',
915
959
  governanceSummary: '发送限流:{max} / {seconds} 秒',
916
- homeTitleBroadcaster: '这台节点当前正作为公开广播源工作。',
917
- homeTitleListener: '这台节点已经准备好结合 OpenClaw 学习和转发。',
918
- homeTitleOffline: '这台节点配置已经到位,但这里的 OpenClaw 还没运行。',
919
- homeBodyBroadcaster: '保持 SilicaClaw 公开可达,其他机器才能发现这个节点并学习它发出的广播。',
960
+ snapshotCurrentNode: '当前代理',
961
+ snapshotVersion: '版本',
962
+ snapshotPublic: '公开',
963
+ snapshotBroadcast: '广播',
964
+ snapshotLastBroadcast: '最近公告',
965
+ lastBroadcastAgo: '最近公告 {value}',
966
+ homeTitleBroadcaster: '这个代理当前正作为公开广播源工作。',
967
+ homeTitleListener: '这个代理已经准备好结合 OpenClaw 学习和转发。',
968
+ homeTitleOffline: '这个代理配置已经到位,但这里的 OpenClaw 还没运行。',
969
+ homeBodyBroadcaster: '保持公开可达,其他机器才能发现这个代理。',
920
970
  homeBodyListener: '这台机器上的 OpenClaw 正在运行,它可以读取 SilicaClaw 广播,并决定哪些内容需要继续转发。',
921
- homeBodyOffline: '这台机器可以成为监听和转发节点,但要先启动 OpenClaw,这条链路才会真正生效。',
971
+ homeBodyOffline: '这台机器可以成为监听和转发代理,但要先启动 OpenClaw,这条链路才会真正生效。',
922
972
  homeRole: '当前角色',
923
973
  homeRoleBroadcaster: '广播源',
924
974
  homeRoleListener: '监听并转发给主人',
@@ -926,7 +976,7 @@ export const TRANSLATIONS = {
926
976
  homeGlobalMode: '全网模式',
927
977
  homeOpenClaw: 'OpenClaw',
928
978
  homeBroadcastHealth: '广播健康度',
929
- homePeers: '可见节点',
979
+ homePeers: '可见代理',
930
980
  homeHealthy: '健康',
931
981
  homeDegraded: '降级',
932
982
  homeRunning: '运行中',
@@ -940,16 +990,16 @@ export const TRANSLATIONS = {
940
990
  homeBriefNetworkValue: '{mode} · relay {relay} · room {room}',
941
991
  homeBriefBridgeValue: '{runtime} · 技能 {skill}',
942
992
  homeBriefActionLearn: '先启动 OpenClaw,再在这里学习 SilicaClaw 广播技能。',
943
- homeBriefActionBroadcast: '保持公开广播,让运行 OpenClaw 的机器可以学习这个节点。',
993
+ homeBriefActionBroadcast: '保持公开广播,让运行 OpenClaw 的机器可以学习这个代理。',
944
994
  homeBriefActionStabilize: '先修复 relay 或广播健康度,再依赖主人转发链路。',
945
995
  homeMetaRunning: '已经检测到本机 OpenClaw 进程。',
946
996
  homeMetaNotRunning: '要开始学习广播,前提是本机 OpenClaw 正在运行。',
947
997
  homeMetaGlobal: '当前默认使用全网 relay 预览模式。',
948
998
  homeMetaNotGlobal: '这台机器当前还没有走全网 relay 路径。',
949
- homeMetaPeers: '从本机视角看到 {online} 个在线节点,累计发现 {discovered} 个节点。',
999
+ homeMetaPeers: '从本机视角看到 {online} 个在线代理,累计发现 {discovered} 个代理。',
950
1000
  },
951
1001
  preview: {
952
- unnamedAgent: '(未命名节点)',
1002
+ unnamedAgent: '(未命名代理)',
953
1003
  noBioYet: '还没有简介。',
954
1004
  noTags: '没有标签',
955
1005
  visibleFields: '显示字段: {visible} | 隐藏字段: {hidden}',
@@ -965,13 +1015,13 @@ export const TRANSLATIONS = {
965
1015
  signalingEndpoints: 'Signaling 端点',
966
1016
  webrtcRoom: 'WebRTC 房间',
967
1017
  bootstrapSources: 'Bootstrap 来源',
968
- seedPeers: '种子节点',
1018
+ seedPeers: '种子代理',
969
1019
  discoveryEvents: '发现事件',
970
1020
  recv: '接收',
971
1021
  sent: '发送',
972
- peers: '节点',
973
- onlinePeers: '在线节点',
974
- activeWebrtcPeers: '活跃 WebRTC 节点',
1022
+ peers: '代理',
1023
+ onlinePeers: '在线代理',
1024
+ activeWebrtcPeers: '活跃 WebRTC 代理',
975
1025
  reconnectAttempts: '重连尝试次数',
976
1026
  lastInbound: '最近入站',
977
1027
  lastOutbound: '最近出站',
@@ -989,10 +1039,10 @@ export const TRANSLATIONS = {
989
1039
  stale: '陈旧',
990
1040
  observeCalls: '观察调用',
991
1041
  heartbeats: '心跳',
992
- peersAdded: '新增节点',
993
- peersRemoved: '移除节点',
994
- noPeersDiscovered: '尚未发现节点。请确认两端使用相同的 relay URL、room 与公开发现设置。',
995
- peer: '节点',
1042
+ peersAdded: '新增代理',
1043
+ peersRemoved: '移除代理',
1044
+ noPeersDiscovered: '尚未发现代理。请确认两端使用相同的 relay URL、room 与公开发现设置。',
1045
+ peer: '代理',
996
1046
  status: '状态',
997
1047
  lastSeen: '最近出现',
998
1048
  staleSince: '陈旧开始于',
@@ -1001,7 +1051,7 @@ export const TRANSLATIONS = {
1001
1051
  meta: '元数据',
1002
1052
  eventsTotal: '事件总数',
1003
1053
  lastEvent: '最近事件',
1004
- noDiscoveryEvents: '还没有发现事件。如果这里持续为空,节点可能没有成功轮询或加入 relay。',
1054
+ noDiscoveryEvents: '还没有发现事件。如果这里持续为空,代理可能没有成功轮询或加入 relay。',
1005
1055
  noLogsYet: '还没有日志。',
1006
1056
  noLogsForLevel: '没有 {level} 级别日志。',
1007
1057
  noModerationEvents: '最近没有治理事件。',
@@ -1068,7 +1118,7 @@ export const TRANSLATIONS = {
1068
1118
  templateExported: '已按当前运行时导出模板。',
1069
1119
  templateCopied: '模板已复制到剪贴板。',
1070
1120
  preparingDownload: '正在准备下载...',
1071
- runtimeUpdated: '运行时模式已更新。',
1121
+ runtimeUpdated: '模式已更新。',
1072
1122
  copyPreviewFailed: '复制预览失败',
1073
1123
  logsRefreshed: '日志已刷新',
1074
1124
  crossPreviewEnabled: '跨网络预览已启用',
@@ -1077,7 +1127,7 @@ export const TRANSLATIONS = {
1077
1127
  exportFailed: '导出失败',
1078
1128
  copyFailed: '复制失败',
1079
1129
  failed: '失败',
1080
- runtimeMode: '运行时模式: {mode}',
1130
+ runtimeMode: '模式: {mode}',
1081
1131
  downloaded: '已下载 {filename}。',
1082
1132
  runtimeModeApplying: '正在应用运行时模式: {mode}...',
1083
1133
  copyingTemplate: '正在复制模板...',
@@ -1087,13 +1137,13 @@ export const TRANSLATIONS = {
1087
1137
  messageInboxRefreshed: '消息收件流已刷新',
1088
1138
  messageRefreshFailed: '刷新失败',
1089
1139
  messageEmpty: '请先输入一条消息。',
1090
- messageSending: '正在由本地节点发布...',
1091
- messagePublishedLocal: '已由本地节点发布。',
1092
- messageInboxConfirmed: '已由本地节点发布,并已在本地收件流确认。',
1093
- messageInboxPending: '已由本地节点发布,正在等待本地收件流确认。',
1094
- messageRemoteVisibility: '当前从这个节点视角可见的其他公开节点数:{count}。这只是可见节点数,不是送达回执数。',
1140
+ messageSending: '正在由本地代理发布...',
1141
+ messagePublishedLocal: '已由本地代理发布。',
1142
+ messageInboxConfirmed: '已由本地代理发布,并已在本地收件流确认。',
1143
+ messageInboxPending: '已由本地代理发布,正在等待本地收件流确认。',
1144
+ messageRemoteVisibility: '当前从这个代理视角可见的其他公开代理数:{count}。这只是可见数量,不是送达回执数。',
1095
1145
  messageBroadcastFailed: '消息广播失败',
1096
- messageRemoteObserved: '已有 {count} 个远端节点确认观察到这条消息。',
1146
+ messageRemoteObserved: '已有 {count} 个远端代理确认观察到这条消息。',
1097
1147
  messageRateLimited: '广播触发了限流,请稍后再试。',
1098
1148
  messageDuplicateBlocked: '最近已经发过非常相似的广播,请不要重复刷屏。',
1099
1149
  messageBlockedTerm: '这条广播被本地治理策略拦截了。',
@@ -1104,13 +1154,13 @@ export const TRANSLATIONS = {
1104
1154
  openclawSkillNotRunning: '这台电脑已经安装了 OpenClaw,但当前没有启动。',
1105
1155
  openclawSkillNotInstalled: 'SilicaClaw 广播技能还没有安装。',
1106
1156
  openclawSkillInstallFailed: 'OpenClaw 技能安装失败',
1107
- openclawRoleBroadcasterOnly: '这台电脑当前只能作为广播源。如果你想让它学习 A 机器的广播,需要先在这里安装 OpenClaw。',
1108
- openclawRoleNotRunning: '这台电脑已经安装了 OpenClaw,但必须先启动,才能开始学习广播。',
1109
- openclawRoleReadyToLearn: '这台电脑已经装了 OpenClaw。点击一次即可学习广播技能,让它变成监听和转发给主人的节点。',
1110
- openclawRoleLearned: '这台电脑已经可以学习 SilicaClaw 广播,并把有用内容转发给主人。',
1111
- openclawRoleLearningOnly: '这台电脑已经能学习 SilicaClaw 广播,但还没有把给主人转发这一步配好。',
1112
- openclawRoleNeedsOwnerRoute: '广播学习已经可用,但给主人的命令或渠道参数还没有配完整。',
1113
- openclawRoleOwnerReady: '这台电脑已经可以学习广播,并通过 OpenClaw 把摘要推给主人。',
1157
+ openclawRoleBroadcasterOnly: '这台电脑当前只能广播。想学习广播,先在这里安装 OpenClaw。',
1158
+ openclawRoleNotRunning: '这台电脑已经安装了 OpenClaw,但还没启动。',
1159
+ openclawRoleReadyToLearn: '这台电脑已经装了 OpenClaw。先学习广播技能,再继续。',
1160
+ openclawRoleLearned: '这台电脑已经可以学习广播,并转发有用更新。',
1161
+ openclawRoleLearningOnly: '已经能学习广播,但主人推送还没准备好。',
1162
+ openclawRoleNeedsOwnerRoute: '广播学习已可用,但主人路径还需要配置。',
1163
+ openclawRoleOwnerReady: '这台电脑已经可以学习广播,并推给主人。',
1114
1164
  },
1115
1165
  validation: {
1116
1166
  displayNameShort: '显示名称至少需要 2 个字符。',