aimeat 1.33.2 → 1.35.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/locales/en.json +437 -15
- package/dist/locales/fi.json +437 -15
- package/dist/public/cortex-bundled/aimeat-charts.js +3 -3
- package/dist/public/cortex-bundled/aimeat-charts.yaml +3 -3
- package/dist/public/cortex-bundled/aimeat-i18n.js +123 -0
- package/dist/public/cortex-bundled/aimeat-i18n.yaml +64 -0
- package/dist/public/css/views/landing.css +2 -0
- package/dist/public/css/views/secretary.css +464 -2
- package/dist/public/js/i18n.js +9 -0
- package/dist/public/js/services/apps.js +4 -2
- package/dist/public/js/services/memory.js +9 -3
- package/dist/public/js/services/offers.js +1 -1
- package/dist/public/js/services/organisms.js +49 -17
- package/dist/public/js/services/secretary-helpers.js +266 -17
- package/dist/public/js/services/secretary-policy.js +28 -2
- package/dist/public/js/services/secretary-rules.js +70 -0
- package/dist/public/js/theme.js +20 -0
- package/dist/public/lib/VENDORED-STYLING.md +31 -0
- package/dist/public/lib/aimeat-daisyui-bridge.css +48 -0
- package/dist/public/lib/chartjs@4.js +14 -0
- package/dist/public/lib/daisyui@5.css +7 -0
- package/dist/public/lib/tailwindcss@4.js +8 -0
- package/dist/public/llms-template.txt +9 -6
- package/dist/public/showroom.html +104 -0
- package/dist/public/showroom.js +247 -0
- package/dist/public/spa.html +18 -16
- package/dist/public/views/aimeat-os.js +3 -2
- package/dist/public/views/landing.js +50 -6
- package/dist/public/views/profile/agents/agent-card.js +13 -4
- package/dist/public/views/profile/agents/state-detector.js +6 -0
- package/dist/public/views/profile/agents/tab-integration.js +11 -2
- package/dist/public/views/profile/apps-tab.js +46 -0
- package/dist/public/views/profile/extensions-tab.js +4 -0
- package/dist/public/views/profile/inbox-tab.js +1 -1
- package/dist/public/views/profile/landing-page.js +8 -3
- package/dist/public/views/profile/memory-tab.js +37 -6
- package/dist/public/views/profile/organisms/home.js +32 -0
- package/dist/public/views/profile/organisms/workspace-list.js +36 -5
- package/dist/public/views/profile/organisms/workspace.js +29 -4
- package/dist/public/views/profile/organisms-tab.js +61 -8
- package/dist/public/views/secretary/calendar.js +327 -0
- package/dist/public/views/secretary/cards-reach.js +16 -17
- package/dist/public/views/secretary/cards.js +217 -79
- package/dist/public/views/secretary/dashboard.js +617 -0
- package/dist/public/views/secretary/quality.js +156 -0
- package/dist/public/views/secretary/use-autonomy.js +17 -2
- package/dist/public/views/secretary/use-freshness.js +50 -0
- package/dist/public/views/secretary/use-intake.js +23 -4
- package/dist/public/views/secretary/use-layout.js +122 -0
- package/dist/public/views/secretary/use-quick-actions.js +98 -0
- package/dist/public/views/secretary/use-specialists.js +103 -0
- package/dist/public/views/secretary/use-triggers.js +159 -0
- package/dist/public/views/secretary/use-whats-next.js +340 -0
- package/dist/public/views/secretary/workflow-design.js +112 -0
- package/dist/public/views/secretary.js +836 -44
- package/dist/scripts/check-no-max-tokens.d.ts +2 -0
- package/dist/scripts/check-no-max-tokens.d.ts.map +1 -0
- package/dist/scripts/check-no-max-tokens.js +71 -0
- package/dist/scripts/check-no-max-tokens.js.map +1 -0
- package/dist/src/cli/connect/mcp/tools/organisms.d.ts +2 -0
- package/dist/src/cli/connect/mcp/tools/organisms.d.ts.map +1 -1
- package/dist/src/cli/connect/mcp/tools/organisms.js +9 -1
- package/dist/src/cli/connect/mcp/tools/organisms.js.map +1 -1
- package/dist/src/cli/connect/onboarding-prompt.d.ts +3 -0
- package/dist/src/cli/connect/onboarding-prompt.d.ts.map +1 -1
- package/dist/src/cli/connect/onboarding-prompt.js +10 -3
- package/dist/src/cli/connect/onboarding-prompt.js.map +1 -1
- package/dist/src/data/aimeat-iam-package.d.ts +25 -0
- package/dist/src/data/aimeat-iam-package.d.ts.map +1 -0
- package/dist/src/data/aimeat-iam-package.js +312 -0
- package/dist/src/data/aimeat-iam-package.js.map +1 -0
- package/dist/src/data/aimeat-marketplace-package.d.ts +25 -0
- package/dist/src/data/aimeat-marketplace-package.d.ts.map +1 -0
- package/dist/src/data/aimeat-marketplace-package.js +231 -0
- package/dist/src/data/aimeat-marketplace-package.js.map +1 -0
- package/dist/src/data/app-templates.d.ts +48 -0
- package/dist/src/data/app-templates.d.ts.map +1 -0
- package/dist/src/data/app-templates.js +856 -0
- package/dist/src/data/app-templates.js.map +1 -0
- package/dist/src/data/example-packages.d.ts.map +1 -1
- package/dist/src/data/example-packages.js +3 -1
- package/dist/src/data/example-packages.js.map +1 -1
- package/dist/src/generated/api-types.d.ts +689 -7
- package/dist/src/generated/api-types.d.ts.map +1 -1
- package/dist/src/generated/prisma-postgres/edge.js +10 -3
- package/dist/src/generated/prisma-postgres/index-browser.js +7 -0
- package/dist/src/generated/prisma-postgres/index.d.ts +205 -2
- package/dist/src/generated/prisma-postgres/index.js +10 -3
- package/dist/src/generated/prisma-postgres/package.json +1 -1
- package/dist/src/generated/prisma-postgres/schema.prisma +23 -13
- package/dist/src/generated/prisma-postgres/wasm.js +10 -3
- package/dist/src/mcp/agent-onboarding.d.ts +4 -0
- package/dist/src/mcp/agent-onboarding.d.ts.map +1 -1
- package/dist/src/mcp/agent-onboarding.js +28 -2
- package/dist/src/mcp/agent-onboarding.js.map +1 -1
- package/dist/src/mcp/annotations.d.ts.map +1 -1
- package/dist/src/mcp/annotations.js +1 -0
- package/dist/src/mcp/annotations.js.map +1 -1
- package/dist/src/mcp/catalog/definitions.d.ts.map +1 -1
- package/dist/src/mcp/catalog/definitions.js +16 -1
- package/dist/src/mcp/catalog/definitions.js.map +1 -1
- package/dist/src/mcp/catalog/surfaces.js +3 -3
- package/dist/src/mcp/catalog/surfaces.js.map +1 -1
- package/dist/src/mcp/index.d.ts +3 -0
- package/dist/src/mcp/index.d.ts.map +1 -1
- package/dist/src/mcp/index.js +11 -0
- package/dist/src/mcp/index.js.map +1 -1
- package/dist/src/mcp/organisms.d.ts.map +1 -1
- package/dist/src/mcp/organisms.js +48 -8
- package/dist/src/mcp/organisms.js.map +1 -1
- package/dist/src/mcp/workspaces.d.ts.map +1 -1
- package/dist/src/mcp/workspaces.js +6 -4
- package/dist/src/mcp/workspaces.js.map +1 -1
- package/dist/src/models/agent-onboarding-schemas.d.ts +47 -0
- package/dist/src/models/agent-onboarding-schemas.d.ts.map +1 -1
- package/dist/src/models/agent-onboarding-schemas.js +117 -0
- package/dist/src/models/agent-onboarding-schemas.js.map +1 -1
- package/dist/src/models/offer-schemas.d.ts +8 -8
- package/dist/src/routes/agent-onboarding.d.ts +5 -0
- package/dist/src/routes/agent-onboarding.d.ts.map +1 -1
- package/dist/src/routes/agent-onboarding.js +21 -2
- package/dist/src/routes/agent-onboarding.js.map +1 -1
- package/dist/src/routes/ai.d.ts +8 -4
- package/dist/src/routes/ai.d.ts.map +1 -1
- package/dist/src/routes/ai.js +38 -14
- package/dist/src/routes/ai.js.map +1 -1
- package/dist/src/routes/app-grants.d.ts +2 -0
- package/dist/src/routes/app-grants.d.ts.map +1 -1
- package/dist/src/routes/app-grants.js +7 -1
- package/dist/src/routes/app-grants.js.map +1 -1
- package/dist/src/routes/app-templates.d.ts +16 -0
- package/dist/src/routes/app-templates.d.ts.map +1 -0
- package/dist/src/routes/app-templates.js +40 -0
- package/dist/src/routes/app-templates.js.map +1 -0
- package/dist/src/routes/apps.d.ts.map +1 -1
- package/dist/src/routes/apps.js +55 -5
- package/dist/src/routes/apps.js.map +1 -1
- package/dist/src/routes/auth.d.ts +3 -0
- package/dist/src/routes/auth.d.ts.map +1 -1
- package/dist/src/routes/auth.js +9 -4
- package/dist/src/routes/auth.js.map +1 -1
- package/dist/src/routes/bootstrap.d.ts.map +1 -1
- package/dist/src/routes/bootstrap.js +1 -0
- package/dist/src/routes/bootstrap.js.map +1 -1
- package/dist/src/routes/generator.d.ts.map +1 -1
- package/dist/src/routes/generator.js +3 -2
- package/dist/src/routes/generator.js.map +1 -1
- package/dist/src/routes/lib-ai.d.ts +0 -1
- package/dist/src/routes/lib-ai.d.ts.map +1 -1
- package/dist/src/routes/lib-ai.js +13 -6
- package/dist/src/routes/lib-ai.js.map +1 -1
- package/dist/src/routes/lib-header.d.ts +2 -0
- package/dist/src/routes/lib-header.d.ts.map +1 -1
- package/dist/src/routes/lib-header.js +7 -16
- package/dist/src/routes/lib-header.js.map +1 -1
- package/dist/src/routes/lib-markdown.d.ts +18 -0
- package/dist/src/routes/lib-markdown.d.ts.map +1 -0
- package/dist/src/routes/lib-markdown.js +236 -0
- package/dist/src/routes/lib-markdown.js.map +1 -0
- package/dist/src/routes/libs.d.ts +22 -0
- package/dist/src/routes/libs.d.ts.map +1 -1
- package/dist/src/routes/libs.js +133 -10
- package/dist/src/routes/libs.js.map +1 -1
- package/dist/src/routes/memory.d.ts.map +1 -1
- package/dist/src/routes/memory.js +21 -2
- package/dist/src/routes/memory.js.map +1 -1
- package/dist/src/routes/openrouter.d.ts +4 -0
- package/dist/src/routes/openrouter.d.ts.map +1 -1
- package/dist/src/routes/openrouter.js +17 -0
- package/dist/src/routes/openrouter.js.map +1 -1
- package/dist/src/routes/organisms.d.ts.map +1 -1
- package/dist/src/routes/organisms.js +107 -7
- package/dist/src/routes/organisms.js.map +1 -1
- package/dist/src/routes/portal.d.ts +9 -0
- package/dist/src/routes/portal.d.ts.map +1 -1
- package/dist/src/routes/portal.js +1 -1
- package/dist/src/routes/portal.js.map +1 -1
- package/dist/src/routes/public-stats.d.ts +3 -0
- package/dist/src/routes/public-stats.d.ts.map +1 -1
- package/dist/src/routes/public-stats.js +9 -2
- package/dist/src/routes/public-stats.js.map +1 -1
- package/dist/src/routes/secretary.d.ts +34 -0
- package/dist/src/routes/secretary.d.ts.map +1 -0
- package/dist/src/routes/secretary.js +311 -0
- package/dist/src/routes/secretary.js.map +1 -0
- package/dist/src/routes/specialists.d.ts.map +1 -1
- package/dist/src/routes/specialists.js +21 -0
- package/dist/src/routes/specialists.js.map +1 -1
- package/dist/src/routes/subdomains.js +1 -1
- package/dist/src/routes/subdomains.js.map +1 -1
- package/dist/src/routes/workflows.d.ts +9 -3
- package/dist/src/routes/workflows.d.ts.map +1 -1
- package/dist/src/routes/workflows.js +9 -3
- package/dist/src/routes/workflows.js.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +4 -0
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/server-bootstrap/service-init.d.ts.map +1 -1
- package/dist/src/server-bootstrap/service-init.js +7 -0
- package/dist/src/server-bootstrap/service-init.js.map +1 -1
- package/dist/src/server-bootstrap/static-files.d.ts +4 -0
- package/dist/src/server-bootstrap/static-files.d.ts.map +1 -1
- package/dist/src/server-bootstrap/static-files.js +18 -0
- package/dist/src/server-bootstrap/static-files.js.map +1 -1
- package/dist/src/services/archive.d.ts +74 -0
- package/dist/src/services/archive.d.ts.map +1 -0
- package/dist/src/services/archive.js +132 -0
- package/dist/src/services/archive.js.map +1 -0
- package/dist/src/services/cortex-seeder.d.ts +4 -1
- package/dist/src/services/cortex-seeder.d.ts.map +1 -1
- package/dist/src/services/cortex-seeder.js +25 -6
- package/dist/src/services/cortex-seeder.js.map +1 -1
- package/dist/src/services/directory.d.ts.map +1 -1
- package/dist/src/services/directory.js +3 -2
- package/dist/src/services/directory.js.map +1 -1
- package/dist/src/services/generator-prompt-seeds.d.ts.map +1 -1
- package/dist/src/services/generator-prompt-seeds.js +5 -4
- package/dist/src/services/generator-prompt-seeds.js.map +1 -1
- package/dist/src/services/message-send.d.ts.map +1 -1
- package/dist/src/services/message-send.js +14 -0
- package/dist/src/services/message-send.js.map +1 -1
- package/dist/src/services/onboarding-guide.d.ts +53 -0
- package/dist/src/services/onboarding-guide.d.ts.map +1 -0
- package/dist/src/services/onboarding-guide.js +81 -0
- package/dist/src/services/onboarding-guide.js.map +1 -0
- package/dist/src/services/organism-search.d.ts +6 -2
- package/dist/src/services/organism-search.d.ts.map +1 -1
- package/dist/src/services/organism-search.js +2 -2
- package/dist/src/services/organism-search.js.map +1 -1
- package/dist/src/services/owner-memory.d.ts +1 -0
- package/dist/src/services/owner-memory.d.ts.map +1 -1
- package/dist/src/services/owner-memory.js.map +1 -1
- package/dist/src/services/owner-session.d.ts +1 -0
- package/dist/src/services/owner-session.d.ts.map +1 -1
- package/dist/src/services/owner-session.js +10 -2
- package/dist/src/services/owner-session.js.map +1 -1
- package/dist/src/services/package-seeder.d.ts +22 -0
- package/dist/src/services/package-seeder.d.ts.map +1 -0
- package/dist/src/services/package-seeder.js +30 -0
- package/dist/src/services/package-seeder.js.map +1 -0
- package/dist/src/services/presence.d.ts +3 -0
- package/dist/src/services/presence.d.ts.map +1 -1
- package/dist/src/services/presence.js +10 -0
- package/dist/src/services/presence.js.map +1 -1
- package/dist/src/services/prompt-defaults.d.ts.map +1 -1
- package/dist/src/services/prompt-defaults.js +8 -3
- package/dist/src/services/prompt-defaults.js.map +1 -1
- package/dist/src/services/scheduler.d.ts +50 -2
- package/dist/src/services/scheduler.d.ts.map +1 -1
- package/dist/src/services/scheduler.js +454 -26
- package/dist/src/services/scheduler.js.map +1 -1
- package/dist/src/services/secretary-authoring.d.ts +71 -0
- package/dist/src/services/secretary-authoring.d.ts.map +1 -0
- package/dist/src/services/secretary-authoring.js +336 -0
- package/dist/src/services/secretary-authoring.js.map +1 -0
- package/dist/src/services/secretary-clarify.d.ts +57 -0
- package/dist/src/services/secretary-clarify.d.ts.map +1 -0
- package/dist/src/services/secretary-clarify.js +104 -0
- package/dist/src/services/secretary-clarify.js.map +1 -0
- package/dist/src/services/secretary-feed.d.ts +11 -0
- package/dist/src/services/secretary-feed.d.ts.map +1 -0
- package/dist/src/services/secretary-feed.js +28 -0
- package/dist/src/services/secretary-feed.js.map +1 -0
- package/dist/src/services/secretary-tick.d.ts +243 -3
- package/dist/src/services/secretary-tick.d.ts.map +1 -1
- package/dist/src/services/secretary-tick.js +273 -3
- package/dist/src/services/secretary-tick.js.map +1 -1
- package/dist/src/services/secretary-workbrief.d.ts +144 -0
- package/dist/src/services/secretary-workbrief.d.ts.map +1 -0
- package/dist/src/services/secretary-workbrief.js +315 -0
- package/dist/src/services/secretary-workbrief.js.map +1 -0
- package/dist/src/services/secretary-worktier.d.ts +118 -0
- package/dist/src/services/secretary-worktier.d.ts.map +1 -0
- package/dist/src/services/secretary-worktier.js +157 -0
- package/dist/src/services/secretary-worktier.js.map +1 -0
- package/dist/src/services/skill-bundle/generator.d.ts +3 -0
- package/dist/src/services/skill-bundle/generator.d.ts.map +1 -1
- package/dist/src/services/skill-bundle/generator.js +19 -0
- package/dist/src/services/skill-bundle/generator.js.map +1 -1
- package/dist/src/services/specialist-runner.d.ts +36 -0
- package/dist/src/services/specialist-runner.d.ts.map +1 -0
- package/dist/src/services/specialist-runner.js +91 -0
- package/dist/src/services/specialist-runner.js.map +1 -0
- package/dist/src/services/specialist.d.ts +9 -0
- package/dist/src/services/specialist.d.ts.map +1 -1
- package/dist/src/services/specialist.js +42 -0
- package/dist/src/services/specialist.js.map +1 -1
- package/dist/src/services/structure-overview.d.ts +13 -0
- package/dist/src/services/structure-overview.d.ts.map +1 -1
- package/dist/src/services/structure-overview.js +34 -11
- package/dist/src/services/structure-overview.js.map +1 -1
- package/dist/src/services/system-agent-responder.d.ts +36 -0
- package/dist/src/services/system-agent-responder.d.ts.map +1 -0
- package/dist/src/services/system-agent-responder.js +107 -0
- package/dist/src/services/system-agent-responder.js.map +1 -0
- package/dist/src/services/system-agent.d.ts +34 -1
- package/dist/src/services/system-agent.d.ts.map +1 -1
- package/dist/src/services/system-agent.js +73 -0
- package/dist/src/services/system-agent.js.map +1 -1
- package/dist/src/storage/interface.d.ts +33 -0
- package/dist/src/storage/interface.d.ts.map +1 -1
- package/dist/src/storage/interface.js.map +1 -1
- package/dist/src/storage/providers/mongodb/index.d.ts +37 -0
- package/dist/src/storage/providers/mongodb/index.d.ts.map +1 -1
- package/dist/src/storage/providers/mongodb/index.js +132 -12
- package/dist/src/storage/providers/mongodb/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/index.d.ts +23 -1
- package/dist/src/storage/providers/sqlite/index.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/index.js +60 -8
- package/dist/src/storage/providers/sqlite/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/memory.d.ts +29 -1
- package/dist/src/storage/providers/sqlite/repos/memory.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/memory.js +109 -10
- package/dist/src/storage/providers/sqlite/repos/memory.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.d.ts +3 -0
- package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.js +64 -9
- package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
- package/dist/src/storage/repositories/app.repository.d.ts +15 -0
- package/dist/src/storage/repositories/app.repository.d.ts.map +1 -1
- package/dist/src/storage/repositories/memory.repository.d.ts +41 -1
- package/dist/src/storage/repositories/memory.repository.d.ts.map +1 -1
- package/dist/src/storage/repositories/organism.repository.d.ts +2 -1
- package/dist/src/storage/repositories/organism.repository.d.ts.map +1 -1
- package/dist/static/app-catalog.html +469 -122
- package/package.json +2 -1
- package/prisma/schema.postgres.prisma +10 -0
- package/prisma/schema.prisma +12 -0
package/dist/locales/en.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"inbox.title": "
|
|
2
|
+
"inbox.title": "Messages",
|
|
3
3
|
"inbox.desc": "Direct messages with other people, on this node and across the federation.",
|
|
4
4
|
"inbox.new": "New message",
|
|
5
5
|
"inbox.to": "To",
|
|
@@ -552,8 +552,185 @@
|
|
|
552
552
|
"desc": "Your personal AIMEAT secretary — set up and ready to help.",
|
|
553
553
|
"ready": "Secretary is set up",
|
|
554
554
|
"notReady": "Your Secretary isn't set up yet. Configure OpenRouter in your profile settings to enable it.",
|
|
555
|
+
"provisioning": "Setting up your Secretary… reload the page in a moment.",
|
|
555
556
|
"identity": "Identity",
|
|
556
557
|
"scopes": "Permissions",
|
|
558
|
+
"managePermissions": "Manage in Agents",
|
|
559
|
+
"wf": {
|
|
560
|
+
"title": "Design a workflow",
|
|
561
|
+
"quick": "Design workflow",
|
|
562
|
+
"prompt": "Describe the outcome you want — I'll chain your specialists and Builders into a workflow (a multi-step pipeline) to reach it.",
|
|
563
|
+
"placeholder": "e.g. Every evening, gather the day's news and publish an edition…",
|
|
564
|
+
"design": "Design",
|
|
565
|
+
"designing": "Designing the chain…",
|
|
566
|
+
"steps": "Steps",
|
|
567
|
+
"after": "after",
|
|
568
|
+
"arming": "How to run it",
|
|
569
|
+
"trigManual": "On demand (callable)",
|
|
570
|
+
"trigSchedule": "On a schedule (cron)",
|
|
571
|
+
"trigEvent": "On new data (event)",
|
|
572
|
+
"save": "Save & arm",
|
|
573
|
+
"redo": "Start over",
|
|
574
|
+
"saved": "Saved & armed as \"{id}\".",
|
|
575
|
+
"noSteps": "I couldn't build a chain from your current building blocks — create specialists (or publish offers) first"
|
|
576
|
+
},
|
|
577
|
+
"layout": {
|
|
578
|
+
"arrange": "Arrange",
|
|
579
|
+
"toRight": "Move to right column",
|
|
580
|
+
"toLeft": "Move to left column",
|
|
581
|
+
"up": "Move up",
|
|
582
|
+
"down": "Move down",
|
|
583
|
+
"hide": "Hide",
|
|
584
|
+
"reset": "Reset layout",
|
|
585
|
+
"section": {
|
|
586
|
+
"strategy": "Strategy",
|
|
587
|
+
"whatsNext": "What's next",
|
|
588
|
+
"stand": "Where things stand",
|
|
589
|
+
"actionItems": "Action items",
|
|
590
|
+
"routines": "Routines",
|
|
591
|
+
"decisions": "Decisions to confirm",
|
|
592
|
+
"automation": "Autonomous check-in",
|
|
593
|
+
"triggers": "Triggers",
|
|
594
|
+
"calendar": "Calendar",
|
|
595
|
+
"feed": "What I've done",
|
|
596
|
+
"goals": "Goals",
|
|
597
|
+
"decisionLog": "Decision log",
|
|
598
|
+
"chat": "Chat",
|
|
599
|
+
"whatsNextCard": "Suggestions",
|
|
600
|
+
"find": "Find",
|
|
601
|
+
"createResource": "Create",
|
|
602
|
+
"note": "Note",
|
|
603
|
+
"specialists": "Specialists"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"spec": {
|
|
607
|
+
"title": "Specialists",
|
|
608
|
+
"add": "+ Create",
|
|
609
|
+
"cancel": "Cancel",
|
|
610
|
+
"empty": "No specialists yet. Create one — it's a focused mini-Secretary you can chain into workflows.",
|
|
611
|
+
"run": "Run",
|
|
612
|
+
"remove": "Remove",
|
|
613
|
+
"namePh": "Name (e.g. researcher)",
|
|
614
|
+
"purposePh": "What is this specialist for? (its brain)",
|
|
615
|
+
"create": "Create specialist",
|
|
616
|
+
"created": "Specialist created.",
|
|
617
|
+
"ran": "Ran {n} task(s).",
|
|
618
|
+
"error": "Specialist error"
|
|
619
|
+
},
|
|
620
|
+
"cal": {
|
|
621
|
+
"title": "Calendar",
|
|
622
|
+
"month": "Month",
|
|
623
|
+
"week": "Week",
|
|
624
|
+
"day": "Day",
|
|
625
|
+
"today": "Today",
|
|
626
|
+
"prev": "Previous",
|
|
627
|
+
"next": "Next",
|
|
628
|
+
"tickEvent": "Secretary check-in",
|
|
629
|
+
"routineRun": "Routine run",
|
|
630
|
+
"noEvents": "Nothing scheduled this day.",
|
|
631
|
+
"earlier": "Earlier",
|
|
632
|
+
"later": "Later",
|
|
633
|
+
"triggerEvent": "Trigger",
|
|
634
|
+
"dlg": {
|
|
635
|
+
"trigger": "Edit trigger",
|
|
636
|
+
"cadence": "Repeats",
|
|
637
|
+
"save": "Save",
|
|
638
|
+
"delete": "Delete",
|
|
639
|
+
"tickDesc": "Your daily check-in — a briefing + suggested next actions.",
|
|
640
|
+
"activity": "Activity"
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
"trig": {
|
|
644
|
+
"title": "Triggers",
|
|
645
|
+
"hint": "I follow up automatically when something is due, completes, or a condition is met.",
|
|
646
|
+
"empty": "No triggers yet.",
|
|
647
|
+
"add": "Add trigger",
|
|
648
|
+
"create": "Create",
|
|
649
|
+
"labelPlaceholder": "What should I follow up on?",
|
|
650
|
+
"prefixPlaceholder": "Memory key prefix to watch (e.g. organism.<id>.w.<ws>.)",
|
|
651
|
+
"pickTarget": "Pick a goal or routine…",
|
|
652
|
+
"goalOpt": "Goal",
|
|
653
|
+
"routineOpt": "Routine",
|
|
654
|
+
"pause": "Pause",
|
|
655
|
+
"resume": "Resume",
|
|
656
|
+
"paused": "paused",
|
|
657
|
+
"fired": "fired",
|
|
658
|
+
"arm": "Arm it",
|
|
659
|
+
"dismiss": "Dismiss",
|
|
660
|
+
"proposed": "Proposed a trigger — review it",
|
|
661
|
+
"proposedBadge": "proposed",
|
|
662
|
+
"days": "days",
|
|
663
|
+
"count": "count",
|
|
664
|
+
"needWhen": "Pick a date/time",
|
|
665
|
+
"needTarget": "Pick a target",
|
|
666
|
+
"needPrefix": "Enter a memory prefix to watch",
|
|
667
|
+
"created": "Trigger created",
|
|
668
|
+
"error": "Trigger failed",
|
|
669
|
+
"kind": { "time": "On a date", "recurring": "Recurring", "completion": "When something completes", "condition": "When a condition is met" },
|
|
670
|
+
"cad": { "none": "Don't repeat", "daily": "Daily", "weekly": "Weekly", "monthly": "Monthly" },
|
|
671
|
+
"ct": { "memory_count": "Item count reaches", "workspace_count": "Workspace items reach", "no_activity": "No activity for N days", "memory_exists": "Something appears" },
|
|
672
|
+
"act": {
|
|
673
|
+
"label": "When it fires",
|
|
674
|
+
"remind": "Remind me",
|
|
675
|
+
"workflow": "Run a workflow",
|
|
676
|
+
"specialist": "Run a specialist",
|
|
677
|
+
"pickWorkflow": "Pick a workflow…",
|
|
678
|
+
"pickSpecialist": "Pick a specialist…",
|
|
679
|
+
"promptPlaceholder": "What should the specialist do? (defaults to the label)"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
"strat": {
|
|
683
|
+
"title": "Strategy",
|
|
684
|
+
"edit": "Edit",
|
|
685
|
+
"vision": "Vision",
|
|
686
|
+
"mission": "Mission",
|
|
687
|
+
"current": "Current state",
|
|
688
|
+
"target": "Target state",
|
|
689
|
+
"principles": "Principles",
|
|
690
|
+
"risks": "Risks",
|
|
691
|
+
"onePerLine": "(one per line)",
|
|
692
|
+
"empty": "Not set yet",
|
|
693
|
+
"milestones": "Milestones",
|
|
694
|
+
"noMilestones": "No milestones yet — add the big checkpoints (gates) on the way to the target, in order.",
|
|
695
|
+
"enables": "Enables",
|
|
696
|
+
"criterion": "Reached when",
|
|
697
|
+
"linkGoals": "Linked goals",
|
|
698
|
+
"advance": "Click to advance status",
|
|
699
|
+
"focus": "focus now",
|
|
700
|
+
"addPlaceholder": "Add a milestone (a gate, not a task)…",
|
|
701
|
+
"add": "Add",
|
|
702
|
+
"stop": "Stop tracking strategy",
|
|
703
|
+
"enable": "Add a strategy",
|
|
704
|
+
"enableHint": "Steer this area with a strategy: vision, mission, principles, risks, and where-we-are → where-we're-going with ordered milestones.",
|
|
705
|
+
"replan": "Re-plan",
|
|
706
|
+
"replanPrompt": "What changed? I'll re-propose a coherent strategy you can review.",
|
|
707
|
+
"replanRun": "Re-plan",
|
|
708
|
+
"replanning": "Re-planning…",
|
|
709
|
+
"replanReady": "Proposed an updated strategy — review and apply:",
|
|
710
|
+
"replanApply": "Apply",
|
|
711
|
+
"replanErr": "Re-plan failed",
|
|
712
|
+
"targetChanged": "The target state changed — adjust the milestones and the rest of the plan to fit.",
|
|
713
|
+
"status": { "not-started": "Not started", "in-progress": "In progress", "reached": "Reached" }
|
|
714
|
+
},
|
|
715
|
+
"reset": {
|
|
716
|
+
"title": "Reset Secretary",
|
|
717
|
+
"hint": "Start over from zero — wipes the brain, all goals/routines/triggers/feed/decisions, the workspaces it built, and your specialists. Your OpenRouter key is kept.",
|
|
718
|
+
"start": "Reset Secretary…",
|
|
719
|
+
"warn": "This permanently deletes your Secretary's brain, its data, the organism + workspaces it created, and all specialists. This cannot be undone.",
|
|
720
|
+
"confirmLabel": "Type RESET to confirm",
|
|
721
|
+
"confirm": "Wipe and start over",
|
|
722
|
+
"resetting": "Resetting…",
|
|
723
|
+
"done": "Secretary reset — starting fresh.",
|
|
724
|
+
"error": "Reset failed"
|
|
725
|
+
},
|
|
726
|
+
"editBrain": "Edit brain",
|
|
727
|
+
"rules": "Operating rules",
|
|
728
|
+
"addRule": "Add rule",
|
|
729
|
+
"save": "Save",
|
|
730
|
+
"saving": "Saving…",
|
|
731
|
+
"brainSaved": "Brain updated",
|
|
732
|
+
"brainEmptyPurpose": "The brain needs a purpose",
|
|
733
|
+
"remove": "Remove",
|
|
557
734
|
"soon": "Chat, schedule, and decisions are coming soon.",
|
|
558
735
|
"hireTitle": "Set up your Secretary",
|
|
559
736
|
"hireIntro": "Run a quick interview in your own AI chat so your Secretary learns what you need — then it sets up its brain and organizes a space for your information automatically.",
|
|
@@ -565,6 +742,28 @@
|
|
|
565
742
|
"apply": "Set up my Secretary",
|
|
566
743
|
"applying": "Setting up…",
|
|
567
744
|
"hireDone": "Your Secretary is set up.",
|
|
745
|
+
"briefsReady": "Work briefs ready to hand to a Builder",
|
|
746
|
+
"fillingWorkspaces": "Filling your workspaces with real content…",
|
|
747
|
+
"workspacesFilled": "Workspaces filled with real content",
|
|
748
|
+
"workspacesFilledIssues": "couldn't fill these yet",
|
|
749
|
+
"emptyRemoved": "empty ones removed",
|
|
750
|
+
"fillError": "Couldn't fill the workspaces",
|
|
751
|
+
"settingUpTitle": "Setting up your Secretary…",
|
|
752
|
+
"settingUpHint": "Hang tight — this can take a minute while it writes real content into each workspace.",
|
|
753
|
+
"stepStructure": "Creating your space and workspaces…",
|
|
754
|
+
"stepFilling": "Filling workspace",
|
|
755
|
+
"stepDone": "Done — finishing up…",
|
|
756
|
+
"mode": {
|
|
757
|
+
"title": "How should your Secretary work?",
|
|
758
|
+
"intro": "Either way, it fills your workspaces with real content right now. This choice is about what it does ON ITS OWN afterwards. You can change it any time.",
|
|
759
|
+
"draftTitle": "Prepare things for me (recommended)",
|
|
760
|
+
"draftDesc": "It keeps your workspaces up to date on its own and drafts what's next — but leaves it for you to approve. Nothing is published without your OK. Uses your AI credits.",
|
|
761
|
+
"actTitle": "Run things for me",
|
|
762
|
+
"actDesc": "Fully autonomous: it fills, updates and publishes on its own, every day, without asking. Uses your AI credits.",
|
|
763
|
+
"offTitle": "Only when I ask",
|
|
764
|
+
"offDesc": "It fills your workspaces now, then waits. It won't spend or act on its own until you turn it on.",
|
|
765
|
+
"changeLater": "You can change this any time under the Secretary's “How I work”."
|
|
766
|
+
},
|
|
568
767
|
"hireError": "Couldn't set up the Secretary",
|
|
569
768
|
"hireBadShape": "The pasted result is missing required fields (brain.purpose, organism.name, workspaces).",
|
|
570
769
|
"hiredStatus": "Secretary is set up",
|
|
@@ -579,6 +778,13 @@
|
|
|
579
778
|
"inappError": "Couldn't generate",
|
|
580
779
|
"inappEmpty": "The AI returned nothing.",
|
|
581
780
|
"howIWork": "How I work",
|
|
781
|
+
"autonomy": {
|
|
782
|
+
"suggest": "Suggest only",
|
|
783
|
+
"suggestHint": "I watch, keep things current, and surface what needs attention — but I ask before acting.",
|
|
784
|
+
"assist": "Handle the small stuff",
|
|
785
|
+
"assistHint": "I also file notes, post reminders and briefings on my own. Heavy work is always a Work Brief you hand to a Builder."
|
|
786
|
+
},
|
|
787
|
+
"advancedBands": "Advanced — per-capability control",
|
|
582
788
|
"stopSpending": "Stop spending",
|
|
583
789
|
"stopSpendingHint": "Pause everything that costs morsels or acts on its own. The Secretary can still think, draft, and message you.",
|
|
584
790
|
"dailyBudget": "Daily morsel budget",
|
|
@@ -594,6 +800,7 @@
|
|
|
594
800
|
"file_intake": "File notes & documents",
|
|
595
801
|
"briefing": "Daily / weekly briefing",
|
|
596
802
|
"reminders": "Reminders & nudges",
|
|
803
|
+
"author_content": "Fill my workspaces (write & publish)",
|
|
597
804
|
"curate_knowledge": "Curate my knowledge",
|
|
598
805
|
"draft_replies": "Draft replies",
|
|
599
806
|
"resource_invoke": "Use a found agent or service",
|
|
@@ -734,6 +941,8 @@
|
|
|
734
941
|
"noteSave": "Save",
|
|
735
942
|
"noteSaving": "Saving…",
|
|
736
943
|
"noteSaved": "Saved to",
|
|
944
|
+
"ruleAdded": "Rule added to your Secretary's brain",
|
|
945
|
+
"ruleDeclined": "Rule declined",
|
|
737
946
|
"noteError": "Couldn't save the note",
|
|
738
947
|
"askInInbox": "Ask me in inbox",
|
|
739
948
|
"askInInboxHint": "Let the Secretary ask you where to file this — answer in your inbox, then apply it here.",
|
|
@@ -745,7 +954,9 @@
|
|
|
745
954
|
"decisionAwaiting": "Awaiting your answer in the inbox…",
|
|
746
955
|
"feed": {
|
|
747
956
|
"title": "What I've done",
|
|
748
|
-
"empty": "Nothing yet. Enable the daily check-in below and I'll start keeping you posted here."
|
|
957
|
+
"empty": "Nothing yet. Enable the daily check-in below and I'll start keeping you posted here.",
|
|
958
|
+
"today": "Today",
|
|
959
|
+
"yesterday": "Yesterday"
|
|
749
960
|
},
|
|
750
961
|
"learn": {
|
|
751
962
|
"goalsTitle": "Goals",
|
|
@@ -786,12 +997,174 @@
|
|
|
786
997
|
"running": "Running…",
|
|
787
998
|
"ran": "Check-in done — see the feed.",
|
|
788
999
|
"skipped": "Skipped",
|
|
1000
|
+
"skipStopSpending": "stop-spending is on",
|
|
1001
|
+
"skipBudget": "today's budget is used up",
|
|
1002
|
+
"skipNoContext": "no context is set up yet",
|
|
789
1003
|
"budgetLeft": "Budget left today",
|
|
790
1004
|
"error": "Couldn't update the check-in"
|
|
791
1005
|
},
|
|
792
1006
|
"reliability": "Reliability",
|
|
793
1007
|
"reliabilityBuilding": "building…",
|
|
794
1008
|
"reliabilityHint": "Average score of the Secretary's reviewed decisions — its own track record, not its marketplace trust.",
|
|
1009
|
+
"brief": {
|
|
1010
|
+
"startHere": "👉 Start here:",
|
|
1011
|
+
"title": "Hand to a Builder",
|
|
1012
|
+
"subtitle": "Heavy work the Secretary prepared — a big AI builds it via MCP. You never invent content here.",
|
|
1013
|
+
"mcpNote": "Open one in Claude Desktop (it needs your AIMEAT MCP connected), or send it to an already-connected Builder.",
|
|
1014
|
+
"connectLink": "Connect a Builder",
|
|
1015
|
+
"heavyBadge": "Heavy",
|
|
1016
|
+
"dispatchedBadge": "Dispatched",
|
|
1017
|
+
"preview": "Preview what the Builder receives",
|
|
1018
|
+
"openClaude": "Open in Claude Desktop",
|
|
1019
|
+
"sendBuilder": "Send to a connected Builder…",
|
|
1020
|
+
"waiting": "Waiting on the Builder…",
|
|
1021
|
+
"dispatchedNote": "Sent — the Builder is working on it via MCP. This clears itself when the task finishes (or use Done).",
|
|
1022
|
+
"noBuilder": "Connect a Builder to dispatch",
|
|
1023
|
+
"done": "Done",
|
|
1024
|
+
"dispatched": "Brief sent to the Builder.",
|
|
1025
|
+
"dispatchFailed": "Couldn't dispatch the brief."
|
|
1026
|
+
},
|
|
1027
|
+
"dash": {
|
|
1028
|
+
"todayTitle": "Today",
|
|
1029
|
+
"refresh": "Refresh",
|
|
1030
|
+
"reconcile": "Scan",
|
|
1031
|
+
"scanning": "Scanning…",
|
|
1032
|
+
"budgetLabel": "Budget today",
|
|
1033
|
+
"nextRunLabel": "Next run",
|
|
1034
|
+
"lastScanLabel": "Last activity",
|
|
1035
|
+
"stale": "stale",
|
|
1036
|
+
"never": "never",
|
|
1037
|
+
"quickStand": "Where do things stand?",
|
|
1038
|
+
"quickPlan": "Plan",
|
|
1039
|
+
"quickFind": "Find",
|
|
1040
|
+
"quickNote": "Note",
|
|
1041
|
+
"quickReview": "Review decisions",
|
|
1042
|
+
"standTitle": "Where things stand",
|
|
1043
|
+
"standThinking": "Looking things over…",
|
|
1044
|
+
"standAt": "Updated",
|
|
1045
|
+
"refreshStand": "Refresh",
|
|
1046
|
+
"standError": "Couldn't summarise where things stand",
|
|
1047
|
+
"dismiss": "Dismiss",
|
|
1048
|
+
"manage": "Manage & setup",
|
|
1049
|
+
"manageHint": "Brain, autonomy, crew, knowledge, access, history and permissions — set up once.",
|
|
1050
|
+
"crewAgents": "agents"
|
|
1051
|
+
},
|
|
1052
|
+
"next": {
|
|
1053
|
+
"title": "What's next",
|
|
1054
|
+
"explain": "I can advance what's already underway, or start something new. A routine = a repeatable set of steps I run and track for you.",
|
|
1055
|
+
"thinking": "Working out what's next…",
|
|
1056
|
+
"cardTitle": "Set up a routine",
|
|
1057
|
+
"doIt": "Do it",
|
|
1058
|
+
"skipIt": "Skip",
|
|
1059
|
+
"done": "Done",
|
|
1060
|
+
"skipped": "Skipped",
|
|
1061
|
+
"nothingNow": "Nothing to do right now — your space looks handled.",
|
|
1062
|
+
"didDiscover": "Scouted — found {n}",
|
|
1063
|
+
"didSurface": "Flagged in the feed",
|
|
1064
|
+
"didFiled": "Filed into {ws}",
|
|
1065
|
+
"didNoted": "Noted",
|
|
1066
|
+
"didDrafted": "Drafted & filed into {ws}",
|
|
1067
|
+
"didScoutedSaved": "Scouted {n} → saved to {ws}",
|
|
1068
|
+
"openResult": "Open",
|
|
1069
|
+
"showResult": "Show result",
|
|
1070
|
+
"hideResult": "Hide result",
|
|
1071
|
+
"discard": "Discard",
|
|
1072
|
+
"discarded": "Discarded",
|
|
1073
|
+
"verifyFlag": "Check these — not supported by your data",
|
|
1074
|
+
"asked": "I asked you a few questions — I'll produce this once you answer.",
|
|
1075
|
+
"openInbox": "Open inbox",
|
|
1076
|
+
"needBigModel": "No ≥200k-context model is set, so I won't run a degraded answer. Copy this multi-step prompt into a big AI chat (e.g. owl-alpha, Claude, GPT), then paste the result back below.",
|
|
1077
|
+
"copyPrompt": "Copy prompt",
|
|
1078
|
+
"pastePlaceholder": "Paste the AI's result here…",
|
|
1079
|
+
"saveResult": "Save result",
|
|
1080
|
+
"followups": "{n} follow-up(s) to handle above",
|
|
1081
|
+
"continueTitle": "Continue",
|
|
1082
|
+
"startNewTitle": "Start something new",
|
|
1083
|
+
"nextStep": "Next step",
|
|
1084
|
+
"allSettled": "all steps settled",
|
|
1085
|
+
"hint": "Tell me a goal — I'll propose a repeatable routine: light, recurring checks I run and track myself (for heavy building, I hand a Builder a Work Brief instead). Approve each step (band-gated).",
|
|
1086
|
+
"placeholder": "What do you want to make progress on?",
|
|
1087
|
+
"propose": "Propose a routine",
|
|
1088
|
+
"proposing": "Designing…",
|
|
1089
|
+
"proposed": "Routine ready — approve the first step",
|
|
1090
|
+
"bad": "Couldn't design a routine from that",
|
|
1091
|
+
"error": "What's next failed",
|
|
1092
|
+
"run": "Run",
|
|
1093
|
+
"approve": "Approve & run",
|
|
1094
|
+
"skip": "Skip (off)",
|
|
1095
|
+
"running": "Running…",
|
|
1096
|
+
"queued": "queued",
|
|
1097
|
+
"startNew": "Start a new routine",
|
|
1098
|
+
"discard": "Discard",
|
|
1099
|
+
"decisionChosen": "Approved this routine step",
|
|
1100
|
+
"routinesTitle": "Routines",
|
|
1101
|
+
"last": "Last",
|
|
1102
|
+
"next": "Next",
|
|
1103
|
+
"allDone": "All steps done",
|
|
1104
|
+
"advance": "Advance",
|
|
1105
|
+
"resultFound": "Found {n} existing resource(s)",
|
|
1106
|
+
"resultFiled": "Filed into {ws}",
|
|
1107
|
+
"resultNoted": "Noted",
|
|
1108
|
+
"resultSurfaced": "Surfaced in the feed",
|
|
1109
|
+
"resultDeferred": "Deferred — not available yet",
|
|
1110
|
+
"resultSkipped": "Skipped (band off)",
|
|
1111
|
+
"resultDelegated": "Delegated to {agent}",
|
|
1112
|
+
"resultDelegateStatus": "{agent}: task {status}",
|
|
1113
|
+
"resultWorkflow": "Started workflow {wf}",
|
|
1114
|
+
"resultWorkflowStatus": "Workflow {wf}: {status}",
|
|
1115
|
+
"delegateWorkflowPick": "Run a workflow…",
|
|
1116
|
+
"delegateWorkflowGo": "Run workflow",
|
|
1117
|
+
"delegateDesignWf": "Design new workflow",
|
|
1118
|
+
"delegatePick": "Pick who runs it…",
|
|
1119
|
+
"delegateSpecialists": "Specialists (node-local)",
|
|
1120
|
+
"delegateBuilders": "Builders (connected AI)",
|
|
1121
|
+
"delegateGo": "Delegate",
|
|
1122
|
+
"delegateNoAgent": "Pick an agent to delegate to first",
|
|
1123
|
+
"delegateNoAgents": "No other agents to delegate to — connect one in Manage → crew.",
|
|
1124
|
+
"checkResult": "Check result",
|
|
1125
|
+
"repeats": "Repeats",
|
|
1126
|
+
"nextRun": "Next run",
|
|
1127
|
+
"cadence": { "none": "Once (no repeat)", "daily": "Daily", "weekly": "Weekly" },
|
|
1128
|
+
"status": {
|
|
1129
|
+
"done": "done",
|
|
1130
|
+
"skipped": "skipped",
|
|
1131
|
+
"deferred": "deferred",
|
|
1132
|
+
"delegated": "delegated",
|
|
1133
|
+
"pending": "pending"
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
"qa": {
|
|
1137
|
+
"title": "Shortcuts",
|
|
1138
|
+
"close": "Close",
|
|
1139
|
+
"hint": "One-tap buttons for this context. Pin the Secretary's suggestions; rename, reorder or remove your own.",
|
|
1140
|
+
"proposedTitle": "Suggested — pin the ones you want",
|
|
1141
|
+
"activeTitle": "Your shortcuts",
|
|
1142
|
+
"empty": "No shortcuts yet — try Suggest shortcuts.",
|
|
1143
|
+
"pin": "Pin",
|
|
1144
|
+
"dismiss": "Dismiss",
|
|
1145
|
+
"rename": "Rename",
|
|
1146
|
+
"remove": "Remove",
|
|
1147
|
+
"save": "Save",
|
|
1148
|
+
"moveUp": "Move up",
|
|
1149
|
+
"moveDown": "Move down",
|
|
1150
|
+
"suggest": "Suggest shortcuts",
|
|
1151
|
+
"suggesting": "Thinking…",
|
|
1152
|
+
"suggested": "Proposed {n} shortcut(s) — pin the ones you want",
|
|
1153
|
+
"suggestEmpty": "No new shortcuts to suggest",
|
|
1154
|
+
"error": "Shortcuts failed",
|
|
1155
|
+
"composeTarget": "focuses",
|
|
1156
|
+
"kind": { "prompt": "message", "compose": "open" }
|
|
1157
|
+
},
|
|
1158
|
+
"items": {
|
|
1159
|
+
"title": "Action items",
|
|
1160
|
+
"dismiss": "Dismiss",
|
|
1161
|
+
"handle": { "advance": "Open", "check-delegate": "Check result" },
|
|
1162
|
+
"text": {
|
|
1163
|
+
"approve": "Approve: {summary}",
|
|
1164
|
+
"ready": "Ready to run: {summary}",
|
|
1165
|
+
"check-delegate": "Check delegated result: {summary}"
|
|
1166
|
+
}
|
|
1167
|
+
},
|
|
795
1168
|
"plan": {
|
|
796
1169
|
"title": "Guided plan",
|
|
797
1170
|
"hint": "Tell me a goal — I'll propose a few steps. Approve them and I'll file the plan and scout what already exists.",
|
|
@@ -1276,7 +1649,7 @@
|
|
|
1276
1649
|
"notifications": "Notifications",
|
|
1277
1650
|
"organisms": "Organisms",
|
|
1278
1651
|
"packages": "Packages",
|
|
1279
|
-
"inbox": "
|
|
1652
|
+
"inbox": "Messages"
|
|
1280
1653
|
},
|
|
1281
1654
|
"offers": {
|
|
1282
1655
|
"title": "What can I do?",
|
|
@@ -2102,8 +2475,10 @@
|
|
|
2102
2475
|
"newSummary": "Awaiting skill bundle install",
|
|
2103
2476
|
"problemSummary": "Delivery issue detected",
|
|
2104
2477
|
"idle": "Idle",
|
|
2105
|
-
"next": "Next"
|
|
2478
|
+
"next": "Next",
|
|
2479
|
+
"internal": "Internal"
|
|
2106
2480
|
},
|
|
2481
|
+
"internalAgentNote": "This is an internal AIMEAT agent (auto-provisioned — Secretary / specialist). It doesn't go through Hello Integration onboarding.",
|
|
2107
2482
|
"sharedTags": "Shared tags",
|
|
2108
2483
|
"lastSeen": "Last seen",
|
|
2109
2484
|
"popOut": "Open in its own window",
|
|
@@ -2587,6 +2962,8 @@
|
|
|
2587
2962
|
"keysCount": "{n} keys",
|
|
2588
2963
|
"groupOther": "other",
|
|
2589
2964
|
"filterType": "Type to filter…",
|
|
2965
|
+
"viewActive": "Active",
|
|
2966
|
+
"viewArchived": "Archived",
|
|
2590
2967
|
"createGroupBtn": "Create a group →",
|
|
2591
2968
|
"invalidJson": "Invalid JSON. Fix it before saving",
|
|
2592
2969
|
"showAllTags": "Show all ({n})",
|
|
@@ -2659,6 +3036,8 @@
|
|
|
2659
3036
|
"tagsPlaceholder": "Add tag and press Enter",
|
|
2660
3037
|
"copyUrls": "Copy URLs",
|
|
2661
3038
|
"urlsCopied": "URLs copied to clipboard",
|
|
3039
|
+
"copyUrl": "Copy URL",
|
|
3040
|
+
"urlCopied": "URL copied to clipboard",
|
|
2662
3041
|
"clearFilter": "Clear",
|
|
2663
3042
|
"noMatch": "No files match selected tags"
|
|
2664
3043
|
},
|
|
@@ -2756,6 +3135,15 @@
|
|
|
2756
3135
|
"launcherDesc": "Manage all your apps in one place. Pin favorites, search by tags, publish to your node.",
|
|
2757
3136
|
"launcherOpen": "Open App Launcher",
|
|
2758
3137
|
"editAccess": "Edit Access Code",
|
|
3138
|
+
"editDetails": "Edit Details",
|
|
3139
|
+
"nameLabel": "App Name",
|
|
3140
|
+
"namePlaceholder": "Display name",
|
|
3141
|
+
"descLabel": "Description",
|
|
3142
|
+
"descPlaceholder": "What does this app do?",
|
|
3143
|
+
"renameHint": "The app link stays the same — only the displayed name and description change.",
|
|
3144
|
+
"nameRequired": "Name cannot be empty",
|
|
3145
|
+
"descRequired": "Description cannot be empty",
|
|
3146
|
+
"detailsUpdated": "App details updated",
|
|
2759
3147
|
"deleteBtn": "Delete",
|
|
2760
3148
|
"confirmDelete": "Delete this app?",
|
|
2761
3149
|
"deleted": "App deleted",
|
|
@@ -3188,20 +3576,22 @@
|
|
|
3188
3576
|
"requestsByStatus": "Requests by Status"
|
|
3189
3577
|
},
|
|
3190
3578
|
"extensions": {
|
|
3191
|
-
"title": "Cortex
|
|
3192
|
-
"desc": "Install and manage
|
|
3193
|
-
"loading": "Loading
|
|
3194
|
-
"empty": "No
|
|
3579
|
+
"title": "Cortex Libraries",
|
|
3580
|
+
"desc": "Install and manage cortex — reusable UI libraries, schemas, prompts, and ontologies your apps build on. (Distinct from Server Extensions above, which run sandboxed server-side code.)",
|
|
3581
|
+
"loading": "Loading cortex...",
|
|
3582
|
+
"empty": "No cortex yet. Create one with AI or add a ready-made one below!",
|
|
3195
3583
|
"install": "+ Add",
|
|
3196
3584
|
"createWithAi": "Create with AI",
|
|
3197
3585
|
"promptCopied": "Prompt copied! Paste it into AI Chat.",
|
|
3198
|
-
"readyExtensions": "Ready-made
|
|
3199
|
-
"installed": "Your
|
|
3200
|
-
"nodeExtensions": "
|
|
3201
|
-
"myExtensions": "My
|
|
3202
|
-
"managedByAdmin": "This
|
|
3586
|
+
"readyExtensions": "Ready-made cortex:",
|
|
3587
|
+
"installed": "Your cortex",
|
|
3588
|
+
"nodeExtensions": "Cortex on this node",
|
|
3589
|
+
"myExtensions": "My cortex",
|
|
3590
|
+
"managedByAdmin": "This cortex is managed by the node administrator.",
|
|
3203
3591
|
"addThis": "Add this",
|
|
3204
|
-
"
|
|
3592
|
+
"libraryBadge": "Library",
|
|
3593
|
+
"serviceBadge": "Service",
|
|
3594
|
+
"heroDesc": "Get more done with less. AI Chat can handle bigger apps when you hand it ready-made cortex building blocks — reusable UI libraries, schemas, and prompts. Use the same cortex across multiple apps.",
|
|
3205
3595
|
"visibility": {
|
|
3206
3596
|
"private": "Private",
|
|
3207
3597
|
"public": "Public"
|
|
@@ -7330,6 +7720,30 @@
|
|
|
7330
7720
|
"deleteConfirmLabel": "Type the workspace name to confirm",
|
|
7331
7721
|
"deleteWorkspace": "Delete workspace",
|
|
7332
7722
|
"workspaceDeleted": "Workspace deleted",
|
|
7723
|
+
"archive": "Archive",
|
|
7724
|
+
"unarchive": "Unarchive",
|
|
7725
|
+
"archived": "archived",
|
|
7726
|
+
"archivedHint": "Archived — read-only, hidden from AI operations",
|
|
7727
|
+
"workspaceArchived": "Workspace archived",
|
|
7728
|
+
"workspaceUnarchived": "Workspace restored",
|
|
7729
|
+
"organismArchived": "Organism archived",
|
|
7730
|
+
"organismUnarchived": "Organism restored",
|
|
7731
|
+
"confirmArchive": "Archive “{name}”? It becomes read-only and is hidden from AI operations until you unarchive it. Its workspaces are archived too.",
|
|
7732
|
+
"confirmUnarchive": "Unarchive “{name}”? It and the workspaces archived with it become active again.",
|
|
7733
|
+
"archiveOrganismTitle": "Archive this organism",
|
|
7734
|
+
"archiveOrganismSub": "Make it read-only and hide it (and its workspaces) from AI operations. Reversible — nothing is deleted.",
|
|
7735
|
+
"unarchiveOrganismTitle": "Unarchive this organism",
|
|
7736
|
+
"unarchiveOrganismSub": "Make it active again. Workspaces archived together with it are restored.",
|
|
7737
|
+
"archivedSection": "Archived ({n})",
|
|
7738
|
+
"archivedWorkspacesSection": "Archived workspaces ({n})",
|
|
7739
|
+
"allArchived": "All your organisms are archived.",
|
|
7740
|
+
"recordArchived": "Archived",
|
|
7741
|
+
"recordUnarchived": "Restored",
|
|
7742
|
+
"archivedView": "Archived view",
|
|
7743
|
+
"archivedViewHint": "Showing archived (read-only) records — restore one with ♻️",
|
|
7744
|
+
"toggleArchivedHint": "View/hide archived records",
|
|
7745
|
+
"viewActive": "Active",
|
|
7746
|
+
"viewArchived": "Archived",
|
|
7333
7747
|
"settings": "Settings",
|
|
7334
7748
|
"wsName": "Name",
|
|
7335
7749
|
"wsSummary": "Summary",
|
|
@@ -7739,7 +8153,10 @@
|
|
|
7739
8153
|
"complete_test_task": "Complete Test Task",
|
|
7740
8154
|
"publish_commands": "Publish Slash Commands",
|
|
7741
8155
|
"publish_config": "Publish Runtime Config",
|
|
7742
|
-
"declare_services": "Declare Services"
|
|
8156
|
+
"declare_services": "Declare Services",
|
|
8157
|
+
"declare_offerings": "Declare Offerings",
|
|
8158
|
+
"make_workflow_compatible": "Make an Offer Workflow-Compatible",
|
|
8159
|
+
"price_offer": "Price an Offer"
|
|
7743
8160
|
},
|
|
7744
8161
|
"stepDescriptions": {
|
|
7745
8162
|
"authenticate": "Agent is authenticated via device auth",
|
|
@@ -8039,6 +8456,8 @@
|
|
|
8039
8456
|
"buildSub": "Paste into Claude, ChatGPT or any AI. It asks about your idea, builds the app and publishes it to your node. Share the link when done.",
|
|
8040
8457
|
"buildCopy": "Copy prompt",
|
|
8041
8458
|
"buildCopied": "Copied ✓",
|
|
8459
|
+
"startTemplate": "Start from a template",
|
|
8460
|
+
"fromScratch": "(none — build from scratch)",
|
|
8042
8461
|
"feedTitle": "Happening on this node",
|
|
8043
8462
|
"feedSub": "Public apps, organisms and agent materials as they are published. Click a row for details.",
|
|
8044
8463
|
"feedTabApps": "Apps",
|
|
@@ -8067,6 +8486,9 @@
|
|
|
8067
8486
|
"buildHeroSub": "Copy one prompt into Claude, ChatGPT or any AI. It builds you a working app on AIMEAT, published live and yours to keep. Then let your agents run it for you, the way AIMEAT Sanomat writes itself every evening.",
|
|
8068
8487
|
"buildHeroCopy": "Copy the build prompt →",
|
|
8069
8488
|
"buildHeroCopied": "Copied ✓. Paste into your AI",
|
|
8489
|
+
"buildHeroAfter": "Paste it into your AI and answer its questions. When your app is ready,",
|
|
8490
|
+
"buildHeroAfter2": "(signing in takes seconds — Google or email).",
|
|
8491
|
+
"openAppsToPublish": "open your apps to add & publish it →",
|
|
8070
8492
|
"wallTitle": "Built by people with their AI. Yours goes here too.",
|
|
8071
8493
|
"wallEmpty": "Be the first: copy the prompt above, build something, and it lands here.",
|
|
8072
8494
|
"wallAnon": "someone",
|