aimeat 1.8.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.
- package/dist/.env.example +4 -1
- package/dist/bin/aimeat.js +0 -0
- package/dist/locales/en.json +527 -7
- package/dist/locales/fi.json +526 -6
- package/dist/public/css/views/admin-agent-integration.css +304 -0
- package/dist/public/css/views/agents-detail.css +1573 -146
- package/dist/public/css/views/public-knowledge-viewer.css +479 -0
- package/dist/public/js/i18n.js +9 -3
- package/dist/public/js/services/admin-agent-integration.js +52 -0
- package/dist/public/js/services/agent-integration.js +80 -0
- package/dist/public/js/services/agent-messages.js +3 -1
- package/dist/public/lib/live-updates.js +9 -4
- package/dist/public/llms-template.txt +106 -0
- package/dist/public/spa.html +7 -2
- package/dist/public/views/admin/agent-integration-tab.js +390 -0
- package/dist/public/views/admin.js +2 -0
- package/dist/public/views/profile/agents/agent-card.js +396 -0
- package/dist/public/views/profile/agents/shared-board.js +97 -0
- package/dist/public/views/profile/agents/state-detector.js +62 -0
- package/dist/public/views/profile/agents/tab-activity.js +232 -0
- package/dist/public/views/profile/agents/tab-agent-config.js +199 -0
- package/dist/public/views/profile/agents/tab-data-access.js +304 -0
- package/dist/public/views/profile/agents/tab-directives.js +178 -0
- package/dist/public/views/profile/agents/tab-integration.js +505 -0
- package/dist/public/views/profile/agents/tab-messages.js +278 -0
- package/dist/public/views/profile/agents/tab-services.js +17 -0
- package/dist/public/views/profile/agents/tab-tasks.js +17 -0
- package/dist/public/views/profile/agents-messages-subtab.js +11 -10
- package/dist/public/views/profile/agents-services-subtab.js +17 -11
- package/dist/public/views/profile/agents-tab.js +159 -259
- package/dist/public/views/profile/agents-task-builder.js +403 -0
- package/dist/public/views/profile/agents-tasks-subtab.js +114 -127
- package/dist/public/views/public-knowledge-viewer.js +650 -0
- package/dist/src/auth/middleware.d.ts.map +1 -1
- package/dist/src/auth/middleware.js +17 -0
- package/dist/src/auth/middleware.js.map +1 -1
- package/dist/src/config.d.ts +1 -0
- package/dist/src/config.d.ts.map +1 -1
- package/dist/src/config.js +1 -0
- package/dist/src/config.js.map +1 -1
- package/dist/src/middleware/readiness-gate.d.ts +18 -0
- package/dist/src/middleware/readiness-gate.d.ts.map +1 -0
- package/dist/src/middleware/readiness-gate.js +50 -0
- package/dist/src/middleware/readiness-gate.js.map +1 -0
- package/dist/src/models/agent-directives-schemas.d.ts +12 -0
- package/dist/src/models/agent-directives-schemas.d.ts.map +1 -1
- package/dist/src/models/agent-directives-schemas.js +7 -0
- package/dist/src/models/agent-directives-schemas.js.map +1 -1
- package/dist/src/models/agent-onboarding-schemas.d.ts +45 -0
- package/dist/src/models/agent-onboarding-schemas.d.ts.map +1 -0
- package/dist/src/models/agent-onboarding-schemas.js +91 -0
- package/dist/src/models/agent-onboarding-schemas.js.map +1 -0
- package/dist/src/models/webhook-schemas.d.ts +266 -0
- package/dist/src/models/webhook-schemas.d.ts.map +1 -0
- package/dist/src/models/webhook-schemas.js +137 -0
- package/dist/src/models/webhook-schemas.js.map +1 -0
- package/dist/src/routes/admin-agent-integration.d.ts +24 -0
- package/dist/src/routes/admin-agent-integration.d.ts.map +1 -0
- package/dist/src/routes/admin-agent-integration.js +186 -0
- package/dist/src/routes/admin-agent-integration.js.map +1 -0
- package/dist/src/routes/agent-activity.d.ts.map +1 -1
- package/dist/src/routes/agent-activity.js +17 -0
- package/dist/src/routes/agent-activity.js.map +1 -1
- package/dist/src/routes/agent-directives.d.ts +5 -1
- package/dist/src/routes/agent-directives.d.ts.map +1 -1
- package/dist/src/routes/agent-directives.js +74 -20
- package/dist/src/routes/agent-directives.js.map +1 -1
- package/dist/src/routes/agent-integration.d.ts +1 -0
- package/dist/src/routes/agent-integration.d.ts.map +1 -1
- package/dist/src/routes/agent-integration.js +128 -11
- package/dist/src/routes/agent-integration.js.map +1 -1
- package/dist/src/routes/agent-messages.d.ts +5 -1
- package/dist/src/routes/agent-messages.d.ts.map +1 -1
- package/dist/src/routes/agent-messages.js +20 -1
- package/dist/src/routes/agent-messages.js.map +1 -1
- package/dist/src/routes/agent-onboarding.d.ts +23 -0
- package/dist/src/routes/agent-onboarding.d.ts.map +1 -0
- package/dist/src/routes/agent-onboarding.js +374 -0
- package/dist/src/routes/agent-onboarding.js.map +1 -0
- package/dist/src/routes/agent-skill-bundle.d.ts +16 -0
- package/dist/src/routes/agent-skill-bundle.d.ts.map +1 -0
- package/dist/src/routes/agent-skill-bundle.js +133 -0
- package/dist/src/routes/agent-skill-bundle.js.map +1 -0
- package/dist/src/routes/agent-tasks.d.ts +7 -1
- package/dist/src/routes/agent-tasks.d.ts.map +1 -1
- package/dist/src/routes/agent-tasks.js +183 -7
- package/dist/src/routes/agent-tasks.js.map +1 -1
- package/dist/src/routes/agent-telemetry.d.ts +15 -0
- package/dist/src/routes/agent-telemetry.d.ts.map +1 -0
- package/dist/src/routes/agent-telemetry.js +99 -0
- package/dist/src/routes/agent-telemetry.js.map +1 -0
- package/dist/src/routes/agent-webhook.d.ts +18 -0
- package/dist/src/routes/agent-webhook.d.ts.map +1 -0
- package/dist/src/routes/agent-webhook.js +243 -0
- package/dist/src/routes/agent-webhook.js.map +1 -0
- package/dist/src/routes/agents.d.ts.map +1 -1
- package/dist/src/routes/agents.js +203 -4
- package/dist/src/routes/agents.js.map +1 -1
- package/dist/src/routes/auth.d.ts.map +1 -1
- package/dist/src/routes/auth.js +45 -2
- package/dist/src/routes/auth.js.map +1 -1
- package/dist/src/routes/ghii.d.ts.map +1 -1
- package/dist/src/routes/ghii.js +42 -5
- package/dist/src/routes/ghii.js.map +1 -1
- package/dist/src/routes/knowledge.d.ts.map +1 -1
- package/dist/src/routes/knowledge.js +19 -7
- package/dist/src/routes/knowledge.js.map +1 -1
- package/dist/src/routes/memory.js +3 -3
- package/dist/src/routes/memory.js.map +1 -1
- package/dist/src/routes/portal.d.ts.map +1 -1
- package/dist/src/routes/portal.js +1 -0
- package/dist/src/routes/portal.js.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +16 -3
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/services/config-schema.d.ts.map +1 -1
- package/dist/src/services/config-schema.js +2 -1
- package/dist/src/services/config-schema.js.map +1 -1
- package/dist/src/services/core-jobs.d.ts.map +1 -1
- package/dist/src/services/core-jobs.js +3 -2
- package/dist/src/services/core-jobs.js.map +1 -1
- package/dist/src/services/onboarding-validator.d.ts +22 -0
- package/dist/src/services/onboarding-validator.d.ts.map +1 -0
- package/dist/src/services/onboarding-validator.js +202 -0
- package/dist/src/services/onboarding-validator.js.map +1 -0
- package/dist/src/services/platform-detector.d.ts +27 -0
- package/dist/src/services/platform-detector.d.ts.map +1 -0
- package/dist/src/services/platform-detector.js +73 -0
- package/dist/src/services/platform-detector.js.map +1 -0
- package/dist/src/services/prompt-defaults.d.ts.map +1 -1
- package/dist/src/services/prompt-defaults.js +129 -123
- package/dist/src/services/prompt-defaults.js.map +1 -1
- package/dist/src/services/readiness-scorer.d.ts +34 -0
- package/dist/src/services/readiness-scorer.d.ts.map +1 -0
- package/dist/src/services/readiness-scorer.js +87 -0
- package/dist/src/services/readiness-scorer.js.map +1 -0
- package/dist/src/services/skill-bundle/generator.d.ts +17 -0
- package/dist/src/services/skill-bundle/generator.d.ts.map +1 -0
- package/dist/src/services/skill-bundle/generator.js +387 -0
- package/dist/src/services/skill-bundle/generator.js.map +1 -0
- package/dist/src/services/skill-bundle/generic-adapter.d.ts +16 -0
- package/dist/src/services/skill-bundle/generic-adapter.d.ts.map +1 -0
- package/dist/src/services/skill-bundle/generic-adapter.js +96 -0
- package/dist/src/services/skill-bundle/generic-adapter.js.map +1 -0
- package/dist/src/services/skill-bundle/hermes-adapter.d.ts +25 -0
- package/dist/src/services/skill-bundle/hermes-adapter.d.ts.map +1 -0
- package/dist/src/services/skill-bundle/hermes-adapter.js +302 -0
- package/dist/src/services/skill-bundle/hermes-adapter.js.map +1 -0
- package/dist/src/services/skill-bundle/types.d.ts +54 -0
- package/dist/src/services/skill-bundle/types.d.ts.map +1 -0
- package/dist/src/services/skill-bundle/types.js +8 -0
- package/dist/src/services/skill-bundle/types.js.map +1 -0
- package/dist/src/services/task-stall-detector.d.ts +10 -2
- package/dist/src/services/task-stall-detector.d.ts.map +1 -1
- package/dist/src/services/task-stall-detector.js +34 -5
- package/dist/src/services/task-stall-detector.js.map +1 -1
- package/dist/src/services/webhook-dispatcher.d.ts +71 -0
- package/dist/src/services/webhook-dispatcher.d.ts.map +1 -0
- package/dist/src/services/webhook-dispatcher.js +259 -0
- package/dist/src/services/webhook-dispatcher.js.map +1 -0
- package/dist/src/storage/interface.d.ts +80 -2
- package/dist/src/storage/interface.d.ts.map +1 -1
- package/dist/src/storage/providers/mongodb/index.d.ts +20 -1
- package/dist/src/storage/providers/mongodb/index.d.ts.map +1 -1
- package/dist/src/storage/providers/mongodb/index.js +250 -2
- package/dist/src/storage/providers/mongodb/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/index.d.ts +18 -1
- package/dist/src/storage/providers/sqlite/index.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/index.js +168 -4
- package/dist/src/storage/providers/sqlite/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/agent-directives.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/agent-directives.js +8 -4
- package/dist/src/storage/providers/sqlite/repos/agent-directives.js.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/agent.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/agent.js +25 -4
- package/dist/src/storage/providers/sqlite/repos/agent.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.js +71 -1
- package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
- package/dist/src/storage/repositories/agent-onboarding.repository.d.ts +16 -0
- package/dist/src/storage/repositories/agent-onboarding.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/agent-onboarding.repository.js +8 -0
- package/dist/src/storage/repositories/agent-onboarding.repository.js.map +1 -0
- package/dist/src/storage/repositories/agent-webhook.repository.d.ts +21 -0
- package/dist/src/storage/repositories/agent-webhook.repository.d.ts.map +1 -0
- package/dist/src/storage/repositories/agent-webhook.repository.js +2 -0
- package/dist/src/storage/repositories/agent-webhook.repository.js.map +1 -0
- package/dist/src/storage/repositories/agent.repository.d.ts +1 -0
- package/dist/src/storage/repositories/agent.repository.d.ts.map +1 -1
- package/dist/src/storage/repositories/index.d.ts +2 -0
- package/dist/src/storage/repositories/index.d.ts.map +1 -1
- package/dist/src/utils/env-config.d.ts.map +1 -1
- package/dist/src/utils/env-config.js +7 -1
- package/dist/src/utils/env-config.js.map +1 -1
- package/dist/src/utils/url-validator.d.ts.map +1 -1
- package/dist/src/utils/url-validator.js +3 -0
- package/dist/src/utils/url-validator.js.map +1 -1
- package/package.json +97 -77
- package/prisma/schema.prisma +65 -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:
|
|
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.
|
package/dist/bin/aimeat.js
CHANGED
|
File without changes
|
package/dist/locales/en.json
CHANGED
|
@@ -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",
|
|
@@ -384,9 +390,51 @@
|
|
|
384
390
|
"noEvents": "No events",
|
|
385
391
|
"todoProgress": "TODO Progress",
|
|
386
392
|
"created": "Created",
|
|
393
|
+
"updated": "Updated",
|
|
394
|
+
"completed": "Completed",
|
|
387
395
|
"lastEvent": "Last Event",
|
|
388
396
|
"delete": "Delete",
|
|
389
|
-
"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
|
+
}
|
|
390
438
|
},
|
|
391
439
|
"directives": {
|
|
392
440
|
"title": "Directives",
|
|
@@ -399,11 +447,30 @@
|
|
|
399
447
|
"cancel": "Cancel",
|
|
400
448
|
"reset": "Reset to Defaults",
|
|
401
449
|
"resetConfirm": "Reset agent directives to defaults?",
|
|
402
|
-
"empty": "No directives configured",
|
|
403
|
-
"addRule": "Add
|
|
450
|
+
"empty": "No directives configured for this agent. Click Edit to add rules and purpose.",
|
|
451
|
+
"addRule": "Add rule",
|
|
404
452
|
"system": "System",
|
|
405
453
|
"owner": "Owner",
|
|
406
|
-
"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"
|
|
407
474
|
},
|
|
408
475
|
"capabilities": {
|
|
409
476
|
"technical": "Technical Skills",
|
|
@@ -432,7 +499,19 @@
|
|
|
432
499
|
"empty": "No services published",
|
|
433
500
|
"info": "Other agents can call these services via the work exchange",
|
|
434
501
|
"calls": "calls",
|
|
435
|
-
"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
|
+
}
|
|
436
515
|
},
|
|
437
516
|
"messages": {
|
|
438
517
|
"title": "Messages",
|
|
@@ -445,7 +524,264 @@
|
|
|
445
524
|
"proposedTask": "Proposed task",
|
|
446
525
|
"createTask": "Create this task",
|
|
447
526
|
"adjustTask": "Let me adjust",
|
|
448
|
-
"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
|
+
}
|
|
449
785
|
}
|
|
450
786
|
},
|
|
451
787
|
"scopes": {
|
|
@@ -5056,5 +5392,189 @@
|
|
|
5056
5392
|
"filterByType": "Filter by source",
|
|
5057
5393
|
"myCapabilities": "My Capabilities",
|
|
5058
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!"
|
|
5059
5579
|
}
|
|
5060
5580
|
}
|