agent-embassy 1.0.0

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 (145) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/CONTRIBUTING.md +122 -0
  3. package/LICENSE +21 -0
  4. package/README.md +185 -0
  5. package/README.zh-CN.md +185 -0
  6. package/SECURITY.md +224 -0
  7. package/assets/live-dashboard/app.css +1610 -0
  8. package/assets/mark-seal.svg +7 -0
  9. package/assets/mark.svg +7 -0
  10. package/assets/social-preview.png +0 -0
  11. package/assets/vendor/react/LICENSE +21 -0
  12. package/assets/vendor/react/react-dom.production.min.js +267 -0
  13. package/assets/vendor/react/react.production.min.js +31 -0
  14. package/dist/src/errors.d.ts +5 -0
  15. package/dist/src/errors.js +11 -0
  16. package/dist/src/errors.js.map +1 -0
  17. package/dist/src/gateway/claude-compatibility-scratch.d.ts +18 -0
  18. package/dist/src/gateway/claude-compatibility-scratch.js +158 -0
  19. package/dist/src/gateway/claude-compatibility-scratch.js.map +1 -0
  20. package/dist/src/gateway/claude-helper-client.d.ts +43 -0
  21. package/dist/src/gateway/claude-helper-client.js +212 -0
  22. package/dist/src/gateway/claude-helper-client.js.map +1 -0
  23. package/dist/src/gateway/claude-helper-protocol.d.ts +172 -0
  24. package/dist/src/gateway/claude-helper-protocol.js +373 -0
  25. package/dist/src/gateway/claude-helper-protocol.js.map +1 -0
  26. package/dist/src/gateway/claude-helper-supervisor.d.ts +74 -0
  27. package/dist/src/gateway/claude-helper-supervisor.js +497 -0
  28. package/dist/src/gateway/claude-helper-supervisor.js.map +1 -0
  29. package/dist/src/gateway/claude-helper.d.ts +1 -0
  30. package/dist/src/gateway/claude-helper.js +269 -0
  31. package/dist/src/gateway/claude-helper.js.map +1 -0
  32. package/dist/src/gateway/claude-peer.d.ts +273 -0
  33. package/dist/src/gateway/claude-peer.js +2359 -0
  34. package/dist/src/gateway/claude-peer.js.map +1 -0
  35. package/dist/src/gateway/claude-runtime.d.ts +40 -0
  36. package/dist/src/gateway/claude-runtime.js +302 -0
  37. package/dist/src/gateway/claude-runtime.js.map +1 -0
  38. package/dist/src/gateway/cli-copy.d.ts +8 -0
  39. package/dist/src/gateway/cli-copy.en.d.ts +13 -0
  40. package/dist/src/gateway/cli-copy.en.js +43 -0
  41. package/dist/src/gateway/cli-copy.en.js.map +1 -0
  42. package/dist/src/gateway/cli-copy.js +19 -0
  43. package/dist/src/gateway/cli-copy.js.map +1 -0
  44. package/dist/src/gateway/cli-copy.zh-CN.d.ts +13 -0
  45. package/dist/src/gateway/cli-copy.zh-CN.js +43 -0
  46. package/dist/src/gateway/cli-copy.zh-CN.js.map +1 -0
  47. package/dist/src/gateway/cli.d.ts +44 -0
  48. package/dist/src/gateway/cli.js +969 -0
  49. package/dist/src/gateway/cli.js.map +1 -0
  50. package/dist/src/gateway/codex-app-server.d.ts +310 -0
  51. package/dist/src/gateway/codex-app-server.js +1746 -0
  52. package/dist/src/gateway/codex-app-server.js.map +1 -0
  53. package/dist/src/gateway/codex-local-transport.d.ts +81 -0
  54. package/dist/src/gateway/codex-local-transport.js +617 -0
  55. package/dist/src/gateway/codex-local-transport.js.map +1 -0
  56. package/dist/src/gateway/codex-registration-generation.d.ts +5 -0
  57. package/dist/src/gateway/codex-registration-generation.js +19 -0
  58. package/dist/src/gateway/codex-registration-generation.js.map +1 -0
  59. package/dist/src/gateway/codex-registration-succession.d.ts +209 -0
  60. package/dist/src/gateway/codex-registration-succession.js +588 -0
  61. package/dist/src/gateway/codex-registration-succession.js.map +1 -0
  62. package/dist/src/gateway/compatibility.d.ts +70 -0
  63. package/dist/src/gateway/compatibility.js +252 -0
  64. package/dist/src/gateway/compatibility.js.map +1 -0
  65. package/dist/src/gateway/config.d.ts +24 -0
  66. package/dist/src/gateway/config.js +130 -0
  67. package/dist/src/gateway/config.js.map +1 -0
  68. package/dist/src/gateway/control.d.ts +308 -0
  69. package/dist/src/gateway/control.js +1573 -0
  70. package/dist/src/gateway/control.js.map +1 -0
  71. package/dist/src/gateway/dashboard-copy.d.ts +7 -0
  72. package/dist/src/gateway/dashboard-copy.en.d.ts +506 -0
  73. package/dist/src/gateway/dashboard-copy.en.js +507 -0
  74. package/dist/src/gateway/dashboard-copy.en.js.map +1 -0
  75. package/dist/src/gateway/dashboard-copy.js +516 -0
  76. package/dist/src/gateway/dashboard-copy.js.map +1 -0
  77. package/dist/src/gateway/dashboard-copy.zh-CN.d.ts +506 -0
  78. package/dist/src/gateway/dashboard-copy.zh-CN.js +507 -0
  79. package/dist/src/gateway/dashboard-copy.zh-CN.js.map +1 -0
  80. package/dist/src/gateway/dashboard-model.d.ts +207 -0
  81. package/dist/src/gateway/dashboard-model.js +720 -0
  82. package/dist/src/gateway/dashboard-model.js.map +1 -0
  83. package/dist/src/gateway/dashboard.d.ts +26 -0
  84. package/dist/src/gateway/dashboard.js +941 -0
  85. package/dist/src/gateway/dashboard.js.map +1 -0
  86. package/dist/src/gateway/delivery-machine.d.ts +235 -0
  87. package/dist/src/gateway/delivery-machine.js +540 -0
  88. package/dist/src/gateway/delivery-machine.js.map +1 -0
  89. package/dist/src/gateway/instance-lease.d.ts +21 -0
  90. package/dist/src/gateway/instance-lease.js +549 -0
  91. package/dist/src/gateway/instance-lease.js.map +1 -0
  92. package/dist/src/gateway/live-dashboard-app/app.js +2914 -0
  93. package/dist/src/gateway/live-dashboard-assets.d.ts +10 -0
  94. package/dist/src/gateway/live-dashboard-assets.js +73 -0
  95. package/dist/src/gateway/live-dashboard-assets.js.map +1 -0
  96. package/dist/src/gateway/live-dashboard-bootstrap.d.ts +36 -0
  97. package/dist/src/gateway/live-dashboard-bootstrap.js +176 -0
  98. package/dist/src/gateway/live-dashboard-bootstrap.js.map +1 -0
  99. package/dist/src/gateway/live-dashboard-command.d.ts +54 -0
  100. package/dist/src/gateway/live-dashboard-command.js +324 -0
  101. package/dist/src/gateway/live-dashboard-command.js.map +1 -0
  102. package/dist/src/gateway/live-dashboard-http.d.ts +41 -0
  103. package/dist/src/gateway/live-dashboard-http.js +445 -0
  104. package/dist/src/gateway/live-dashboard-http.js.map +1 -0
  105. package/dist/src/gateway/live-dashboard-protocol.d.ts +38 -0
  106. package/dist/src/gateway/live-dashboard-protocol.js +156 -0
  107. package/dist/src/gateway/live-dashboard-protocol.js.map +1 -0
  108. package/dist/src/gateway/live-dashboard-server.d.ts +33 -0
  109. package/dist/src/gateway/live-dashboard-server.js +130 -0
  110. package/dist/src/gateway/live-dashboard-server.js.map +1 -0
  111. package/dist/src/gateway/live-dashboard-stream.d.ts +46 -0
  112. package/dist/src/gateway/live-dashboard-stream.js +233 -0
  113. package/dist/src/gateway/live-dashboard-stream.js.map +1 -0
  114. package/dist/src/gateway/live-dashboard.d.ts +31 -0
  115. package/dist/src/gateway/live-dashboard.js +190 -0
  116. package/dist/src/gateway/live-dashboard.js.map +1 -0
  117. package/dist/src/gateway/locale.d.ts +4 -0
  118. package/dist/src/gateway/locale.js +10 -0
  119. package/dist/src/gateway/locale.js.map +1 -0
  120. package/dist/src/gateway/progress-watch-machine.d.ts +97 -0
  121. package/dist/src/gateway/progress-watch-machine.js +172 -0
  122. package/dist/src/gateway/progress-watch-machine.js.map +1 -0
  123. package/dist/src/gateway/providers.d.ts +287 -0
  124. package/dist/src/gateway/providers.js +2451 -0
  125. package/dist/src/gateway/providers.js.map +1 -0
  126. package/dist/src/gateway/server.d.ts +57 -0
  127. package/dist/src/gateway/server.js +264 -0
  128. package/dist/src/gateway/server.js.map +1 -0
  129. package/dist/src/gateway/service.d.ts +449 -0
  130. package/dist/src/gateway/service.js +4831 -0
  131. package/dist/src/gateway/service.js.map +1 -0
  132. package/dist/src/gateway/store.d.ts +340 -0
  133. package/dist/src/gateway/store.js +4047 -0
  134. package/dist/src/gateway/store.js.map +1 -0
  135. package/dist/src/gateway/types.d.ts +514 -0
  136. package/dist/src/gateway/types.js +414 -0
  137. package/dist/src/gateway/types.js.map +1 -0
  138. package/dist/src/mutex.d.ts +4 -0
  139. package/dist/src/mutex.js +23 -0
  140. package/dist/src/mutex.js.map +1 -0
  141. package/docs/DESIGN.md +134 -0
  142. package/docs/GATEWAY-ARCHITECTURE.md +858 -0
  143. package/package.json +80 -0
  144. package/skills/embassy-peer/SKILL.md +198 -0
  145. package/skills/embassy-peer/agents/openai.yaml +4 -0
@@ -0,0 +1,516 @@
1
+ import { dashboardCopyEn } from "./dashboard-copy.en.js";
2
+ import { dashboardCopyZhCn } from "./dashboard-copy.zh-CN.js";
3
+ export { assertDashboardLocale, dashboardLocales, isDashboardLocale, } from "./locale.js";
4
+ export const dashboardCopyKeys = [
5
+ "meta.title",
6
+ "skip",
7
+ "language.label",
8
+ "language.en",
9
+ "language.zhCn",
10
+ "brand.eyebrow",
11
+ "brand.title",
12
+ "brand.subtitle",
13
+ "snapshot.asOf",
14
+ "snapshot.static",
15
+ "overall.ready",
16
+ "overall.setup",
17
+ "overall.attention",
18
+ "exchange.eyebrow",
19
+ "exchange.title",
20
+ "exchange.note",
21
+ "inbound.paired.badge",
22
+ "inbound.paired.body",
23
+ "inbound.open.badge",
24
+ "inbound.open.body",
25
+ "inbound.noPair.body",
26
+ "exchange.claude.title",
27
+ "exchange.claude.note",
28
+ "exchange.codex.title",
29
+ "exchange.codex.note",
30
+ "exchange.pouch.title",
31
+ "exchange.pouch.empty",
32
+ "exchange.pouch.queued",
33
+ "exchange.pouch.oldest",
34
+ "exchange.count.claude",
35
+ "exchange.count.codex",
36
+ "status.ready",
37
+ "status.busy",
38
+ "status.waiting",
39
+ "status.missing",
40
+ "status.attention",
41
+ "status.selected",
42
+ "status.available",
43
+ "status.notSelectable",
44
+ "status.enabled",
45
+ "status.disabled",
46
+ "next.label",
47
+ "next.none",
48
+ "next.discoverClaude",
49
+ "next.selectClaude",
50
+ "next.pairRoutes",
51
+ "next.restoreClaude",
52
+ "next.repairClaude",
53
+ "next.registerCodex",
54
+ "next.restoreCodex",
55
+ "attention.eyebrow",
56
+ "attention.title",
57
+ "attention.count",
58
+ "attention.countVisible",
59
+ "attention.projectionOnly",
60
+ "attention.scope",
61
+ "severity.info",
62
+ "severity.warning",
63
+ "severity.error",
64
+ "guidance.reobserveClaude.title",
65
+ "guidance.reobserveClaude.body",
66
+ "guidance.reobserveClaude.action",
67
+ "guidance.reobserveCodex.title",
68
+ "guidance.reobserveCodex.body",
69
+ "guidance.reobserveCodex.action",
70
+ "guidance.claudeNotObserved.title",
71
+ "guidance.claudeNotObserved.body",
72
+ "guidance.claudeNotObserved.action",
73
+ "guidance.codexStale.title",
74
+ "guidance.codexStale.body",
75
+ "guidance.codexStale.action",
76
+ "guidance.connectorOffline.title",
77
+ "guidance.connectorOffline.body",
78
+ "guidance.connectorOffline.action",
79
+ "guidance.routeStale.title",
80
+ "guidance.routeStale.body",
81
+ "guidance.routeStale.action",
82
+ "guidance.queueStalled.title",
83
+ "guidance.queueStalled.body",
84
+ "guidance.queueStalled.action",
85
+ "guidance.unconfirmed.title",
86
+ "guidance.unconfirmed.body",
87
+ "guidance.unconfirmed.action",
88
+ "guidance.degraded.title",
89
+ "guidance.degraded.body",
90
+ "guidance.degraded.action",
91
+ "guidance.generic.title",
92
+ "guidance.generic.body",
93
+ "guidance.generic.action",
94
+ "guidance.codexSuccessionBusy.title",
95
+ "guidance.codexSuccessionBusy.body",
96
+ "guidance.codexSuccessionBusy.action",
97
+ "guidance.codexSuccessionRecovery.title",
98
+ "guidance.codexSuccessionRecovery.body",
99
+ "guidance.codexSuccessionRecovery.action",
100
+ "guidance.progressWatch.title",
101
+ "guidance.progressWatch.body",
102
+ "guidance.progressWatch.action",
103
+ "transit.eyebrow",
104
+ "transit.title",
105
+ "transit.queued",
106
+ "transit.active",
107
+ "transit.oldest",
108
+ "transit.empty",
109
+ "transit.unavailable",
110
+ "count.atLeast",
111
+ "watches.eyebrow",
112
+ "watches.title",
113
+ "watches.note",
114
+ "watches.empty",
115
+ "watches.column.conversation",
116
+ "watches.column.parties",
117
+ "watches.column.phase",
118
+ "watches.column.quietFor",
119
+ "watches.column.nextAction",
120
+ "watches.column.nudges",
121
+ "watches.column.capability",
122
+ "watches.phase.quiet",
123
+ "watches.phase.episode",
124
+ "watches.capability.conversation",
125
+ "watches.capability.route",
126
+ "watches.workerComplete",
127
+ "watches.history.title",
128
+ "watches.event.opened",
129
+ "watches.event.nudge",
130
+ "watches.event.workerReportedComplete",
131
+ "watches.event.capabilityDegraded",
132
+ "watches.event.done",
133
+ "watches.event.unresponsive",
134
+ "watches.event.endpointRetired",
135
+ "watches.event.disabled",
136
+ "activity.eyebrow",
137
+ "activity.title",
138
+ "activity.note",
139
+ "activity.empty",
140
+ "activity.column.updated",
141
+ "activity.column.route",
142
+ "activity.column.id",
143
+ "activity.column.result",
144
+ "activity.column.elapsed",
145
+ "activity.column.size",
146
+ "activity.column.history",
147
+ "activity.history.one",
148
+ "activity.history.many",
149
+ "activity.meaning.delivered",
150
+ "activity.meaning.delivered.codexToClaude",
151
+ "activity.meaning.delivered.claudeToCodex",
152
+ "activity.meaning.unconfirmed",
153
+ "activity.meaning.ambiguous",
154
+ "activity.meaning.other",
155
+ "activity.meaning.queued",
156
+ "activity.meaning.dispatching",
157
+ "activity.meaning.transportWritten",
158
+ "activity.meaning.held",
159
+ "activity.meaning.duplicate",
160
+ "activity.meaning.rejected",
161
+ "activity.meaning.senderNotPaired",
162
+ "activity.meaning.failed",
163
+ "activity.meaning.expired",
164
+ "activity.meaning.cancelled",
165
+ "activity.meaning.abandoned.controllerRestarted",
166
+ "activity.meaning.abandoned.transientBody",
167
+ "activity.meaning.abandoned.routeTerminated",
168
+ "activity.meaning.abandoned.generic",
169
+ "direction.claudeToCodex",
170
+ "direction.codexToClaude",
171
+ "delivery.queued",
172
+ "delivery.duplicate",
173
+ "delivery.dispatching",
174
+ "delivery.transportWritten",
175
+ "delivery.held",
176
+ "delivery.delivered",
177
+ "delivery.unconfirmed",
178
+ "delivery.failed",
179
+ "delivery.ambiguous",
180
+ "delivery.expired",
181
+ "delivery.cancelled",
182
+ "delivery.abandoned",
183
+ "delivery.rejected",
184
+ "sessions.eyebrow",
185
+ "sessions.title",
186
+ "sessions.note",
187
+ "sessions.peers.title",
188
+ "sessions.peers.empty",
189
+ "sessions.peers.caption",
190
+ "sessions.routes.title",
191
+ "sessions.routes.empty",
192
+ "sessions.routes.caption",
193
+ "column.alias",
194
+ "column.host",
195
+ "column.provider",
196
+ "column.state",
197
+ "column.compatibility",
198
+ "column.selection",
199
+ "column.validation",
200
+ "status.validated",
201
+ "status.validationRejected",
202
+ "column.queue",
203
+ "column.observed",
204
+ "column.issue",
205
+ "diagnostics.title",
206
+ "diagnostics.note",
207
+ "diagnostics.connectors",
208
+ "diagnostics.connectors.empty",
209
+ "diagnostics.connectors.caption",
210
+ "diagnostics.compatibilityChecks",
211
+ "diagnostics.compatibilityChecks.empty",
212
+ "diagnostics.compatibilityChecks.caption",
213
+ "diagnostics.version",
214
+ "diagnostics.tier",
215
+ "diagnostics.checkedAt",
216
+ "diagnostics.certification",
217
+ "diagnostics.certifiedAt",
218
+ "diagnostics.failedProbe",
219
+ "compatibilityTier.certified",
220
+ "compatibilityTier.schema_attested",
221
+ "compatibilityTier.incompatible",
222
+ "diagnostics.protocol",
223
+ "diagnostics.health",
224
+ "diagnostics.accounting",
225
+ "diagnostics.accepted",
226
+ "diagnostics.duplicates",
227
+ "diagnostics.delivered",
228
+ "diagnostics.unconfirmed",
229
+ "diagnostics.ambiguous",
230
+ "diagnostics.failed",
231
+ "diagnostics.expired",
232
+ "diagnostics.cancelled",
233
+ "diagnostics.abandoned",
234
+ "diagnostics.rejected",
235
+ "diagnostics.bytesAccepted",
236
+ "diagnostics.queuedBytes",
237
+ "diagnostics.omissions",
238
+ "diagnostics.omissions.none",
239
+ "diagnostics.omissions.connectors",
240
+ "diagnostics.omissions.peers",
241
+ "diagnostics.omissions.routes",
242
+ "diagnostics.omissions.pairs",
243
+ "diagnostics.omissions.progressWatches",
244
+ "diagnostics.omissions.upstreamProgressWatchEvents",
245
+ "diagnostics.omissions.progressWatchEvents",
246
+ "diagnostics.omissions.upstreamMessageEvents",
247
+ "diagnostics.omissions.messageGroups",
248
+ "diagnostics.omissions.messageEvents",
249
+ "diagnostics.omissions.upstreamAlerts",
250
+ "diagnostics.omissions.attentionItems",
251
+ "diagnostics.omissions.upstreamActivityEvents",
252
+ "diagnostics.omissions.activityEvents",
253
+ "provider.claude",
254
+ "provider.codex",
255
+ "health.offline",
256
+ "health.connecting",
257
+ "health.healthy",
258
+ "health.degraded",
259
+ "health.incompatible",
260
+ "health.meaning.healthy",
261
+ "health.meaning.connecting",
262
+ "health.meaning.degraded",
263
+ "health.meaning.offline",
264
+ "health.meaning.incompatible",
265
+ "compatibility.unknown",
266
+ "compatibility.compatible",
267
+ "compatibility.incompatible",
268
+ "compatibility.expired",
269
+ "compatibility.meaning.compatible",
270
+ "compatibility.meaning.unknown",
271
+ "compatibility.meaning.expired",
272
+ "compatibility.meaning.incompatible",
273
+ "route.stale",
274
+ "route.idle",
275
+ "route.busy",
276
+ "route.awaitingApproval",
277
+ "route.offline",
278
+ "route.incompatible",
279
+ "route.disabled",
280
+ "route.meaning.idle",
281
+ "route.meaning.busy",
282
+ "route.meaning.awaitingApproval",
283
+ "route.meaning.stale",
284
+ "route.meaning.offline",
285
+ "route.meaning.incompatible",
286
+ "route.meaning.disabled",
287
+ "peer.idle",
288
+ "peer.busy",
289
+ "peer.awaitingApproval",
290
+ "peer.offline",
291
+ "peer.incompatible",
292
+ "peer.meaning.idle",
293
+ "peer.meaning.busy",
294
+ "peer.meaning.awaitingApproval",
295
+ "peer.meaning.offline",
296
+ "peer.meaning.incompatible",
297
+ "peer.reason.aliasCollision",
298
+ "peer.reason.sessionCollision",
299
+ "peer.reason.discoveryIncomplete",
300
+ "peer.reason.incompatible",
301
+ "peer.reason.offline",
302
+ "time.atSnapshot",
303
+ "time.beforeSnapshot",
304
+ "time.afterSnapshot",
305
+ "time.unavailable",
306
+ "time.ago",
307
+ "live.title",
308
+ "live.noscript",
309
+ "live.label",
310
+ "live.mastheadSubtitle",
311
+ "live.readonlyFooter",
312
+ "live.action.authorityLabel",
313
+ "live.action.authorityBody",
314
+ "live.action.sectionTitle",
315
+ "live.action.scope",
316
+ "live.action.select",
317
+ "live.action.unselect",
318
+ "live.action.pair",
319
+ "live.action.unpair",
320
+ "live.action.refresh",
321
+ "live.action.confirm",
322
+ "live.action.cancel",
323
+ "live.action.pending",
324
+ "live.action.succeeded",
325
+ "live.action.failed",
326
+ "live.action.requiresConnected",
327
+ "live.connection.connecting",
328
+ "live.connection.connected",
329
+ "live.connection.unavailable",
330
+ "live.connection.disconnected",
331
+ "live.connection.fatal",
332
+ "live.connection.paused",
333
+ "live.connection.stopped",
334
+ "live.control.pause",
335
+ "live.control.reconnect",
336
+ "live.control.refresh",
337
+ "live.filter.placeholder",
338
+ "live.metric.queued",
339
+ "live.metric.active",
340
+ "live.attention.empty",
341
+ "live.activity.empty",
342
+ "live.sessions.title",
343
+ "live.diagnostics.title",
344
+ "live.metric.revision",
345
+ "live.stream.reset",
346
+ "live.bootstrap.title",
347
+ "live.bootstrap.open",
348
+ "live.http.badRequest",
349
+ "live.http.forbidden",
350
+ "live.http.notFound",
351
+ "live.http.methodNotAllowed",
352
+ "live.http.bodyTooLarge",
353
+ "live.http.targetTooLarge",
354
+ "live.http.unsupportedMediaType",
355
+ "live.http.tooManyStreams",
356
+ "live.http.headersTooLarge",
357
+ "live.http.snapshotUnavailable",
358
+ "live.http.requestFailed",
359
+ "live.http.starting",
360
+ "app.tab.overview",
361
+ "app.tab.deliveries",
362
+ "app.tab.routes",
363
+ "app.tab.activity",
364
+ "app.tab.diagnostics",
365
+ "app.search.label",
366
+ "app.search.placeholder",
367
+ "app.asOf",
368
+ "app.stale",
369
+ "app.missedFrames",
370
+ "app.lowerBound",
371
+ "app.copy",
372
+ "app.copied",
373
+ "app.copyFailed",
374
+ "app.staleQuiet",
375
+ "app.notLanded.title",
376
+ "app.notLanded.body",
377
+ "app.show",
378
+ "app.hide",
379
+ "app.overview.statusStrip",
380
+ "app.overview.broker",
381
+ "app.overview.claudeConn",
382
+ "app.overview.codexConn",
383
+ "app.overview.compat",
384
+ "app.overview.connectorMissing",
385
+ "app.overview.node.claude.title",
386
+ "app.overview.node.claude.sub",
387
+ "app.overview.node.codex.title",
388
+ "app.overview.node.codex.sub",
389
+ "app.overview.count.codex",
390
+ "app.overview.noPair.title",
391
+ "app.overview.noPair.body",
392
+ "app.overview.queueC2x",
393
+ "app.overview.queueX2c",
394
+ "app.overview.depth",
395
+ "app.overview.oldest",
396
+ "app.overview.pulse.title",
397
+ "app.overview.pulse.caption",
398
+ "app.overview.pulse.empty",
399
+ "app.overview.viewIn",
400
+ "app.deliveries.title",
401
+ "app.deliveries.caption",
402
+ "app.deliveries.dir.label",
403
+ "app.deliveries.dir.all",
404
+ "app.deliveries.dir.codexToClaude",
405
+ "app.deliveries.view.label",
406
+ "app.deliveries.view.byRoute",
407
+ "app.deliveries.view.flat",
408
+ "app.deliveries.state.all",
409
+ "app.deliveries.search",
410
+ "app.deliveries.noMatch",
411
+ "app.deliveries.pickRow",
412
+ "app.deliveries.lifecycle",
413
+ "app.deliveries.frames",
414
+ "app.deliveries.noFrames",
415
+ "app.deliveries.raw",
416
+ "app.deliveries.hideRaw",
417
+ "app.deliveries.bodyLabel",
418
+ "app.deliveries.bodiesNote",
419
+ "app.deliveries.noConv",
420
+ "app.deliveries.eventsTruncated",
421
+ "app.deliveries.earliestRetained",
422
+ "app.routes.topology",
423
+ "app.routes.candidates",
424
+ "app.routes.claudeSessions",
425
+ "app.routes.codexRoutes",
426
+ "app.routes.pairs",
427
+ "app.routes.pairDescription",
428
+ "app.routes.pairSummary",
429
+ "app.routes.unpairedSummary",
430
+ "app.routes.pairCmd.consequence",
431
+ "app.routes.unpairCmd.consequence",
432
+ "app.routes.selectCmd.title",
433
+ "app.routes.selectCmd.consequence",
434
+ "app.routes.selectCmd.consequenceOpen",
435
+ "app.routes.unselectCmd.consequence",
436
+ "app.routes.unselectCmd.consequenceOpen",
437
+ "app.routes.refreshCmd",
438
+ "app.routes.monitorOnlyReason",
439
+ "app.routes.noPeers",
440
+ "app.routes.noCodex",
441
+ "app.routes.successions",
442
+ "app.routes.successions.empty",
443
+ "app.routes.successions.note",
444
+ "app.routes.detail.absent",
445
+ "app.routes.expandDetails",
446
+ "app.routes.collapseDetails",
447
+ "app.routes.queueDepth",
448
+ "app.routes.counters",
449
+ "app.routes.registered",
450
+ "app.routes.monitorOnly",
451
+ "app.routes.registerHint",
452
+ "app.routes.noPairInline",
453
+ "app.omitted.pairs",
454
+ "app.activity.title",
455
+ "app.activity.kinds.all",
456
+ "app.activity.kinds.delivery",
457
+ "app.activity.kinds.operation",
458
+ "app.activity.kinds.alert",
459
+ "app.activity.operation.discoveryRefreshed",
460
+ "app.activity.operation.claudeSelected",
461
+ "app.activity.operation.claudeUnselected",
462
+ "app.activity.operation.codexRegistered",
463
+ "app.activity.operation.codexSucceeded",
464
+ "app.activity.operation.codexUnregistered",
465
+ "app.activity.operation.routesPaired",
466
+ "app.activity.operation.routesUnpaired",
467
+ "app.activity.operation.watchEnded",
468
+ "app.activity.operation.accepted",
469
+ "app.activity.operation.rejected",
470
+ "app.activity.limited",
471
+ "app.activity.empty",
472
+ "app.diag.versions",
473
+ "app.diag.versions.caption",
474
+ "app.diag.versions.rangeAbsent",
475
+ "app.diag.col.provider",
476
+ "app.diag.col.host",
477
+ "app.diag.col.protocol",
478
+ "app.diag.col.version",
479
+ "app.diag.col.compat",
480
+ "app.diag.attestation.title",
481
+ "app.diag.attestation.absent",
482
+ "app.diag.lease.title",
483
+ "app.diag.lease.absent",
484
+ "app.diag.limits",
485
+ "app.diag.limits.hint",
486
+ "app.diag.deadline.title",
487
+ "app.diag.deadline.body",
488
+ "app.diag.deadline.retained",
489
+ "app.diag.deadline.bucket.under1m",
490
+ "app.diag.deadline.bucket.1to5m",
491
+ "app.diag.deadline.bucket.5to15m",
492
+ "app.diag.deadline.bucket.15to60m",
493
+ "app.diag.deadline.bucket.over60m",
494
+ "app.diag.queue.title",
495
+ "app.diag.queue.body",
496
+ "app.diag.bytes.title",
497
+ "app.diag.bytes.body",
498
+ "app.diag.steering.title",
499
+ "app.diag.steering.absent",
500
+ "app.diag.deliveryNotices.title",
501
+ "app.diag.deliveryNotices.note",
502
+ "app.diag.editable.title",
503
+ "app.diag.editable.note",
504
+ "app.diag.counters",
505
+ "app.diag.counters.caption",
506
+ "app.diag.omissions",
507
+ "app.diag.omissions.caption",
508
+ "footer",
509
+ ];
510
+ export function getDashboardCopy(locale) {
511
+ return locale === "zh-CN" ? dashboardCopyZhCn : dashboardCopyEn;
512
+ }
513
+ export function formatDashboardCopy(copy, key, values = {}) {
514
+ return copy[key].replace(/\{([a-zA-Z][a-zA-Z0-9]*)\}/g, (match, name) => Object.hasOwn(values, name) ? String(values[name]) : match);
515
+ }
516
+ //# sourceMappingURL=dashboard-copy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dashboard-copy.js","sourceRoot":"","sources":["../../../src/gateway/dashboard-copy.ts"],"names":[],"mappings":"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"}