aimeat 1.7.0 → 1.9.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 (261) hide show
  1. package/dist/.env.example +4 -1
  2. package/dist/locales/en.json +573 -10
  3. package/dist/locales/fi.json +572 -9
  4. package/dist/public/css/views/admin-agent-integration.css +304 -0
  5. package/dist/public/css/views/agents-detail.css +1697 -120
  6. package/dist/public/css/views/profile.css +22 -2
  7. package/dist/public/css/views/public-knowledge-viewer.css +479 -0
  8. package/dist/public/js/i18n.js +9 -3
  9. package/dist/public/js/services/admin-agent-integration.js +52 -0
  10. package/dist/public/js/services/agent-integration.js +80 -0
  11. package/dist/public/js/services/agent-messages.js +3 -1
  12. package/dist/public/js/services/generator-spec-validate.js +23 -0
  13. package/dist/public/js/services/memory.js +39 -0
  14. package/dist/public/lib/live-updates.js +9 -4
  15. package/dist/public/llms-template.txt +106 -0
  16. package/dist/public/spa.html +7 -2
  17. package/dist/public/views/admin/agent-integration-tab.js +390 -0
  18. package/dist/public/views/admin/federation-tab.js +5 -5
  19. package/dist/public/views/admin/prompts-tab.js +9 -10
  20. package/dist/public/views/admin.js +2 -0
  21. package/dist/public/views/profile/access-tab.js +18 -0
  22. package/dist/public/views/profile/agents/agent-card.js +396 -0
  23. package/dist/public/views/profile/agents/shared-board.js +97 -0
  24. package/dist/public/views/profile/agents/state-detector.js +62 -0
  25. package/dist/public/views/profile/agents/tab-activity.js +232 -0
  26. package/dist/public/views/profile/agents/tab-agent-config.js +199 -0
  27. package/dist/public/views/profile/agents/tab-data-access.js +304 -0
  28. package/dist/public/views/profile/agents/tab-directives.js +178 -0
  29. package/dist/public/views/profile/agents/tab-integration.js +505 -0
  30. package/dist/public/views/profile/agents/tab-messages.js +278 -0
  31. package/dist/public/views/profile/agents/tab-services.js +17 -0
  32. package/dist/public/views/profile/agents/tab-tasks.js +17 -0
  33. package/dist/public/views/profile/agents-messages-subtab.js +12 -10
  34. package/dist/public/views/profile/agents-services-subtab.js +17 -11
  35. package/dist/public/views/profile/agents-tab.js +159 -255
  36. package/dist/public/views/profile/agents-task-builder.js +403 -0
  37. package/dist/public/views/profile/agents-tasks-subtab.js +186 -140
  38. package/dist/public/views/profile/generator-detail.js +8 -1
  39. package/dist/public/views/profile/memory-tab.js +371 -7
  40. package/dist/public/views/profile/wallet-tab.js +14 -0
  41. package/dist/public/views/public-knowledge-viewer.js +650 -0
  42. package/dist/src/auth/middleware.d.ts.map +1 -1
  43. package/dist/src/auth/middleware.js +17 -0
  44. package/dist/src/auth/middleware.js.map +1 -1
  45. package/dist/src/config.d.ts +1 -0
  46. package/dist/src/config.d.ts.map +1 -1
  47. package/dist/src/config.js +1 -0
  48. package/dist/src/config.js.map +1 -1
  49. package/dist/src/middleware/readiness-gate.d.ts +18 -0
  50. package/dist/src/middleware/readiness-gate.d.ts.map +1 -0
  51. package/dist/src/middleware/readiness-gate.js +50 -0
  52. package/dist/src/middleware/readiness-gate.js.map +1 -0
  53. package/dist/src/models/agent-capabilities-schemas.d.ts +3 -0
  54. package/dist/src/models/agent-capabilities-schemas.d.ts.map +1 -1
  55. package/dist/src/models/agent-capabilities-schemas.js +3 -0
  56. package/dist/src/models/agent-capabilities-schemas.js.map +1 -1
  57. package/dist/src/models/agent-directives-schemas.d.ts +12 -0
  58. package/dist/src/models/agent-directives-schemas.d.ts.map +1 -1
  59. package/dist/src/models/agent-directives-schemas.js +7 -0
  60. package/dist/src/models/agent-directives-schemas.js.map +1 -1
  61. package/dist/src/models/agent-onboarding-schemas.d.ts +45 -0
  62. package/dist/src/models/agent-onboarding-schemas.d.ts.map +1 -0
  63. package/dist/src/models/agent-onboarding-schemas.js +91 -0
  64. package/dist/src/models/agent-onboarding-schemas.js.map +1 -0
  65. package/dist/src/models/webhook-schemas.d.ts +266 -0
  66. package/dist/src/models/webhook-schemas.d.ts.map +1 -0
  67. package/dist/src/models/webhook-schemas.js +137 -0
  68. package/dist/src/models/webhook-schemas.js.map +1 -0
  69. package/dist/src/routes/admin-agent-integration.d.ts +24 -0
  70. package/dist/src/routes/admin-agent-integration.d.ts.map +1 -0
  71. package/dist/src/routes/admin-agent-integration.js +186 -0
  72. package/dist/src/routes/admin-agent-integration.js.map +1 -0
  73. package/dist/src/routes/admin-monitoring.js +12 -7
  74. package/dist/src/routes/admin-monitoring.js.map +1 -1
  75. package/dist/src/routes/agent-activity.d.ts.map +1 -1
  76. package/dist/src/routes/agent-activity.js +17 -0
  77. package/dist/src/routes/agent-activity.js.map +1 -1
  78. package/dist/src/routes/agent-capabilities.d.ts +1 -0
  79. package/dist/src/routes/agent-capabilities.d.ts.map +1 -1
  80. package/dist/src/routes/agent-capabilities.js +9 -0
  81. package/dist/src/routes/agent-capabilities.js.map +1 -1
  82. package/dist/src/routes/agent-directives.d.ts +5 -1
  83. package/dist/src/routes/agent-directives.d.ts.map +1 -1
  84. package/dist/src/routes/agent-directives.js +74 -20
  85. package/dist/src/routes/agent-directives.js.map +1 -1
  86. package/dist/src/routes/agent-integration.d.ts +1 -0
  87. package/dist/src/routes/agent-integration.d.ts.map +1 -1
  88. package/dist/src/routes/agent-integration.js +128 -11
  89. package/dist/src/routes/agent-integration.js.map +1 -1
  90. package/dist/src/routes/agent-messages.d.ts +5 -1
  91. package/dist/src/routes/agent-messages.d.ts.map +1 -1
  92. package/dist/src/routes/agent-messages.js +20 -1
  93. package/dist/src/routes/agent-messages.js.map +1 -1
  94. package/dist/src/routes/agent-onboarding.d.ts +23 -0
  95. package/dist/src/routes/agent-onboarding.d.ts.map +1 -0
  96. package/dist/src/routes/agent-onboarding.js +374 -0
  97. package/dist/src/routes/agent-onboarding.js.map +1 -0
  98. package/dist/src/routes/agent-skill-bundle.d.ts +16 -0
  99. package/dist/src/routes/agent-skill-bundle.d.ts.map +1 -0
  100. package/dist/src/routes/agent-skill-bundle.js +133 -0
  101. package/dist/src/routes/agent-skill-bundle.js.map +1 -0
  102. package/dist/src/routes/agent-tasks.d.ts +8 -1
  103. package/dist/src/routes/agent-tasks.d.ts.map +1 -1
  104. package/dist/src/routes/agent-tasks.js +192 -14
  105. package/dist/src/routes/agent-tasks.js.map +1 -1
  106. package/dist/src/routes/agent-telemetry.d.ts +15 -0
  107. package/dist/src/routes/agent-telemetry.d.ts.map +1 -0
  108. package/dist/src/routes/agent-telemetry.js +99 -0
  109. package/dist/src/routes/agent-telemetry.js.map +1 -0
  110. package/dist/src/routes/agent-webhook.d.ts +18 -0
  111. package/dist/src/routes/agent-webhook.d.ts.map +1 -0
  112. package/dist/src/routes/agent-webhook.js +243 -0
  113. package/dist/src/routes/agent-webhook.js.map +1 -0
  114. package/dist/src/routes/agents.d.ts.map +1 -1
  115. package/dist/src/routes/agents.js +203 -4
  116. package/dist/src/routes/agents.js.map +1 -1
  117. package/dist/src/routes/auth.d.ts.map +1 -1
  118. package/dist/src/routes/auth.js +45 -2
  119. package/dist/src/routes/auth.js.map +1 -1
  120. package/dist/src/routes/federation-auth.d.ts.map +1 -1
  121. package/dist/src/routes/federation-auth.js +3 -1
  122. package/dist/src/routes/federation-auth.js.map +1 -1
  123. package/dist/src/routes/federation-peer.d.ts.map +1 -1
  124. package/dist/src/routes/federation-peer.js +11 -2
  125. package/dist/src/routes/federation-peer.js.map +1 -1
  126. package/dist/src/routes/federation-sync.d.ts +1 -0
  127. package/dist/src/routes/federation-sync.d.ts.map +1 -1
  128. package/dist/src/routes/federation-sync.js +29 -0
  129. package/dist/src/routes/federation-sync.js.map +1 -1
  130. package/dist/src/routes/ghii.d.ts.map +1 -1
  131. package/dist/src/routes/ghii.js +42 -5
  132. package/dist/src/routes/ghii.js.map +1 -1
  133. package/dist/src/routes/knowledge.d.ts.map +1 -1
  134. package/dist/src/routes/knowledge.js +19 -7
  135. package/dist/src/routes/knowledge.js.map +1 -1
  136. package/dist/src/routes/memory.d.ts +9 -0
  137. package/dist/src/routes/memory.d.ts.map +1 -1
  138. package/dist/src/routes/memory.js +307 -12
  139. package/dist/src/routes/memory.js.map +1 -1
  140. package/dist/src/routes/portal.d.ts.map +1 -1
  141. package/dist/src/routes/portal.js +1 -0
  142. package/dist/src/routes/portal.js.map +1 -1
  143. package/dist/src/routes/prompts.d.ts +1 -0
  144. package/dist/src/routes/prompts.d.ts.map +1 -1
  145. package/dist/src/routes/prompts.js +40 -1
  146. package/dist/src/routes/prompts.js.map +1 -1
  147. package/dist/src/routes/sharing-groups.d.ts.map +1 -1
  148. package/dist/src/routes/sharing-groups.js +8 -2
  149. package/dist/src/routes/sharing-groups.js.map +1 -1
  150. package/dist/src/routes/wallet.d.ts.map +1 -1
  151. package/dist/src/routes/wallet.js +2 -0
  152. package/dist/src/routes/wallet.js.map +1 -1
  153. package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
  154. package/dist/src/server-bootstrap/routes-loader.js +47 -3
  155. package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
  156. package/dist/src/services/config-schema.d.ts.map +1 -1
  157. package/dist/src/services/config-schema.js +2 -1
  158. package/dist/src/services/config-schema.js.map +1 -1
  159. package/dist/src/services/core-jobs.d.ts.map +1 -1
  160. package/dist/src/services/core-jobs.js +3 -2
  161. package/dist/src/services/core-jobs.js.map +1 -1
  162. package/dist/src/services/federation-helpers.d.ts +1 -0
  163. package/dist/src/services/federation-helpers.d.ts.map +1 -1
  164. package/dist/src/services/federation-helpers.js +1 -1
  165. package/dist/src/services/federation-helpers.js.map +1 -1
  166. package/dist/src/services/generator-autopilot.d.ts.map +1 -1
  167. package/dist/src/services/generator-autopilot.js +125 -26
  168. package/dist/src/services/generator-autopilot.js.map +1 -1
  169. package/dist/src/services/generator-prompts/index.d.ts +1 -1
  170. package/dist/src/services/generator-prompts/index.d.ts.map +1 -1
  171. package/dist/src/services/generator-prompts/index.js +1 -1
  172. package/dist/src/services/generator-prompts/index.js.map +1 -1
  173. package/dist/src/services/generator-prompts/spec-validate.d.ts +1 -0
  174. package/dist/src/services/generator-prompts/spec-validate.d.ts.map +1 -1
  175. package/dist/src/services/generator-prompts/spec-validate.js +20 -0
  176. package/dist/src/services/generator-prompts/spec-validate.js.map +1 -1
  177. package/dist/src/services/generator-prompts/validate.d.ts +7 -1
  178. package/dist/src/services/generator-prompts/validate.d.ts.map +1 -1
  179. package/dist/src/services/generator-prompts/validate.js +70 -0
  180. package/dist/src/services/generator-prompts/validate.js.map +1 -1
  181. package/dist/src/services/onboarding-validator.d.ts +22 -0
  182. package/dist/src/services/onboarding-validator.d.ts.map +1 -0
  183. package/dist/src/services/onboarding-validator.js +202 -0
  184. package/dist/src/services/onboarding-validator.js.map +1 -0
  185. package/dist/src/services/platform-detector.d.ts +27 -0
  186. package/dist/src/services/platform-detector.d.ts.map +1 -0
  187. package/dist/src/services/platform-detector.js +73 -0
  188. package/dist/src/services/platform-detector.js.map +1 -0
  189. package/dist/src/services/prompt-defaults.d.ts +1 -0
  190. package/dist/src/services/prompt-defaults.d.ts.map +1 -1
  191. package/dist/src/services/prompt-defaults.js +875 -47
  192. package/dist/src/services/prompt-defaults.js.map +1 -1
  193. package/dist/src/services/prompt-seeder.js +1 -1
  194. package/dist/src/services/prompt-seeder.js.map +1 -1
  195. package/dist/src/services/readiness-scorer.d.ts +34 -0
  196. package/dist/src/services/readiness-scorer.d.ts.map +1 -0
  197. package/dist/src/services/readiness-scorer.js +87 -0
  198. package/dist/src/services/readiness-scorer.js.map +1 -0
  199. package/dist/src/services/skill-bundle/generator.d.ts +17 -0
  200. package/dist/src/services/skill-bundle/generator.d.ts.map +1 -0
  201. package/dist/src/services/skill-bundle/generator.js +387 -0
  202. package/dist/src/services/skill-bundle/generator.js.map +1 -0
  203. package/dist/src/services/skill-bundle/generic-adapter.d.ts +16 -0
  204. package/dist/src/services/skill-bundle/generic-adapter.d.ts.map +1 -0
  205. package/dist/src/services/skill-bundle/generic-adapter.js +96 -0
  206. package/dist/src/services/skill-bundle/generic-adapter.js.map +1 -0
  207. package/dist/src/services/skill-bundle/hermes-adapter.d.ts +25 -0
  208. package/dist/src/services/skill-bundle/hermes-adapter.d.ts.map +1 -0
  209. package/dist/src/services/skill-bundle/hermes-adapter.js +302 -0
  210. package/dist/src/services/skill-bundle/hermes-adapter.js.map +1 -0
  211. package/dist/src/services/skill-bundle/types.d.ts +54 -0
  212. package/dist/src/services/skill-bundle/types.d.ts.map +1 -0
  213. package/dist/src/services/skill-bundle/types.js +8 -0
  214. package/dist/src/services/skill-bundle/types.js.map +1 -0
  215. package/dist/src/services/task-stall-detector.d.ts +10 -2
  216. package/dist/src/services/task-stall-detector.d.ts.map +1 -1
  217. package/dist/src/services/task-stall-detector.js +34 -5
  218. package/dist/src/services/task-stall-detector.js.map +1 -1
  219. package/dist/src/services/webhook-dispatcher.d.ts +71 -0
  220. package/dist/src/services/webhook-dispatcher.d.ts.map +1 -0
  221. package/dist/src/services/webhook-dispatcher.js +259 -0
  222. package/dist/src/services/webhook-dispatcher.js.map +1 -0
  223. package/dist/src/storage/interface.d.ts +82 -2
  224. package/dist/src/storage/interface.d.ts.map +1 -1
  225. package/dist/src/storage/providers/mongodb/index.d.ts +20 -1
  226. package/dist/src/storage/providers/mongodb/index.d.ts.map +1 -1
  227. package/dist/src/storage/providers/mongodb/index.js +254 -3
  228. package/dist/src/storage/providers/mongodb/index.js.map +1 -1
  229. package/dist/src/storage/providers/sqlite/index.d.ts +18 -1
  230. package/dist/src/storage/providers/sqlite/index.d.ts.map +1 -1
  231. package/dist/src/storage/providers/sqlite/index.js +173 -4
  232. package/dist/src/storage/providers/sqlite/index.js.map +1 -1
  233. package/dist/src/storage/providers/sqlite/repos/agent-directives.d.ts.map +1 -1
  234. package/dist/src/storage/providers/sqlite/repos/agent-directives.js +8 -4
  235. package/dist/src/storage/providers/sqlite/repos/agent-directives.js.map +1 -1
  236. package/dist/src/storage/providers/sqlite/repos/agent.d.ts.map +1 -1
  237. package/dist/src/storage/providers/sqlite/repos/agent.js +25 -4
  238. package/dist/src/storage/providers/sqlite/repos/agent.js.map +1 -1
  239. package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
  240. package/dist/src/storage/providers/sqlite/schema.js +73 -1
  241. package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
  242. package/dist/src/storage/repositories/agent-onboarding.repository.d.ts +16 -0
  243. package/dist/src/storage/repositories/agent-onboarding.repository.d.ts.map +1 -0
  244. package/dist/src/storage/repositories/agent-onboarding.repository.js +8 -0
  245. package/dist/src/storage/repositories/agent-onboarding.repository.js.map +1 -0
  246. package/dist/src/storage/repositories/agent-webhook.repository.d.ts +21 -0
  247. package/dist/src/storage/repositories/agent-webhook.repository.d.ts.map +1 -0
  248. package/dist/src/storage/repositories/agent-webhook.repository.js +2 -0
  249. package/dist/src/storage/repositories/agent-webhook.repository.js.map +1 -0
  250. package/dist/src/storage/repositories/agent.repository.d.ts +1 -0
  251. package/dist/src/storage/repositories/agent.repository.d.ts.map +1 -1
  252. package/dist/src/storage/repositories/index.d.ts +2 -0
  253. package/dist/src/storage/repositories/index.d.ts.map +1 -1
  254. package/dist/src/utils/env-config.d.ts.map +1 -1
  255. package/dist/src/utils/env-config.js +7 -1
  256. package/dist/src/utils/env-config.js.map +1 -1
  257. package/dist/src/utils/url-validator.d.ts.map +1 -1
  258. package/dist/src/utils/url-validator.js +3 -0
  259. package/dist/src/utils/url-validator.js.map +1 -1
  260. package/package.json +1 -1
  261. package/prisma/schema.prisma +67 -7
package/dist/.env.example CHANGED
@@ -23,9 +23,12 @@ AIMEAT_PORT=40050
23
23
  # AIMEAT_ADMIN_PASSWORD="TestAdminPw123!"
24
24
 
25
25
  # ── Modes ──────────────────────────────────────────────────────
26
- # Dev mode: bypasses OTK validation on micro-memory
26
+ # Dev mode: allows localhost webhooks, re-registration resets password only (preserves agents/data)
27
27
  # AIMEAT_DEV_MODE=false
28
28
 
29
+ # Test mode: re-registration wipes account entirely (E2E test isolation). Never use in production.
30
+ # AIMEAT_TEST_MODE=false
31
+
29
32
  # Anonymous mode: no auth required, all agents share one memory space.
30
33
  # Runs alongside normal auth — both work simultaneously.
31
34
  # On startup creates anonymous owner+agent automatically.
@@ -6,7 +6,13 @@
6
6
  "somethingWentWrong": "Something went wrong",
7
7
  "retry": "Retry",
8
8
  "save": "Save",
9
- "close": "Close"
9
+ "close": "Close",
10
+ "loading": "Loading...",
11
+ "search": "Search...",
12
+ "noData": "No data available",
13
+ "id": "ID",
14
+ "name": "Name",
15
+ "add": "Add"
10
16
  },
11
17
  "nav": {
12
18
  "try": "Try it",
@@ -267,6 +273,7 @@
267
273
  "loadError": "Could not load agents.",
268
274
  "trust": "Trust",
269
275
  "balance": "Balance",
276
+ "usesOwnerWallet": "Uses owner's wallet",
270
277
  "lastSeen": "Last seen",
271
278
  "roles": "Roles",
272
279
  "created": "Created",
@@ -383,9 +390,51 @@
383
390
  "noEvents": "No events",
384
391
  "todoProgress": "TODO Progress",
385
392
  "created": "Created",
393
+ "updated": "Updated",
394
+ "completed": "Completed",
386
395
  "lastEvent": "Last Event",
387
396
  "delete": "Delete",
388
- "deleteConfirm": "Delete this task?"
397
+ "deleteConfirm": "Delete this task?",
398
+ "taskStarted": "Task started",
399
+ "taskDeleted": "Task deleted",
400
+ "startError": "Failed to start task",
401
+ "deleteError": "Failed to delete task",
402
+ "createError": "Failed to create task",
403
+ "todoLabel": "TODO",
404
+ "envAimeat": "AIMEAT",
405
+ "envAgent": "Agent",
406
+ "minuteShort": "min",
407
+ "starting": "Starting...",
408
+ "startThisTask": "Start this task",
409
+ "noEventsRecorded": "No events recorded",
410
+ "builder": {
411
+ "title": "New Task",
412
+ "placeholder": "What should the agent do? Describe in plain language or technical detail.",
413
+ "initial": "The agent is waiting for your first message. Describe what you need and we'll build the requirements together.",
414
+ "send": "Send to Agent",
415
+ "analyzing": "Agent is analyzing your request...",
416
+ "waitingTodos": "Waiting for agent to propose a plan...",
417
+ "chatPlaceholder": "Refine the plan... (e.g. 'add price comparison', 'change schedule')",
418
+ "startTask": "Start this task",
419
+ "cancel": "Cancel",
420
+ "tabRequirements": "Requirements",
421
+ "tabTodo": "TODO",
422
+ "tabTechnical": "Technical",
423
+ "whatItDoes": "What it does",
424
+ "scope": "Scope",
425
+ "rules": "Rules",
426
+ "verification": "When it works you'll see",
427
+ "technicalChecks": "Technical checks",
428
+ "extensions": "Extensions",
429
+ "memoryKeys": "Memory keys",
430
+ "cronSchedules": "Schedules",
431
+ "resources": "Resources",
432
+ "noDataYet": "Agent hasn't proposed this yet",
433
+ "aimeatSteps": "AIMEAT steps",
434
+ "agentSteps": "Agent env steps",
435
+ "totalTime": "Estimated time",
436
+ "version": "Proposal v{n}"
437
+ }
389
438
  },
390
439
  "directives": {
391
440
  "title": "Directives",
@@ -398,11 +447,30 @@
398
447
  "cancel": "Cancel",
399
448
  "reset": "Reset to Defaults",
400
449
  "resetConfirm": "Reset agent directives to defaults?",
401
- "empty": "No directives configured",
402
- "addRule": "Add Rule",
450
+ "empty": "No directives configured for this agent. Click Edit to add rules and purpose.",
451
+ "addRule": "Add rule",
403
452
  "system": "System",
404
453
  "owner": "Owner",
405
- "agent": "Agent"
454
+ "agent": "Agent",
455
+ "source": {
456
+ "system": "System",
457
+ "owner": "Owner",
458
+ "agent": "Agent"
459
+ },
460
+ "noRules": "No rules defined",
461
+ "rulePlaceholder": "Enter a rule or guideline...",
462
+ "removeRule": "Remove",
463
+ "saved": "Directives saved",
464
+ "saveError": "Failed to save",
465
+ "resetError": "Failed to reset",
466
+ "editing": "Editing Directives",
467
+ "purposePlaceholder": "What is this agent for?",
468
+ "systemRules": "System Rules",
469
+ "readOnly": "read-only",
470
+ "ownerRules": "Owner Rules",
471
+ "agentRules": "Agent Rules",
472
+ "saving": "Saving...",
473
+ "resetDefaults": "Reset to Defaults"
406
474
  },
407
475
  "capabilities": {
408
476
  "technical": "Technical Skills",
@@ -431,7 +499,19 @@
431
499
  "empty": "No services published",
432
500
  "info": "Other agents can call these services via the work exchange",
433
501
  "calls": "calls",
434
- "unpublish": "Unpublish"
502
+ "unpublish": "Unpublish",
503
+ "unpublished": "Service unpublished",
504
+ "unnamed": "Unnamed",
505
+ "free": "Free",
506
+ "morsels": "morsels",
507
+ "avg": "avg",
508
+ "unpublishError": "Failed to unpublish",
509
+ "loadError": "Failed to load services",
510
+ "visibility": {
511
+ "public": "Public",
512
+ "private": "Private",
513
+ "internal": "Internal"
514
+ }
435
515
  },
436
516
  "messages": {
437
517
  "title": "Messages",
@@ -444,7 +524,264 @@
444
524
  "proposedTask": "Proposed task",
445
525
  "createTask": "Create this task",
446
526
  "adjustTask": "Let me adjust",
447
- "tokensUsed": "tokens"
527
+ "tokensUsed": "tokens",
528
+ "proposedTaskDefault": "Agent proposed task",
529
+ "createTaskError": "Failed to create task",
530
+ "sendError": "Failed to send message",
531
+ "inboxLabel": "inbox",
532
+ "deliveredLabel": "delivered",
533
+ "errorsLabel": "errors"
534
+ },
535
+ "webhook": {
536
+ "title": "Webhook",
537
+ "url": "Webhook URL",
538
+ "enabled": "Enabled",
539
+ "disabled": "Disabled",
540
+ "failCount": "Consecutive failures",
541
+ "lastSuccess": "Last success",
542
+ "lastFailure": "Last failure",
543
+ "test": "Test webhook",
544
+ "testSuccess": "Webhook delivered successfully",
545
+ "testFailed": "Webhook delivery failed",
546
+ "register": "Register webhook",
547
+ "remove": "Remove webhook",
548
+ "deliveryLog": "Delivery Log",
549
+ "noDeliveries": "No deliveries yet"
550
+ },
551
+ "telemetry": {
552
+ "title": "Telemetry",
553
+ "noEvents": "No telemetry events",
554
+ "type": {
555
+ "llm_call": "LLM Call",
556
+ "tool_call": "Tool Call",
557
+ "agent_report": "Agent Report"
558
+ }
559
+ },
560
+ "skillBundle": {
561
+ "title": "Skill Bundle",
562
+ "downloadLabel": "Download skill bundle",
563
+ "versionLabel": "Version",
564
+ "runtimeLabel": "Runtime",
565
+ "hermesRuntime": "Hermes (OpenClaw)",
566
+ "genericRuntime": "Generic",
567
+ "installCommand": "Install command",
568
+ "copyCommand": "Copy",
569
+ "downloadZip": "Download ZIP",
570
+ "copyCurl": "Copy curl command",
571
+ "upToDate": "Up to date",
572
+ "updateAvailable": "Update available",
573
+ "reinstall": "Re-install",
574
+ "lastGenerated": "Last generated",
575
+ "notInstalled": "Not installed"
576
+ },
577
+ "detail": {
578
+ "tabs": {
579
+ "integration": "Integration",
580
+ "tasks": "Tasks",
581
+ "messages": "Messages",
582
+ "data_access": "Data Access",
583
+ "directives": "Directives",
584
+ "agent_config": "Agent Config",
585
+ "activity": "Activity",
586
+ "services": "Services"
587
+ },
588
+ "state": {
589
+ "new": "New",
590
+ "onboarding": "Onboarding",
591
+ "production": "Production",
592
+ "problem": "Problem",
593
+ "newSummary": "Awaiting skill bundle install",
594
+ "problemSummary": "Delivery issue detected",
595
+ "idle": "Idle",
596
+ "next": "Next"
597
+ },
598
+ "sharedTags": "Shared tags",
599
+ "lastSeen": "Last seen",
600
+ "deliveryMcp": "MCP notifications",
601
+ "deliveryWebhook": "Webhook",
602
+ "deliveryPolling": "Polling",
603
+ "deliveryMcpWh": "MCP+WH",
604
+ "deliveryWh": "WH",
605
+ "tokensToday": "Tokens",
606
+ "connection": "Connection",
607
+ "platform": "Platform",
608
+ "skillBundle": "Skill Bundle",
609
+ "readiness": "Readiness",
610
+ "identity": "Identity",
611
+ "deliveryLog": "Delivery Log",
612
+ "today": "Today",
613
+ "done": "done",
614
+ "active": "active",
615
+ "showAll": "Show all",
616
+ "showLess": "Show less",
617
+ "zone2": {
618
+ "newTitle": "Onboarding not started",
619
+ "newDesc": "Install the skill bundle to begin Hello Integration. The agent needs to identify itself and complete 11 onboarding steps.",
620
+ "goToIntegration": "Go to Integration tab",
621
+ "onboardingTitle": "Hello Integration",
622
+ "problemTitle": "Delivery issue",
623
+ "webhookFailed": "Webhook failed {count} consecutive times",
624
+ "noTelemetry": "No telemetry received for 24+ hours",
625
+ "diagnose": "Diagnose",
626
+ "testWebhook": "Test webhook",
627
+ "updateUrl": "Update URL",
628
+ "overrideReadiness": "Override readiness",
629
+ "testWebhookSuccess": "Webhook test sent successfully",
630
+ "testWebhookFailed": "Webhook test failed",
631
+ "urlUpdated": "Webhook URL updated",
632
+ "urlUpdateFailed": "Failed to update webhook URL",
633
+ "save": "Save",
634
+ "cancel": "Cancel"
635
+ },
636
+ "integration": {
637
+ "checklistTitle": "Hello Integration",
638
+ "progress": "Progress",
639
+ "rerun": "Re-run Hello Integration",
640
+ "rerunStarted": "Hello Integration re-started",
641
+ "startOnboarding": "Start Hello Integration",
642
+ "startError": "Failed to start onboarding",
643
+ "time": "Time",
644
+ "event": "Event",
645
+ "channel": "Channel",
646
+ "result": "Result",
647
+ "latency": "Latency",
648
+ "deliveryMethod": "Delivery method",
649
+ "pollingInterval": "Polling interval",
650
+ "webhookNotConfigured": "Webhook not configured",
651
+ "editWebhook": "Edit webhook",
652
+ "webhookUpdated": "Webhook URL updated",
653
+ "webhookUpdateError": "Failed to update webhook URL",
654
+ "platformVersion": "Version",
655
+ "detectionMethod": "Detection",
656
+ "autoDetected": "Auto-detected",
657
+ "manual": "Manual",
658
+ "update": "Update",
659
+ "lastValidated": "Last validated",
660
+ "strengths": "Strengths",
661
+ "gaps": "Gaps",
662
+ "noStrengths": "None",
663
+ "noGaps": "None",
664
+ "roles": "Roles",
665
+ "readinessScore": "Readiness",
666
+ "copyAgentPrompt": "Copy prompt for agent",
667
+ "promptCopied": "Prompt copied",
668
+ "copyInstallCommand": "Copy install command",
669
+ "installCommandCopied": "Install command copied",
670
+ "noDeliveries": "No deliveries recorded yet."
671
+ },
672
+ "messages": {
673
+ "commands": {
674
+ "title": "Agent Commands",
675
+ "available": "available",
676
+ "noCommands": "No commands registered",
677
+ "noCommandsHint": "The agent can register commands by writing to its commands memory key.",
678
+ "send": "Send",
679
+ "defaultCategory": "General"
680
+ },
681
+ "placeholder": "Type / for commands or a message...",
682
+ "hint": "Type / to see available commands",
683
+ "sendError": "Failed to send message",
684
+ "command": "command"
685
+ },
686
+ "data_access": {
687
+ "sharedTagsTitle": "Shared Tags",
688
+ "addTag": "Add tag",
689
+ "tagPlaceholder": "Tag name",
690
+ "tagAdded": "Tag added",
691
+ "tagRemoved": "Tag removed",
692
+ "addTagError": "Failed to add tag",
693
+ "removeTagError": "Failed to remove tag",
694
+ "with": "with",
695
+ "onlyYou": "only you",
696
+ "noTags": "No tags assigned",
697
+ "memoryAreasTitle": "Agent Memory Areas",
698
+ "knowledgeTitle": "Knowledge Packages",
699
+ "effectiveScope": "Effective data scope for this agent",
700
+ "tagsHelp": "Tags create shared memory areas. All agents with the same tag can read and write to agents.tag.{name}.* -- they discover each other automatically.",
701
+ "addArea": "Add area",
702
+ "areaKeyPlaceholder": "Key prefix (e.g., agents.mydata.)",
703
+ "areaDescPlaceholder": "Description",
704
+ "areaAdded": "Memory area added",
705
+ "linkPackage": "Link package",
706
+ "packageLinked": "Knowledge package linked",
707
+ "noPackagesAvailable": "No knowledge packages available",
708
+ "noAreas": "No memory areas assigned",
709
+ "permReadWrite": "Read + Write",
710
+ "permReadOnly": "Read only",
711
+ "docCount": "docs",
712
+ "noPackages": "No knowledge packages linked",
713
+ "storedKeysTitle": "Stored Memory Keys",
714
+ "scopeNote": "This scope summary is included in the agent's skill bundle so it knows its data boundaries.",
715
+ "scopeFooter": "This summary is included in the agent's skill bundle so it knows its data boundaries.",
716
+ "addAreaError": "Failed to add memory area",
717
+ "linkPackageError": "Failed to link knowledge package",
718
+ "packageNamePlaceholder": "Package name or URL",
719
+ "packageDescPlaceholder": "Description"
720
+ },
721
+ "agent_config": {
722
+ "copy": "Copy",
723
+ "download": "Download",
724
+ "edit": "Edit",
725
+ "save": "Save",
726
+ "cancel": "Cancel",
727
+ "upload": "Upload config file",
728
+ "saved": "Config file saved",
729
+ "saveError": "Failed to save config file",
730
+ "uploaded": "Config file uploaded",
731
+ "uploadError": "Failed to upload config file",
732
+ "viewing": "Viewing"
733
+ },
734
+ "activity": {
735
+ "filterAll": "All",
736
+ "filterTasks": "Tasks",
737
+ "filterMessages": "Messages",
738
+ "filterGovernance": "Governance",
739
+ "filterSystem": "System",
740
+ "auditTrail": "Activity log is an append-only audit trail. Governance events feed into the agent's trust score.",
741
+ "governance": {
742
+ "title": "Today's Governance",
743
+ "tokenBudget": "Token budget",
744
+ "tasksToday": "Tasks today",
745
+ "completed": "Completed",
746
+ "activeTasks": "Active",
747
+ "failed": "Failed",
748
+ "policyIssues": "Policy issues",
749
+ "telemetryEvents": "Telemetry events today",
750
+ "deliveryHealth": "Delivery health",
751
+ "connected": "Connected",
752
+ "notConfigured": "Not configured",
753
+ "mcpLabel": "MCP"
754
+ }
755
+ },
756
+ "directives": {
757
+ "footer": "Directives are included in every skill bundle update. The agent receives these as behavioral constraints.",
758
+ "contentLabel": "Behavioral directives",
759
+ "contentPlaceholder": "Enter behavioral directives...\n\n## Priority Rules\n1. Never start tasks without owner approval\n\n## Scope Boundaries\n- Only access grocery-related data"
760
+ },
761
+ "services": {
762
+ "info": "Services are declared by the agent during Hello Integration Step 11 (optional). They define what the agent offers to other agents and the network.",
763
+ "active": "Active",
764
+ "inactive": "Inactive"
765
+ },
766
+ "tasks": {
767
+ "filter": {
768
+ "all": "All",
769
+ "active": "Active",
770
+ "queued": "Queued",
771
+ "completed": "Completed",
772
+ "failed": "Failed"
773
+ },
774
+ "scope": "Scope",
775
+ "rules": "Rules"
776
+ },
777
+ "empty": {
778
+ "tasks": "No tasks yet. Create a task to give this agent work.",
779
+ "messages": "No messages yet. Send a message or use a command.",
780
+ "data_access": "No data access configured. Use the buttons below to add tags, memory areas, or knowledge packages.",
781
+ "agent_config": "No configuration files. The agent will push its config files after the skill bundle is installed.",
782
+ "activity": "No activity recorded yet. Events will appear here once the agent starts working.",
783
+ "services": "No services declared. The agent can declare services during Hello Integration Step 11."
784
+ }
448
785
  }
449
786
  },
450
787
  "scopes": {
@@ -590,7 +927,9 @@
590
927
  "lifetimeEarned": "Earned",
591
928
  "lifetimeSpent": "Spent",
592
929
  "lifetimeAllowance": "Allowance Received",
593
- "lifetimeWelcome": "Welcome Bonus"
930
+ "lifetimeWelcome": "Welcome Bonus",
931
+ "federatedInfo": "Your wallet is on your home node. Morsel balance, transactions, and allowances are managed there.",
932
+ "federatedHomeNode": "Home node"
594
933
  },
595
934
  "memory": {
596
935
  "title": "Memory",
@@ -644,7 +983,44 @@
644
983
  "shareSuccess": "Shared to federation",
645
984
  "unshareSuccess": "Removed from federation",
646
985
  "selectGroup": "Select group",
647
- "noGroups": "No sharing groups. Create one in the Access tab."
986
+ "skipGroup": "Skip",
987
+ "noGroups": "No sharing groups. Create one in the Access tab.",
988
+ "sortLabel": "Sort:",
989
+ "sortUpdated": "Last updated",
990
+ "sortCreated": "Created",
991
+ "sortAlpha": "A-Z",
992
+ "timeJustNow": "just now",
993
+ "timeMinsAgo": "{n}m ago",
994
+ "timeHoursAgo": "{n}h ago",
995
+ "timeDaysAgo": "{n}d ago",
996
+ "discoverTitle": "Discover Public",
997
+ "discoverDesc": "Browse public memory entries shared by other users on this node. Click an entry to preview its contents, then copy it to your own memory.",
998
+ "discoverSearchPlaceholder": "Search by key, owner, or tag...",
999
+ "discoverLoading": "Searching public memories...",
1000
+ "discoverCount": "{count} public entries found",
1001
+ "discoverEmpty": "No public memory entries found from other users.",
1002
+ "discoverCopy": "Copy",
1003
+ "discoverCopied": "Copied to your memory!",
1004
+ "browseHome": "Browse Home Node",
1005
+ "browseHomeDesc": "Your memories stored on your home node. Pull them here to use locally.",
1006
+ "browseRemote": "Browse Remote Nodes",
1007
+ "browseRemoteDesc": "Your memories stored on nodes where you've logged in via federation.",
1008
+ "browseRemoteSelect": "Select a peer node to browse your memories there",
1009
+ "remoteEntries": "{count} entries on {node}",
1010
+ "homeEntries": "{count} entries on home node",
1011
+ "pullEntry": "Pull",
1012
+ "pullAllBtn": "Pull All",
1013
+ "pullAllConfirm": "Pull all {count} entries from {node}?",
1014
+ "pullingAll": "Pulling entries...",
1015
+ "pullAllSuccess": "Pulled {count} entries",
1016
+ "noPeers": "No active federation peers",
1017
+ "noRemoteEntries": "No memory entries found on this node",
1018
+ "noHomeEntries": "No memory entries found on your home node",
1019
+ "loadingRemote": "Loading remote memories...",
1020
+ "loadingHome": "Loading home node memories...",
1021
+ "errorLocalhost": "Cannot browse this node. Local/development nodes are not reachable from public nodes. Both nodes must be publicly accessible for cross-node browsing to work.",
1022
+ "errorPeerNotFound": "Peer node not found in the federation directory. It may have been removed or is no longer active.",
1023
+ "errorPeerUnsupported": "This peer node does not support memory browsing yet. It may be running an older version of AIMEAT."
648
1024
  },
649
1025
  "files": {
650
1026
  "title": "Stored Files",
@@ -3375,6 +3751,8 @@
3375
3751
  "fedPeerEmergencyRemoved": "Peer immediately disconnected. All in-flight work cancelled.",
3376
3752
 
3377
3753
  "fedRequestHistoryTitle": "Peering Request History",
3754
+ "fedDeleteRequestConfirm": "Delete this peering request from history?",
3755
+ "fedRequestDeleted": "Peering request deleted",
3378
3756
 
3379
3757
  "fedJoinTitle": "Join Genesis Network",
3380
3758
  "fedJoinExplain": "Connect this node to an existing AIMEAT genesis network. Enter the genesis node URL and select your role. The genesis operator will review and approve your request.",
@@ -4612,7 +4990,8 @@
4612
4990
  "public": "Public",
4613
4991
  "private": "Private",
4614
4992
  "owner": "My Agents",
4615
- "shared": "My Agents"
4993
+ "shared": "My Agents",
4994
+ "group": "Group"
4616
4995
  },
4617
4996
  "federate": "Federate",
4618
4997
  "federated": "Federated",
@@ -5013,5 +5392,189 @@
5013
5392
  "filterByType": "Filter by source",
5014
5393
  "myCapabilities": "My Capabilities",
5015
5394
  "totalCount": "{count} capabilities"
5395
+ },
5396
+ "agentOnboarding": {
5397
+ "title": "Hello Integration",
5398
+ "status": "Onboarding Status",
5399
+ "notStarted": "Not started",
5400
+ "inProgress": "In progress",
5401
+ "completed": "Completed",
5402
+ "failed": "Failed",
5403
+ "progress": "Progress",
5404
+ "startButton": "Start Hello Integration",
5405
+ "restartButton": "Re-run Hello Integration",
5406
+ "cancelButton": "Cancel",
5407
+ "steps": {
5408
+ "authenticate": "Authenticate",
5409
+ "identify_platform": "Identify Platform",
5410
+ "install_skill": "Install Skill Bundle",
5411
+ "report_capabilities": "Report Capabilities",
5412
+ "read_directives": "Read Directives",
5413
+ "send_test_message": "Send Test Message",
5414
+ "configure_delivery": "Configure Delivery",
5415
+ "report_telemetry": "Report Telemetry",
5416
+ "accept_test_task": "Accept Test Task",
5417
+ "complete_test_task": "Complete Test Task",
5418
+ "declare_services": "Declare Services"
5419
+ },
5420
+ "stepDescriptions": {
5421
+ "authenticate": "Agent is authenticated via device auth",
5422
+ "identify_platform": "Determine which AI platform the agent runs on",
5423
+ "install_skill": "Skill bundle installed and version reported",
5424
+ "report_capabilities": "PUT /capabilities called with non-empty data",
5425
+ "read_directives": "GET /directives called, agent confirms reading",
5426
+ "send_test_message": "POST /messages proves the message channel works",
5427
+ "configure_delivery": "Webhook registered OR MCP detected OR polling confirmed",
5428
+ "report_telemetry": "At least one telemetry event with non-zero data",
5429
+ "accept_test_task": "Agent proposes todos for the test task",
5430
+ "complete_test_task": "Agent executes and completes the test task",
5431
+ "declare_services": "Agent declares offered services (optional)"
5432
+ },
5433
+ "errors": {
5434
+ "accessDenied": "Access denied",
5435
+ "agentNotFound": "Agent '{{name}}' not found",
5436
+ "onboardingNotActive": "Onboarding is not in progress",
5437
+ "unknownStep": "Unknown onboarding step: {{stepId}}",
5438
+ "stepNotFound": "Step '{{stepId}}' not found",
5439
+ "stepAlreadyPassed": "Step already passed",
5440
+ "noOnboardingRecord": "No onboarding record found",
5441
+ "invalidLevel": "level must be one of: basic, standard, full, expert",
5442
+ "testTaskTitle": "Onboarding verification",
5443
+ "testTaskDescription": "This is a test task created during Hello Integration. Propose todos, get approval, execute, and complete."
5444
+ },
5445
+ "readiness": {
5446
+ "title": "Readiness",
5447
+ "none": "None",
5448
+ "basic": "Basic",
5449
+ "standard": "Standard",
5450
+ "advanced": "Advanced",
5451
+ "full": "Full",
5452
+ "expert": "Expert",
5453
+ "overrideActive": "Manual override active",
5454
+ "overrideExpires": "Expires"
5455
+ },
5456
+ "platform": {
5457
+ "title": "Platform",
5458
+ "autoDetected": "Auto-detected",
5459
+ "selfReported": "Self-reported",
5460
+ "messageReply": "Message reply",
5461
+ "unknown": "Unknown",
5462
+ "hermes": "Hermes (OpenClaw)",
5463
+ "claude-code": "Claude Code",
5464
+ "copilot": "GitHub Copilot CLI",
5465
+ "codex": "OpenAI Codex CLI",
5466
+ "gemini": "Google Gemini CLI",
5467
+ "other": "Other / Unknown"
5468
+ }
5469
+ },
5470
+ "governance": {
5471
+ "title": "Today's Governance",
5472
+ "tokenBudget": "Token budget",
5473
+ "tasksToday": "Tasks today",
5474
+ "policyIssues": "Policy issues",
5475
+ "telemetryEvents": "Telemetry events today",
5476
+ "deliveryHealth": "Delivery health",
5477
+ "budgetLimits": {
5478
+ "title": "Budget Limits",
5479
+ "maxTokensPerTask": "Max tokens per task",
5480
+ "maxTokensPerDay": "Max tokens per day",
5481
+ "maxTasksPerDay": "Max tasks per day",
5482
+ "alertThreshold": "Alert threshold (%)"
5483
+ },
5484
+ "readinessGate": {
5485
+ "insufficient": "Readiness level insufficient",
5486
+ "required": "Required level"
5487
+ }
5488
+ },
5489
+ "admin": {
5490
+ "tabs": {
5491
+ "agentIntegration": "Agent Integration"
5492
+ },
5493
+ "agentIntegration": {
5494
+ "platformRegistry": "Platform Registry",
5495
+ "onboardingOverview": "Onboarding Overview",
5496
+ "skillBundles": "Skill Bundles",
5497
+ "readinessDistribution": "Readiness Distribution",
5498
+ "completed": "Completed",
5499
+ "inProgress": "In Progress",
5500
+ "stuck": "Stuck",
5501
+ "stuckSince": "Stuck since",
5502
+ "regenerateAll": "Regenerate all bundles",
5503
+ "outdated": "Outdated",
5504
+ "agentCount": "Agents",
5505
+ "totalAgents": "Total agents",
5506
+ "adapter": "Adapter",
5507
+ "detectPattern": "Auto-detect pattern",
5508
+ "noPlatforms": "No platforms registered",
5509
+ "platform": "Platform",
5510
+ "notStarted": "Not Started",
5511
+ "stuckAgents": "Stuck Agents",
5512
+ "currentVersion": "Current Version",
5513
+ "addPlatform": "Add platform",
5514
+ "platformName": "Platform name",
5515
+ "platformId": "Platform ID",
5516
+ "adapterPattern": "Adapter",
5517
+ "autoDetectRegex": "Auto-detect regex",
5518
+ "sendReminder": "Send reminder",
5519
+ "skipStep": "Skip step",
5520
+ "bundleTemplates": "Bundle Templates",
5521
+ "customReferences": "Custom references",
5522
+ "customScripts": "Custom scripts",
5523
+ "lastGenerated": "Last generated",
5524
+ "customizeBundle": "Customize bundle",
5525
+ "previewBundle": "Preview bundle",
5526
+ "notifyOutdated": "Notify",
5527
+ "notifySuccess": "Notifications sent",
5528
+ "comingSoon": "Coming soon",
5529
+ "placeholders": {
5530
+ "name": "Hermes",
5531
+ "id": "hermes-openclaw",
5532
+ "adapter": "aimeat-hermes",
5533
+ "regex": "hermes|openclaw"
5534
+ },
5535
+ "suggestion": {
5536
+ "webhook": "Webhook URL not registered or endpoint unreachable",
5537
+ "platform": "Platform detection failed -- verify User-Agent or configure manually",
5538
+ "skillBundle": "Skill bundle not installed or outdated version detected",
5539
+ "default": "No progress for over 24 hours -- consider contacting the agent owner"
5540
+ }
5541
+ }
5542
+ },
5543
+ "pkv": {
5544
+ "title": "Public Knowledge Library",
5545
+ "subtitle": "Browse and read public knowledge packages shared by the community.",
5546
+ "searchPlaceholder": "Search by tags or keywords...",
5547
+ "allTypes": "All types",
5548
+ "sort": {
5549
+ "newest": "Newest",
5550
+ "name": "Name"
5551
+ },
5552
+ "entries": "entries",
5553
+ "loading": "Loading...",
5554
+ "loadMore": "Load more",
5555
+ "emptyTitle": "No public knowledge packages yet",
5556
+ "emptyDesc": "When users publish knowledge packages with public visibility, they will appear here.",
5557
+ "backToLibrary": "Back to library",
5558
+ "notFound": "Package not found",
5559
+ "author": "Author",
5560
+ "contentType": "Content type",
5561
+ "language": "Language",
5562
+ "maturity": "Maturity",
5563
+ "created": "Created",
5564
+ "updated": "Updated",
5565
+ "synthesis": "Synthesis",
5566
+ "license": "License",
5567
+ "noLicense": "No license specified",
5568
+ "reputation": "Reputation",
5569
+ "reviews": "Reviews",
5570
+ "avgScore": "Avg score",
5571
+ "clones": "Clones",
5572
+ "publicEntries": "Public entries",
5573
+ "entryUnavailable": "Content unavailable",
5574
+ "references": "References",
5575
+ "relatedPackages": "Related packages",
5576
+ "exportJson": "Export JSON",
5577
+ "copyMarkdown": "Copy as Markdown",
5578
+ "copied": "Copied!"
5016
5579
  }
5017
5580
  }