aimeat 1.32.1 → 1.33.2
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 +359 -2
- package/dist/locales/fi.json +359 -2
- package/dist/public/css/views/admin.css +10 -0
- package/dist/public/css/views/agents-detail.css +8 -0
- package/dist/public/css/views/my-company.css +41 -0
- package/dist/public/css/views/profile.css +7 -1
- package/dist/public/css/views/secretary.css +482 -1
- package/dist/public/js/services/admin.js +7 -0
- package/dist/public/js/services/agents.js +18 -3
- package/dist/public/js/services/generator-prompts-build.js +5 -1
- package/dist/public/js/services/organisms.js +16 -0
- package/dist/public/js/services/secretary-helpers.js +197 -0
- package/dist/public/js/services/secretary-policy.js +63 -0
- package/dist/public/js/services/secretary-routing.js +69 -0
- package/dist/public/spa.html +14 -0
- package/dist/public/views/admin/apps-tab.js +208 -0
- package/dist/public/views/admin.js +3 -0
- package/dist/public/views/my-company.js +247 -3
- package/dist/public/views/profile/agents/agent-card.js +15 -0
- package/dist/public/views/profile/apps-tab.js +4 -0
- package/dist/public/views/profile/extensions-tab.js +30 -1
- package/dist/public/views/profile/generator-settings.js +28 -1
- package/dist/public/views/secretary/cards-reach.js +235 -0
- package/dist/public/views/secretary/cards.js +419 -0
- package/dist/public/views/secretary/use-access.js +95 -0
- package/dist/public/views/secretary/use-autonomy.js +92 -0
- package/dist/public/views/secretary/use-create-resource.js +86 -0
- package/dist/public/views/secretary/use-crew.js +173 -0
- package/dist/public/views/secretary/use-guided-plan.js +112 -0
- package/dist/public/views/secretary/use-intake.js +332 -0
- package/dist/public/views/secretary/use-knowledge.js +104 -0
- package/dist/public/views/secretary/use-learning.js +140 -0
- package/dist/public/views/secretary.js +327 -34
- package/dist/src/cli/connect/mcp/tools/agent-management.d.ts +8 -8
- package/dist/src/cli/connect/mcp/tools/agent-management.js +1 -1
- package/dist/src/cli/connect/mcp/tools/agent-management.js.map +1 -1
- package/dist/src/enterprise/loader.d.ts.map +1 -1
- package/dist/src/enterprise/loader.js +2 -0
- package/dist/src/enterprise/loader.js.map +1 -1
- package/dist/src/enterprise/provider.d.ts +67 -1
- package/dist/src/enterprise/provider.d.ts.map +1 -1
- package/dist/src/enterprise/provider.js +17 -0
- package/dist/src/enterprise/provider.js.map +1 -1
- package/dist/src/generated/api-types.d.ts +744 -49
- package/dist/src/generated/api-types.d.ts.map +1 -1
- package/dist/src/generated/prisma-postgres/edge.js +7 -3
- package/dist/src/generated/prisma-postgres/index-browser.js +4 -0
- package/dist/src/generated/prisma-postgres/index.d.ts +117 -1
- package/dist/src/generated/prisma-postgres/index.js +7 -3
- package/dist/src/generated/prisma-postgres/package.json +1 -1
- package/dist/src/generated/prisma-postgres/schema.prisma +16 -12
- package/dist/src/generated/prisma-postgres/wasm.js +7 -3
- package/dist/src/mcp/agent-management.d.ts +2 -0
- package/dist/src/mcp/agent-management.d.ts.map +1 -1
- package/dist/src/mcp/agent-management.js +5 -1
- package/dist/src/mcp/agent-management.js.map +1 -1
- package/dist/src/mcp/catalog/definitions.js +3 -3
- package/dist/src/mcp/catalog/definitions.js.map +1 -1
- package/dist/src/mcp/catalog/scopes.d.ts +46 -0
- package/dist/src/mcp/catalog/scopes.d.ts.map +1 -1
- package/dist/src/mcp/catalog/scopes.js +81 -0
- package/dist/src/mcp/catalog/scopes.js.map +1 -1
- package/dist/src/mcp/catalog/surfaces.js +2 -2
- package/dist/src/mcp/catalog/surfaces.js.map +1 -1
- package/dist/src/routes/agent-directives.d.ts +12 -1
- package/dist/src/routes/agent-directives.d.ts.map +1 -1
- package/dist/src/routes/agent-directives.js +30 -4
- package/dist/src/routes/agent-directives.js.map +1 -1
- package/dist/src/routes/agents.d.ts +3 -0
- package/dist/src/routes/agents.d.ts.map +1 -1
- package/dist/src/routes/agents.js +11 -4
- package/dist/src/routes/agents.js.map +1 -1
- package/dist/src/routes/ai.d.ts +2 -0
- package/dist/src/routes/ai.d.ts.map +1 -1
- package/dist/src/routes/ai.js +15 -2
- package/dist/src/routes/ai.js.map +1 -1
- package/dist/src/routes/apps.d.ts +14 -0
- package/dist/src/routes/apps.d.ts.map +1 -1
- package/dist/src/routes/apps.js +168 -3
- package/dist/src/routes/apps.js.map +1 -1
- package/dist/src/routes/extensions.d.ts +4 -0
- package/dist/src/routes/extensions.d.ts.map +1 -1
- package/dist/src/routes/extensions.js +75 -11
- package/dist/src/routes/extensions.js.map +1 -1
- package/dist/src/routes/libs.d.ts +6 -0
- package/dist/src/routes/libs.d.ts.map +1 -1
- package/dist/src/routes/libs.js +163 -0
- package/dist/src/routes/libs.js.map +1 -1
- package/dist/src/routes/oauth-login.d.ts +16 -6
- package/dist/src/routes/oauth-login.d.ts.map +1 -1
- package/dist/src/routes/oauth-login.js +290 -51
- package/dist/src/routes/oauth-login.js.map +1 -1
- package/dist/src/routes/openrouter.d.ts +2 -0
- package/dist/src/routes/openrouter.d.ts.map +1 -1
- package/dist/src/routes/openrouter.js +8 -1
- package/dist/src/routes/openrouter.js.map +1 -1
- package/dist/src/routes/organism-templates.d.ts +22 -0
- package/dist/src/routes/organism-templates.d.ts.map +1 -0
- package/dist/src/routes/organism-templates.js +110 -0
- package/dist/src/routes/organism-templates.js.map +1 -0
- package/dist/src/routes/schedules.d.ts +2 -0
- package/dist/src/routes/schedules.d.ts.map +1 -1
- package/dist/src/routes/schedules.js +3 -1
- package/dist/src/routes/schedules.js.map +1 -1
- package/dist/src/routes/specialists.d.ts +28 -0
- package/dist/src/routes/specialists.d.ts.map +1 -0
- package/dist/src/routes/specialists.js +227 -0
- package/dist/src/routes/specialists.js.map +1 -0
- package/dist/src/routes/subdomains.d.ts +3 -0
- package/dist/src/routes/subdomains.d.ts.map +1 -1
- package/dist/src/routes/subdomains.js +12 -2
- package/dist/src/routes/subdomains.js.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +11 -3
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/services/ai-completion.d.ts +8 -0
- package/dist/src/services/ai-completion.d.ts.map +1 -1
- package/dist/src/services/ai-completion.js +7 -1
- package/dist/src/services/ai-completion.js.map +1 -1
- package/dist/src/services/discovery/setup.d.ts +2 -1
- package/dist/src/services/discovery/setup.d.ts.map +1 -1
- package/dist/src/services/discovery/setup.js +2 -0
- package/dist/src/services/discovery/setup.js.map +1 -1
- package/dist/src/services/discovery/sources/memory-source.d.ts +2 -0
- package/dist/src/services/discovery/sources/memory-source.d.ts.map +1 -1
- package/dist/src/services/discovery/sources/memory-source.js +8 -1
- package/dist/src/services/discovery/sources/memory-source.js.map +1 -1
- package/dist/src/services/discovery/sources/template-source.d.ts +17 -0
- package/dist/src/services/discovery/sources/template-source.d.ts.map +1 -0
- package/dist/src/services/discovery/sources/template-source.js +51 -0
- package/dist/src/services/discovery/sources/template-source.js.map +1 -0
- package/dist/src/services/discovery/types.d.ts +1 -1
- package/dist/src/services/discovery/types.d.ts.map +1 -1
- package/dist/src/services/extension-secrets.d.ts +63 -0
- package/dist/src/services/extension-secrets.d.ts.map +1 -0
- package/dist/src/services/extension-secrets.js +122 -0
- package/dist/src/services/extension-secrets.js.map +1 -0
- package/dist/src/services/handbooks/appdev.d.ts +1 -1
- package/dist/src/services/handbooks/appdev.d.ts.map +1 -1
- package/dist/src/services/handbooks/appdev.js +1 -1
- package/dist/src/services/openrouter.d.ts +1 -1
- package/dist/src/services/openrouter.d.ts.map +1 -1
- package/dist/src/services/openrouter.js +18 -2
- package/dist/src/services/openrouter.js.map +1 -1
- package/dist/src/services/organism-export.d.ts +2 -0
- package/dist/src/services/organism-export.d.ts.map +1 -1
- package/dist/src/services/organism-export.js +24 -5
- package/dist/src/services/organism-export.js.map +1 -1
- package/dist/src/services/organism-import.d.ts +11 -0
- package/dist/src/services/organism-import.d.ts.map +1 -1
- package/dist/src/services/organism-import.js +16 -1
- package/dist/src/services/organism-import.js.map +1 -1
- package/dist/src/services/organism-template.d.ts +160 -0
- package/dist/src/services/organism-template.d.ts.map +1 -0
- package/dist/src/services/organism-template.js +202 -0
- package/dist/src/services/organism-template.js.map +1 -0
- package/dist/src/services/scheduler.d.ts +45 -0
- package/dist/src/services/scheduler.d.ts.map +1 -1
- package/dist/src/services/scheduler.js +358 -5
- package/dist/src/services/scheduler.js.map +1 -1
- package/dist/src/services/secretary-tick.d.ts +127 -0
- package/dist/src/services/secretary-tick.d.ts.map +1 -0
- package/dist/src/services/secretary-tick.js +169 -0
- package/dist/src/services/secretary-tick.js.map +1 -0
- package/dist/src/services/secretary.d.ts +98 -2
- package/dist/src/services/secretary.d.ts.map +1 -1
- package/dist/src/services/secretary.js +130 -12
- package/dist/src/services/secretary.js.map +1 -1
- package/dist/src/services/specialist-policy.d.ts +39 -0
- package/dist/src/services/specialist-policy.d.ts.map +1 -0
- package/dist/src/services/specialist-policy.js +59 -0
- package/dist/src/services/specialist-policy.js.map +1 -0
- package/dist/src/services/specialist.d.ts +77 -0
- package/dist/src/services/specialist.d.ts.map +1 -0
- package/dist/src/services/specialist.js +137 -0
- package/dist/src/services/specialist.js.map +1 -0
- package/dist/src/services/structure-overview.d.ts +3 -0
- package/dist/src/services/structure-overview.d.ts.map +1 -1
- package/dist/src/services/structure-overview.js +20 -10
- package/dist/src/services/structure-overview.js.map +1 -1
- package/dist/src/services/system-agent.d.ts +39 -0
- package/dist/src/services/system-agent.d.ts.map +1 -0
- package/dist/src/services/system-agent.js +43 -0
- package/dist/src/services/system-agent.js.map +1 -0
- package/dist/src/storage/interface.d.ts +7 -2
- 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 +5 -0
- package/dist/src/storage/providers/mongodb/index.d.ts.map +1 -1
- package/dist/src/storage/providers/mongodb/index.js +31 -4
- package/dist/src/storage/providers/mongodb/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/index.d.ts +5 -0
- package/dist/src/storage/providers/sqlite/index.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/index.js +26 -6
- package/dist/src/storage/providers/sqlite/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.js +8 -0
- package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
- package/dist/src/storage/repositories/app.repository.d.ts +17 -0
- package/dist/src/storage/repositories/app.repository.d.ts.map +1 -1
- package/dist/src/utils/app-badge.d.ts +26 -0
- package/dist/src/utils/app-badge.d.ts.map +1 -0
- package/dist/src/utils/app-badge.js +56 -0
- package/dist/src/utils/app-badge.js.map +1 -0
- package/dist/static/app-catalog.html +315 -71
- package/package.json +1 -1
- package/prisma/schema.postgres.prisma +4 -0
- package/prisma/schema.prisma +4 -0
package/dist/locales/en.json
CHANGED
|
@@ -554,7 +554,261 @@
|
|
|
554
554
|
"notReady": "Your Secretary isn't set up yet. Configure OpenRouter in your profile settings to enable it.",
|
|
555
555
|
"identity": "Identity",
|
|
556
556
|
"scopes": "Permissions",
|
|
557
|
-
"soon": "Chat, schedule, and decisions are coming soon."
|
|
557
|
+
"soon": "Chat, schedule, and decisions are coming soon.",
|
|
558
|
+
"hireTitle": "Set up your Secretary",
|
|
559
|
+
"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.",
|
|
560
|
+
"hireStep1": "Copy this prompt into your AI chat (Claude, ChatGPT, …) and answer its questions.",
|
|
561
|
+
"hireStep2": "Paste the AI's final result here and apply it.",
|
|
562
|
+
"copyPrompt": "Copy setup prompt",
|
|
563
|
+
"copied": "Copied",
|
|
564
|
+
"pastePlaceholder": "Paste the JSON your AI produced here…",
|
|
565
|
+
"apply": "Set up my Secretary",
|
|
566
|
+
"applying": "Setting up…",
|
|
567
|
+
"hireDone": "Your Secretary is set up.",
|
|
568
|
+
"hireError": "Couldn't set up the Secretary",
|
|
569
|
+
"hireBadShape": "The pasted result is missing required fields (brain.purpose, organism.name, workspaces).",
|
|
570
|
+
"hiredStatus": "Secretary is set up",
|
|
571
|
+
"brain": "Brain",
|
|
572
|
+
"selfOrganism": "Your space",
|
|
573
|
+
"optionA": "Option A — use your own AI chat",
|
|
574
|
+
"optionB": "Option B — set it up here (uses your OpenRouter key)",
|
|
575
|
+
"needsPlaceholder": "Describe in a few words what you'd like help with…",
|
|
576
|
+
"generate": "Generate with my AI",
|
|
577
|
+
"generating": "Generating…",
|
|
578
|
+
"inappDone": "Draft ready below — review it, then set up.",
|
|
579
|
+
"inappError": "Couldn't generate",
|
|
580
|
+
"inappEmpty": "The AI returned nothing.",
|
|
581
|
+
"howIWork": "How I work",
|
|
582
|
+
"stopSpending": "Stop spending",
|
|
583
|
+
"stopSpendingHint": "Pause everything that costs morsels or acts on its own. The Secretary can still think, draft, and message you.",
|
|
584
|
+
"dailyBudget": "Daily morsel budget",
|
|
585
|
+
"dailyBudgetHint": "Cap on what autonomous actions may spend per day.",
|
|
586
|
+
"noLimit": "No limit",
|
|
587
|
+
"bandsNote": "These set what the Secretary may do on its own. Each takes effect as that capability ships.",
|
|
588
|
+
"band": { "act": "Act", "draft": "Draft", "ask": "Ask", "off": "Off" },
|
|
589
|
+
"locked": "always on",
|
|
590
|
+
"enterprise": "Enterprise",
|
|
591
|
+
"capCosts": "costs / outbound",
|
|
592
|
+
"cap": {
|
|
593
|
+
"discover": "Discover what already exists",
|
|
594
|
+
"file_intake": "File notes & documents",
|
|
595
|
+
"briefing": "Daily / weekly briefing",
|
|
596
|
+
"reminders": "Reminders & nudges",
|
|
597
|
+
"curate_knowledge": "Curate my knowledge",
|
|
598
|
+
"draft_replies": "Draft replies",
|
|
599
|
+
"resource_invoke": "Use a found agent or service",
|
|
600
|
+
"delegate": "Delegate to my other agents",
|
|
601
|
+
"third_party_message": "Message someone else",
|
|
602
|
+
"create_resource": "Create something that's missing",
|
|
603
|
+
"spend": "Spend morsels"
|
|
604
|
+
},
|
|
605
|
+
"history": "Brain history",
|
|
606
|
+
"restore": "Restore",
|
|
607
|
+
"restored": "Restored an earlier brain.",
|
|
608
|
+
"rerun": "Re-run setup",
|
|
609
|
+
"cancel": "Cancel",
|
|
610
|
+
"addContext": "Add a context",
|
|
611
|
+
"addContextTitle": "Add a context",
|
|
612
|
+
"applyEdit": "Update this context",
|
|
613
|
+
"chatTitle": "Chat",
|
|
614
|
+
"chatEmpty": "Ask your Secretary anything in this context.",
|
|
615
|
+
"chatPlaceholder": "Message your Secretary…",
|
|
616
|
+
"chatSend": "Send",
|
|
617
|
+
"chatSending": "…",
|
|
618
|
+
"chatError": "Couldn't reach your Secretary",
|
|
619
|
+
"findTitle": "Find what already exists",
|
|
620
|
+
"findHint": "Before building anything, your Secretary scouts the network — useful agents, services, and other companies' offerings.",
|
|
621
|
+
"findPlaceholder": "What are you looking for? (leave blank to browse)",
|
|
622
|
+
"findScopePublic": "Across the network",
|
|
623
|
+
"findScopeMine": "My own",
|
|
624
|
+
"findSearch": "Find",
|
|
625
|
+
"findSearching": "Finding…",
|
|
626
|
+
"findEmpty": "Nothing found — you may be the first. Your Secretary could help you create it.",
|
|
627
|
+
"findError": "Search failed",
|
|
628
|
+
"routeSuggest": "This sounds like it belongs to",
|
|
629
|
+
"routeSwitch": "Switch",
|
|
630
|
+
"routeBelongs": "This looks like it belongs to",
|
|
631
|
+
"routeFileThere": "File it there",
|
|
632
|
+
"routeUnsure": "Not sure which context this fits — save it here, or let me ask you in your inbox.",
|
|
633
|
+
"routedTo": "Routed to",
|
|
634
|
+
"attach": "Attach",
|
|
635
|
+
"attachHint": "Attach a document or image — I'll file it into the right workspace. Images are summarized so you can find them by content.",
|
|
636
|
+
"attaching": "Filing your attachment…",
|
|
637
|
+
"attachFiled": "Filed into",
|
|
638
|
+
"attachError": "Couldn't file the attachment",
|
|
639
|
+
"attachVisionFailed": "Couldn't read the image, filing it anyway",
|
|
640
|
+
"attachVisionPrompt": "Describe this image for filing. Give a short title line, then 1–3 sentences covering what it shows and any text, names, dates, or amounts visible. Reply in the user's language.",
|
|
641
|
+
"attachVisionSystem": "You help a personal assistant file an uploaded image. Be concise and factual; do not invent details you cannot see.",
|
|
642
|
+
"decisionAutoRationale": "Chosen by the owner.",
|
|
643
|
+
"decisionAutoExpectedFile": "Filed where it can be found and acted on later.",
|
|
644
|
+
"create": {
|
|
645
|
+
"title": "Create what's missing",
|
|
646
|
+
"emptyHint": "Nothing turned up. Your Secretary can scaffold a capability for this so it exists going forward.",
|
|
647
|
+
"start": "Draft a capability",
|
|
648
|
+
"reviewHint": "Review the draft, then approve to create it (kept private to you).",
|
|
649
|
+
"name": "Capability name",
|
|
650
|
+
"summary": "What it does",
|
|
651
|
+
"whenToUse": "When to use it",
|
|
652
|
+
"approve": "Approve & create",
|
|
653
|
+
"done": "Capability created",
|
|
654
|
+
"error": "Couldn't create the capability",
|
|
655
|
+
"summaryPrefix": "A capability to help with:",
|
|
656
|
+
"whenPrefix": "Use this when you need:",
|
|
657
|
+
"disabled": "Capability creation is disabled on this node — ask your operator to enable it."
|
|
658
|
+
},
|
|
659
|
+
"knowledge": {
|
|
660
|
+
"title": "Curate my knowledge",
|
|
661
|
+
"add": "Add knowledge",
|
|
662
|
+
"hint": "Promote a refined note or decision into your shareable knowledge base. You approve before anything is saved.",
|
|
663
|
+
"titlePlaceholder": "Title",
|
|
664
|
+
"bodyPlaceholder": "The knowledge to capture…",
|
|
665
|
+
"shareCatalog": "Also list it in the public catalogue",
|
|
666
|
+
"contribute": "Approve & contribute",
|
|
667
|
+
"done": "Added to your knowledge base",
|
|
668
|
+
"error": "Couldn't contribute the knowledge",
|
|
669
|
+
"synthDesc": "Curated by your Secretary",
|
|
670
|
+
"linkTitle": "Link knowledge",
|
|
671
|
+
"linkAdd": "Add a link",
|
|
672
|
+
"linkSource": "From package…",
|
|
673
|
+
"linkTarget": "To package…",
|
|
674
|
+
"linkDesc": "How are they related?",
|
|
675
|
+
"linkApprove": "Approve & link",
|
|
676
|
+
"linked": "Knowledge linked.",
|
|
677
|
+
"linkError": "Couldn't link the packages"
|
|
678
|
+
},
|
|
679
|
+
"access": {
|
|
680
|
+
"title": "Manage access",
|
|
681
|
+
"hint": "Help managing your own sharing groups and consent grants. Changes apply only when you approve them.",
|
|
682
|
+
"grantsTitle": "Consent grants",
|
|
683
|
+
"propose": "Propose a grant",
|
|
684
|
+
"dataPattern": "Data pattern (e.g. organism.abc.* )",
|
|
685
|
+
"recipient": "Recipient (GAII, ghii:, organism., node:, domain:, or *)",
|
|
686
|
+
"purpose": "Purpose",
|
|
687
|
+
"approveGrant": "Approve & grant",
|
|
688
|
+
"noGrants": "No active consent grants.",
|
|
689
|
+
"revoke": "Revoke",
|
|
690
|
+
"granted": "Consent granted.",
|
|
691
|
+
"revoked": "Consent revoked.",
|
|
692
|
+
"error": "Access change failed",
|
|
693
|
+
"groupsTitle": "Sharing groups",
|
|
694
|
+
"newGroup": "New group",
|
|
695
|
+
"groupName": "Group name",
|
|
696
|
+
"createGroup": "Create",
|
|
697
|
+
"noGroups": "No sharing groups yet.",
|
|
698
|
+
"members": "members",
|
|
699
|
+
"groupCreated": "Sharing group created."
|
|
700
|
+
},
|
|
701
|
+
"crew": {
|
|
702
|
+
"title": "Set up my crew",
|
|
703
|
+
"hint": "Connect and configure your other agents — approve a pending request, then set its mode and tags.",
|
|
704
|
+
"pendingTitle": "Pending connection requests",
|
|
705
|
+
"noPending": "No pending requests.",
|
|
706
|
+
"unnamed": "Unnamed agent",
|
|
707
|
+
"expiresIn": "expires in",
|
|
708
|
+
"approve": "Approve",
|
|
709
|
+
"deny": "Deny",
|
|
710
|
+
"agentsTitle": "Your other agents",
|
|
711
|
+
"noAgents": "No other agents connected yet.",
|
|
712
|
+
"tagsPlaceholder": "tags (comma-separated), Enter to save",
|
|
713
|
+
"approved": "Agent approved.",
|
|
714
|
+
"denied": "Request denied.",
|
|
715
|
+
"approveError": "Couldn't approve the request",
|
|
716
|
+
"configured": "Agent updated.",
|
|
717
|
+
"configError": "Couldn't update the agent",
|
|
718
|
+
"addSpecTitle": "Add a specialist",
|
|
719
|
+
"addSpecHint": "Provision a job-role specialist. It runs on a safe, least-privilege default — some roles can request extra capabilities, which you approve.",
|
|
720
|
+
"specName": "name",
|
|
721
|
+
"specCreate": "Create",
|
|
722
|
+
"specCreated": "Specialist created.",
|
|
723
|
+
"specError": "Couldn't create the specialist",
|
|
724
|
+
"consentTitle": "Approve extra capabilities for",
|
|
725
|
+
"consentNote": "These go beyond the safe default. Approve only what this specialist needs — you can change this later.",
|
|
726
|
+
"consentSkip": "Keep safe default",
|
|
727
|
+
"consentGrant": "Grant selected",
|
|
728
|
+
"extrasGranted": "Extra capabilities granted."
|
|
729
|
+
},
|
|
730
|
+
"noteTitle": "Save a note to my space",
|
|
731
|
+
"noteHint": "Write anything down — your Secretary files it into the right workspace. You confirm where.",
|
|
732
|
+
"notePlaceholder": "Jot something down…",
|
|
733
|
+
"noteInto": "Into",
|
|
734
|
+
"noteSave": "Save",
|
|
735
|
+
"noteSaving": "Saving…",
|
|
736
|
+
"noteSaved": "Saved to",
|
|
737
|
+
"noteError": "Couldn't save the note",
|
|
738
|
+
"askInInbox": "Ask me in inbox",
|
|
739
|
+
"askInInboxHint": "Let the Secretary ask you where to file this — answer in your inbox, then apply it here.",
|
|
740
|
+
"askWhereContent": "Where should I file this note?",
|
|
741
|
+
"askWhereQ": "Which workspace should this go into?",
|
|
742
|
+
"askedInInbox": "Asked you in your inbox.",
|
|
743
|
+
"decisionsTitle": "Decisions awaiting you",
|
|
744
|
+
"decisionApply": "Apply",
|
|
745
|
+
"decisionAwaiting": "Awaiting your answer in the inbox…",
|
|
746
|
+
"feed": {
|
|
747
|
+
"title": "What I've done",
|
|
748
|
+
"empty": "Nothing yet. Enable the daily check-in below and I'll start keeping you posted here."
|
|
749
|
+
},
|
|
750
|
+
"learn": {
|
|
751
|
+
"goalsTitle": "Goals",
|
|
752
|
+
"goalsEmpty": "No goals yet. Add what you're aiming for and I'll work toward it.",
|
|
753
|
+
"addGoal": "Add goal",
|
|
754
|
+
"goalTitle": "What are you aiming for?",
|
|
755
|
+
"goalWhy": "Why does it matter? (optional)",
|
|
756
|
+
"saveGoal": "Save goal",
|
|
757
|
+
"done": "Done",
|
|
758
|
+
"reopen": "Reopen",
|
|
759
|
+
"decisionsTitle": "Decision log",
|
|
760
|
+
"decisionsEmpty": "No decisions logged. Log a choice with an expected outcome and I'll review how it turned out.",
|
|
761
|
+
"logDecision": "Log a decision",
|
|
762
|
+
"decision": "What did you decide?",
|
|
763
|
+
"options": "Options considered (one per line)",
|
|
764
|
+
"chosen": "Chosen option",
|
|
765
|
+
"rationale": "Why this one?",
|
|
766
|
+
"expected": "Expected outcome",
|
|
767
|
+
"goalRef": "Goal",
|
|
768
|
+
"revisitIn": "Review in (days)",
|
|
769
|
+
"revisit": "Review on",
|
|
770
|
+
"saveDecision": "Log decision",
|
|
771
|
+
"reviewNow": "Review now",
|
|
772
|
+
"enableFirst": "Enable the daily check-in first — the review runs on each check-in.",
|
|
773
|
+
"error": "Something went wrong"
|
|
774
|
+
},
|
|
775
|
+
"auto": {
|
|
776
|
+
"title": "Autonomous check-in",
|
|
777
|
+
"hint": "Let me check in on my own on a schedule and post a short briefing here — using your OpenRouter key. Stop-spending always pauses it.",
|
|
778
|
+
"enable": "Enable daily check-in",
|
|
779
|
+
"enabled": "Daily check-in enabled.",
|
|
780
|
+
"scheduleName": "Secretary daily check-in",
|
|
781
|
+
"nextRun": "Next run",
|
|
782
|
+
"paused": "paused",
|
|
783
|
+
"pause": "Pause",
|
|
784
|
+
"resume": "Resume",
|
|
785
|
+
"runNow": "Run now",
|
|
786
|
+
"running": "Running…",
|
|
787
|
+
"ran": "Check-in done — see the feed.",
|
|
788
|
+
"skipped": "Skipped",
|
|
789
|
+
"budgetLeft": "Budget left today",
|
|
790
|
+
"error": "Couldn't update the check-in"
|
|
791
|
+
},
|
|
792
|
+
"reliability": "Reliability",
|
|
793
|
+
"reliabilityBuilding": "building…",
|
|
794
|
+
"reliabilityHint": "Average score of the Secretary's reviewed decisions — its own track record, not its marketplace trust.",
|
|
795
|
+
"plan": {
|
|
796
|
+
"title": "Guided plan",
|
|
797
|
+
"hint": "Tell me a goal — I'll propose a few steps. Approve them and I'll file the plan and scout what already exists.",
|
|
798
|
+
"placeholder": "What do you want to get done?",
|
|
799
|
+
"go": "Plan it",
|
|
800
|
+
"planning": "Planning…",
|
|
801
|
+
"approve": "Approve & run",
|
|
802
|
+
"running": "Running…",
|
|
803
|
+
"ran": "Plan carried out",
|
|
804
|
+
"filed": "Filed the plan into",
|
|
805
|
+
"found": "Existing resources found:",
|
|
806
|
+
"new": "New plan",
|
|
807
|
+
"bad": "The AI didn't return a usable plan.",
|
|
808
|
+
"error": "Couldn't make the plan",
|
|
809
|
+
"decisionChosen": "Approved & ran this plan",
|
|
810
|
+
"decisionExpected": "The plan makes real progress on the goal."
|
|
811
|
+
}
|
|
558
812
|
},
|
|
559
813
|
"companies": {
|
|
560
814
|
"title": "Companies",
|
|
@@ -686,6 +940,55 @@
|
|
|
686
940
|
"listedHint": "When on, your company — with its published services and pricing — appears in the corp catalogue. Turn off to stay private.",
|
|
687
941
|
"unlistedBadge": "not in directory",
|
|
688
942
|
"tabPortfolio": "Portfolio",
|
|
943
|
+
"tabSecretary": "Secretary",
|
|
944
|
+
"tabGovernance": "Governance",
|
|
945
|
+
"tabModel": "Company model",
|
|
946
|
+
"modelLoading": "Loading the company model…",
|
|
947
|
+
"modelIntro": "The real-world organisation the company Secretary works with — departments, roles, reporting lines, and people (most are not AIMEAT users). Describe your company and let AI shape the structure, then review and apply.",
|
|
948
|
+
"modelDescPlaceholder": "Describe your company: what it does, its departments, key roles and who reports to whom…",
|
|
949
|
+
"modelGenerate": "Generate model",
|
|
950
|
+
"modelGenerating": "Generating…",
|
|
951
|
+
"modelCopyPrompt": "Copy prompt",
|
|
952
|
+
"modelPaste": "Paste JSON",
|
|
953
|
+
"modelPastePlaceholder": "Paste the JSON your AI chat returned…",
|
|
954
|
+
"modelReview": "Review",
|
|
955
|
+
"modelDraft": "Draft — review before applying",
|
|
956
|
+
"modelApply": "Apply model",
|
|
957
|
+
"modelDiscard": "Discard",
|
|
958
|
+
"modelApplied": "Company model saved ✓",
|
|
959
|
+
"modelCopied": "Prompt copied ✓",
|
|
960
|
+
"modelParseErr": "Couldn't read a model from that — expected a JSON object.",
|
|
961
|
+
"modelEmpty": "No company model yet. Describe your company above to build one.",
|
|
962
|
+
"modelDepartments": "Departments",
|
|
963
|
+
"modelRoles": "Roles",
|
|
964
|
+
"modelPeople": "People",
|
|
965
|
+
"modelReporting": "Reporting lines",
|
|
966
|
+
"govLoading": "Loading financials…",
|
|
967
|
+
"govIntro": "Cost & ROI in financial terms — the company's transaction ledger, not raw tokens. Revenue, commission income, and cost-per-task per agent.",
|
|
968
|
+
"govRevenue": "Revenue",
|
|
969
|
+
"govOrders": "Orders",
|
|
970
|
+
"govAvg": "Avg / task",
|
|
971
|
+
"govCommissionIncome": "Commission income",
|
|
972
|
+
"govByAgent": "By agent",
|
|
973
|
+
"govNoActivity": "No orders yet — financials populate as the company's agents fulfil orders.",
|
|
974
|
+
"govAgent": "Agent",
|
|
975
|
+
"govTasks": "Tasks",
|
|
976
|
+
"govRevenueShort": "Revenue",
|
|
977
|
+
"govAvgShort": "Avg/task",
|
|
978
|
+
"govPayout": "Member payout",
|
|
979
|
+
"govWallet": "Org wallet",
|
|
980
|
+
"govCommission": "Commission",
|
|
981
|
+
"govFee": "Platform fee",
|
|
982
|
+
"govRoiNote": "ROI attribution ties to the Secretary's decision log (decisions scored against expected outcomes = cost-per-outcome); per-department breakdown and token-level cost land with the company model.",
|
|
983
|
+
"secLoading": "Loading the company Secretary…",
|
|
984
|
+
"secIntro": "Enable a company Secretary for this organization. It runs on the Enterprise edition with a managed, read-only brain and the company-admin scopes — coordinating the company's agents, preparing invoicing/compliance, and giving leadership cost & ROI visibility.",
|
|
985
|
+
"secEnable": "Enable company Secretary",
|
|
986
|
+
"secEnabling": "Enabling…",
|
|
987
|
+
"secTitle": "Company Secretary",
|
|
988
|
+
"secBrain": "Brain",
|
|
989
|
+
"secLocked": "Locked (managed by Enterprise)",
|
|
990
|
+
"secCaps": "Company-admin capabilities",
|
|
991
|
+
"secScopes": "Granted scopes",
|
|
689
992
|
"pfIntro": "Build a public portfolio page for your company. Pick what to include, generate a prompt, paste it into your AI chat, then paste the HTML it returns back here and publish.",
|
|
690
993
|
"pfLive": "Portfolio is live ✓",
|
|
691
994
|
"pfVisit": "Visit",
|
|
@@ -1269,6 +1572,7 @@
|
|
|
1269
1572
|
},
|
|
1270
1573
|
"agents": {
|
|
1271
1574
|
"title": "Your Agents",
|
|
1575
|
+
"specialistBadge": "Specialist",
|
|
1272
1576
|
"active": {
|
|
1273
1577
|
"title": "Running now",
|
|
1274
1578
|
"empty": "No tasks running right now.",
|
|
@@ -2466,7 +2770,9 @@
|
|
|
2466
2770
|
"parkedBadge": "Parked",
|
|
2467
2771
|
"parkedHint": "Only you can see and use this — hidden from the public catalogue.",
|
|
2468
2772
|
"parked": "App parked",
|
|
2469
|
-
"unparked": "App published"
|
|
2773
|
+
"unparked": "App published",
|
|
2774
|
+
"operatorHiddenBadge": "Moderated by operator: hidden",
|
|
2775
|
+
"operatorHiddenHint": "An operator has hidden this app from public view. Only you can still see it. Contact the operator to appeal."
|
|
2470
2776
|
},
|
|
2471
2777
|
"v8ext": {
|
|
2472
2778
|
"title": "Server Extensions",
|
|
@@ -2480,6 +2786,7 @@
|
|
|
2480
2786
|
"instancesTitle": "Instances",
|
|
2481
2787
|
"noInstances": "No instances yet. Create one to use this extension.",
|
|
2482
2788
|
"instanceIdPlaceholder": "instance-id (lowercase, hyphens ok)",
|
|
2789
|
+
"secretField": "secret — encrypted at rest",
|
|
2483
2790
|
"createInstance": "Create Instance",
|
|
2484
2791
|
"deleteInstance": "Delete",
|
|
2485
2792
|
"copyId": "Copy ID",
|
|
@@ -3205,6 +3512,9 @@
|
|
|
3205
3512
|
"reasoningModel": "Reasoning Model (blueprints, skeletons, planning)",
|
|
3206
3513
|
"executionModel": "Execution Model (code, tests, assembly)",
|
|
3207
3514
|
"modelSelect": "Select model",
|
|
3515
|
+
"visionModel": "Vision model (for images)",
|
|
3516
|
+
"visionModelNone": "None (don't read images)",
|
|
3517
|
+
"visionModel_hint": "A vision-capable model (e.g. qwen-2.5-VL) used to read images you attach in the Secretary. Your default model is often text-only.",
|
|
3208
3518
|
"autoRetry": "Auto-retry on validation error",
|
|
3209
3519
|
"maxRetries": "Max retries",
|
|
3210
3520
|
"temperature": "Temperature",
|
|
@@ -3487,6 +3797,9 @@
|
|
|
3487
3797
|
"reasoningModel": "Reasoning Model (blueprints, skeletons, planning)",
|
|
3488
3798
|
"executionModel": "Execution Model (code, tests, assembly)",
|
|
3489
3799
|
"modelSelect": "Select model",
|
|
3800
|
+
"visionModel": "Vision model (for images)",
|
|
3801
|
+
"visionModelNone": "None (don't read images)",
|
|
3802
|
+
"visionModel_hint": "A vision-capable model (e.g. qwen-2.5-VL) used to read images you attach in the Secretary. Your default model is often text-only.",
|
|
3490
3803
|
"autoRetry": "Auto-retry on validation error",
|
|
3491
3804
|
"maxRetries": "Max retries",
|
|
3492
3805
|
"temperature": "Temperature",
|
|
@@ -4275,6 +4588,18 @@
|
|
|
4275
4588
|
"emailLabel": "Email",
|
|
4276
4589
|
"sendUsername": "Send My Username",
|
|
4277
4590
|
"usernameSent": "If an account with that email exists, your username was sent.",
|
|
4591
|
+
"signupTitle": "Choose your username",
|
|
4592
|
+
"signupIntro": "You're signing in with Google for the first time. Pick the username for your AIMEAT account.",
|
|
4593
|
+
"signupEmailNote": "Signing up as {email}",
|
|
4594
|
+
"signupUsernameLabel": "Username",
|
|
4595
|
+
"signupSuggestedHint": "We suggested one from your Google account — change it to anything you like.",
|
|
4596
|
+
"signupPermanentWarning": "⚠️ This username is permanent. It identifies you across AIMEAT and cannot be changed later — the only way to change it is to delete your account and create a new one.",
|
|
4597
|
+
"signupAvailable": "✓ Available",
|
|
4598
|
+
"signupTaken": "That username is already taken — pick another.",
|
|
4599
|
+
"signupInvalid": "Username must be 3–64 characters: lowercase letters, numbers and hyphens.",
|
|
4600
|
+
"signupCreateBtn": "Create my account",
|
|
4601
|
+
"signupCreating": "Creating account...",
|
|
4602
|
+
"signupCancelBtn": "Cancel",
|
|
4278
4603
|
"whyTitle": "✨ What do you get?",
|
|
4279
4604
|
"whyGhii": "Your own digital identity. Only you control it",
|
|
4280
4605
|
"whyPrivacy": "Your own private memory space, protected by your password",
|
|
@@ -7512,6 +7837,38 @@
|
|
|
7512
7837
|
"deleteTitle": "Delete subdomain mapping",
|
|
7513
7838
|
"deleteConfirm": "This removes the mapping and the subdomain stops serving immediately. Type the subdomain to confirm:"
|
|
7514
7839
|
},
|
|
7840
|
+
"apps": {
|
|
7841
|
+
"title": "Applications",
|
|
7842
|
+
"desc": "Every app published on this node. Hide an app to remove it from all public surfaces (catalogue, gallery, search, and direct download). The owner still sees it with a \"moderated by operator: hidden\" badge but cannot unhide it — only an operator can.",
|
|
7843
|
+
"searchPlaceholder": "Search by name, owner, or filename…",
|
|
7844
|
+
"hiddenOnly": "Hidden only",
|
|
7845
|
+
"hiddenChip": "hidden",
|
|
7846
|
+
"empty": "No applications match.",
|
|
7847
|
+
"colApp": "App",
|
|
7848
|
+
"colOwner": "Owner",
|
|
7849
|
+
"colSize": "Size",
|
|
7850
|
+
"colDownloads": "Downloads",
|
|
7851
|
+
"colStatus": "Status",
|
|
7852
|
+
"statusHidden": "Hidden by operator",
|
|
7853
|
+
"statusParked": "Parked",
|
|
7854
|
+
"statusLive": "Live",
|
|
7855
|
+
"byAt": "by {by} · {at}",
|
|
7856
|
+
"hide": "Hide",
|
|
7857
|
+
"restore": "Restore",
|
|
7858
|
+
"hiddenOk": "App hidden from public view.",
|
|
7859
|
+
"restoredOk": "App restored to public view.",
|
|
7860
|
+
"hideTitle": "Hide application",
|
|
7861
|
+
"hideConfirm": "Hide",
|
|
7862
|
+
"hideExplain": "This removes the app from the public catalogue, gallery, search, and direct download. The owner keeps a copy with a \"moderated by operator: hidden\" badge but cannot unhide it.",
|
|
7863
|
+
"reasonLabel": "Reason (shown to the owner, optional)",
|
|
7864
|
+
"reasonPlaceholder": "e.g. Anonymous / policy violation",
|
|
7865
|
+
"delete": "Delete",
|
|
7866
|
+
"deletedOk": "App permanently deleted.",
|
|
7867
|
+
"deleteTitle": "Delete application",
|
|
7868
|
+
"deleteConfirm": "Permanently delete",
|
|
7869
|
+
"deleteWarn": "⚠️ This removes the app and all its versions from the node entirely. This cannot be undone — the owner loses it too. To just hide it, use Hide instead.",
|
|
7870
|
+
"deleteTypeLabel": "Type the filename to confirm: {filename}"
|
|
7871
|
+
},
|
|
7515
7872
|
"security": {
|
|
7516
7873
|
"title": "Security",
|
|
7517
7874
|
"desc": "Rejected / quarantined uploads and other security incidents.",
|