aimeat 2.2.0 → 2.3.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/README.md +110 -84
- package/dist/.env.example +47 -11
- package/dist/locales/en.json +251 -371
- package/dist/locales/fi.json +255 -375
- package/dist/public/components/ContactCard.js +30 -5
- package/dist/public/components/ContactPicker.js +3 -2
- package/dist/public/components/ImageDeliverable.js +2 -1
- package/dist/public/components/JsonView.js +1 -0
- package/dist/public/components/LinkPreview.js +1 -1
- package/dist/public/components/NotificationBell.js +6 -4
- package/dist/public/components/UsageChart.js +2 -1
- package/dist/public/css/theme.css +1516 -1432
- package/dist/public/css/views/app-grant.css +95 -36
- package/dist/public/css/views/help.css +28 -0
- package/dist/public/css/views/landing.css +20 -0
- package/dist/public/css/views/members.css +40 -10
- package/dist/public/css/views/portal-dev.css +64 -45
- package/dist/public/css/views/profile.css +8 -0
- package/dist/public/js/api.js +1 -0
- package/dist/public/js/app-sandbox.js +1 -0
- package/dist/public/js/components/auth-image.js +3 -1
- package/dist/public/js/i18n.js +3 -1
- package/dist/public/js/presence-store.js +3 -1
- package/dist/public/js/recents.js +2 -0
- package/dist/public/js/services/agent-activity.js +2 -1
- package/dist/public/js/services/agent-directives.js +2 -1
- package/dist/public/js/services/agent-integration.js +2 -1
- package/dist/public/js/services/agent-messages.js +2 -1
- package/dist/public/js/services/agent-tasks.js +2 -1
- package/dist/public/js/services/agents.js +3 -2
- package/dist/public/js/services/calibrator.js +2 -1
- package/dist/public/js/services/consent.js +2 -1
- package/dist/public/js/services/contacts.js +2 -1
- package/dist/public/js/services/cortex.js +5 -4
- package/dist/public/js/services/ecosystem.js +2 -1
- package/dist/public/js/services/knowledge.js +2 -1
- package/dist/public/js/services/ledger.js +2 -1
- package/dist/public/js/services/living.js +10 -9
- package/dist/public/js/services/memory.js +2 -1
- package/dist/public/js/services/messages.js +53 -8
- package/dist/public/js/services/nodes.js +3 -2
- package/dist/public/js/services/notebook-plan.js +2 -1
- package/dist/public/js/services/notebook.js +6 -5
- package/dist/public/js/services/offers.js +6 -5
- package/dist/public/js/services/organisms.js +26 -25
- package/dist/public/js/services/organisms.prompts.js +3 -2
- package/dist/public/js/services/organisms.shared.js +2 -1
- package/dist/public/js/services/organisms.workspace-gen.js +3 -2
- package/dist/public/js/services/packages.js +1 -0
- package/dist/public/js/services/schedules.js +2 -1
- package/dist/public/js/services/security.js +3 -2
- package/dist/public/js/services/skills.js +1 -0
- package/dist/public/js/services/tracked-responses.js +4 -3
- package/dist/public/js/services/unfurl.js +4 -4
- package/dist/public/js/services/work.js +2 -1
- package/dist/public/js/site.js +74 -0
- package/dist/public/js/swallowed.js +69 -0
- package/dist/public/js/theme.js +2 -1
- package/dist/public/js/utils.js +3 -1
- package/dist/public/lib/VENDORED.md +1 -0
- package/dist/public/lib/aimeat-game/board.css +262 -0
- package/dist/public/lib/aimeat-game/progress.css +406 -0
- package/dist/public/lib/aimeat-game/shell.css +388 -0
- package/dist/public/lib/aimeat-game.css +394 -0
- package/dist/public/lib/pdfjs@6/pdf.min.mjs +29 -0
- package/dist/public/lib/pdfjs@6/pdf.worker.min.mjs +29 -0
- package/dist/public/privacy.fi.html +1 -1
- package/dist/public/privacy.html +1 -1
- package/dist/public/spa.html +885 -793
- package/dist/public/sw.js +4 -2
- package/dist/public/views/admin/agent-integration-tab.js +7 -6
- package/dist/public/views/admin/ai-usage-tab.js +2 -1
- package/dist/public/views/admin/cortex-tab.js +2 -1
- package/dist/public/views/admin/economy-tab.js +0 -1
- package/dist/public/views/admin/email-tab.js +4 -2
- package/dist/public/views/admin/federation-tab.js +3 -2
- package/dist/public/views/admin/feedback-tab.js +2 -1
- package/dist/public/views/admin/knowledge-tab.js +2 -1
- package/dist/public/views/admin/messages-tab.js +2 -1
- package/dist/public/views/admin/msm-tab.js +2 -1
- package/dist/public/views/admin/packages-tab.js +3 -2
- package/dist/public/views/admin/portal-tab.js +7 -2
- package/dist/public/views/admin/push-tab.js +9 -4
- package/dist/public/views/admin/stats-tab.js +2 -1
- package/dist/public/views/admin/usage-tab.js +4 -3
- package/dist/public/views/admin.js +6 -4
- package/dist/public/views/agent-solo.js +4 -3
- package/dist/public/views/app-grant.js +105 -32
- package/dist/public/views/business.js +139 -55
- package/dist/public/views/command-palette.js +5 -3
- package/dist/public/views/companies.js +3 -2
- package/dist/public/views/doc-solo.js +2 -1
- package/dist/public/views/help.js +95 -15
- package/dist/public/views/how-it-works.js +41 -8
- package/dist/public/views/invite-accept.js +3 -2
- package/dist/public/views/landing-activity.js +3 -2
- package/dist/public/views/landing-node-totals.js +2 -1
- package/dist/public/views/landing.js +75 -152
- package/dist/public/views/members.js +29 -2
- package/dist/public/views/my-company.js +9 -7
- package/dist/public/views/my-company.payments.js +2 -1
- package/dist/public/views/portal-classic.js +2 -1
- package/dist/public/views/portal-dev.js +64 -35
- package/dist/public/views/portal-dev.panels.js +39 -2
- package/dist/public/views/portal-dev.upload.js +25 -196
- package/dist/public/views/portal.components.js +4 -3
- package/dist/public/views/portfolio.js +5 -4
- package/dist/public/views/profile/access-tab/access-tokens.js +2 -1
- package/dist/public/views/profile/access-tab/agent-defaults.js +3 -1
- package/dist/public/views/profile/access-tab/connected-apps.js +72 -3
- package/dist/public/views/profile/access-tab/sharing-groups.js +4 -1
- package/dist/public/views/profile/access-tab.js +3 -1
- package/dist/public/views/profile/agents/agent-card.js +6 -5
- package/dist/public/views/profile/agents/tab-activity.js +10 -8
- package/dist/public/views/profile/agents/tab-agent-config.js +3 -1
- package/dist/public/views/profile/agents/tab-contracts.js +2 -1
- package/dist/public/views/profile/agents/tab-data-access.js +10 -7
- package/dist/public/views/profile/agents/tab-helpers.js +5 -0
- package/dist/public/views/profile/agents/tab-integration.js +12 -9
- package/dist/public/views/profile/agents/tab-messages.js +6 -4
- package/dist/public/views/profile/agents/tab-quality.js +3 -2
- package/dist/public/views/profile/agents/tab-usage.js +5 -3
- package/dist/public/views/profile/agents/task-item.js +12 -7
- package/dist/public/views/profile/agents-activity-subtab.js +5 -2
- package/dist/public/views/profile/agents-capabilities-subtab.js +4 -2
- package/dist/public/views/profile/agents-messages-subtab.js +5 -2
- package/dist/public/views/profile/agents-services-subtab.js +1 -0
- package/dist/public/views/profile/agents-tab.js +11 -7
- package/dist/public/views/profile/appdev-tab.js +3 -2
- package/dist/public/views/profile/apps-tab.js +10 -8
- package/dist/public/views/profile/boards-tab.js +5 -4
- package/dist/public/views/profile/calibrator-batch.helpers.js +3 -2
- package/dist/public/views/profile/calibrator-batch.js +3 -1
- package/dist/public/views/profile/calibrator-llm-editor.js +3 -2
- package/dist/public/views/profile/calibrator-tab.js +5 -4
- package/dist/public/views/profile/capabilities-tab.js +2 -1
- package/dist/public/views/profile/chat-sessions-tab.js +6 -3
- package/dist/public/views/profile/contacts-tab.js +2 -1
- package/dist/public/views/profile/data-wallet-tab.js +5 -4
- package/dist/public/views/profile/discover-tab.js +4 -1
- package/dist/public/views/profile/ecosystem-tab.automation.js +13 -9
- package/dist/public/views/profile/ecosystem-tab.cards.js +3 -2
- package/dist/public/views/profile/ecosystem-tab.js +10 -7
- package/dist/public/views/profile/email-tab.js +2 -1
- package/dist/public/views/profile/extensions-tab.js +7 -6
- package/dist/public/views/profile/extensions-tab.maturity.js +2 -1
- package/dist/public/views/profile/extensions-tab.prompts.js +24 -0
- package/dist/public/views/profile/federation-tab.js +2 -1
- package/dist/public/views/profile/inbox-tab/components.js +13 -10
- package/dist/public/views/profile/inbox-tab/helpers.js +15 -1
- package/dist/public/views/profile/inbox-tab/use-thread-ux.js +1 -1
- package/dist/public/views/profile/inbox-tab.js +33 -30
- package/dist/public/views/profile/inline-panels.js +5 -4
- package/dist/public/views/profile/knowledge-tab.js +15 -13
- package/dist/public/views/profile/landing-page.cards.js +14 -9
- package/dist/public/views/profile/landing-page.helpers.js +5 -2
- package/dist/public/views/profile/landing-page.js +11 -7
- package/dist/public/views/profile/landing-page.modals.js +8 -5
- package/dist/public/views/profile/living-tab.js +3 -2
- package/dist/public/views/profile/mcp-tab.js +4 -2
- package/dist/public/views/profile/memory-tab/browse-view.js +3 -2
- package/dist/public/views/profile/memory-tab/components.js +4 -3
- package/dist/public/views/profile/memory-tab/entries-view.js +3 -2
- package/dist/public/views/profile/memory-tab.js +18 -16
- package/dist/public/views/profile/nodes-tab.js +2 -1
- package/dist/public/views/profile/notebook-card.js +4 -3
- package/dist/public/views/profile/notebook-tab.js +7 -5
- package/dist/public/views/profile/notifications-tab.js +9 -5
- package/dist/public/views/profile/offers-tab.js +5 -4
- package/dist/public/views/profile/openrouter-settings.js +5 -4
- package/dist/public/views/profile/organisms/activity-panel.js +2 -1
- package/dist/public/views/profile/organisms/agents.js +2 -1
- package/dist/public/views/profile/organisms/document.js +13 -12
- package/dist/public/views/profile/organisms/helpers.js +2 -1
- package/dist/public/views/profile/organisms/home.js +7 -6
- package/dist/public/views/profile/organisms/invite-panel.js +1 -1
- package/dist/public/views/profile/organisms/members.js +7 -6
- package/dist/public/views/profile/organisms/mindmap.js +1 -1
- package/dist/public/views/profile/organisms/panels.js +4 -3
- package/dist/public/views/profile/organisms/participants-panel.js +11 -10
- package/dist/public/views/profile/organisms/readme-panel.js +1 -0
- package/dist/public/views/profile/organisms/sources-panel.js +2 -1
- package/dist/public/views/profile/organisms/workspace/doc-space.js +2 -1
- package/dist/public/views/profile/organisms/workspace/model.js +1 -0
- package/dist/public/views/profile/organisms/workspace-apps.js +4 -2
- package/dist/public/views/profile/organisms/workspace-comments.js +3 -2
- package/dist/public/views/profile/organisms/workspace-list.js +5 -4
- package/dist/public/views/profile/organisms/workspace.js +19 -16
- package/dist/public/views/profile/organisms-tab.js +20 -12
- package/dist/public/views/profile/packages-tab.js +6 -4
- package/dist/public/views/profile/portfolio-tab.js +1 -1
- package/dist/public/views/profile/scheduler-calendar.js +2 -1
- package/dist/public/views/profile/scheduler-tab.js +2 -1
- package/dist/public/views/profile/security-tab.js +2 -1
- package/dist/public/views/profile/services-tab.js +4 -3
- package/dist/public/views/profile/wallet-tab.js +90 -84
- package/dist/public/views/profile/work-tab.js +3 -2
- package/dist/public/views/profile/workflows-form.js +2 -1
- package/dist/public/views/profile/workflows-tab.js +3 -2
- package/dist/public/views/public-workspace-viewer.js +7 -4
- package/dist/scripts/build-sdk-libs.d.ts.map +1 -1
- package/dist/scripts/build-sdk-libs.js +4 -0
- package/dist/scripts/build-sdk-libs.js.map +1 -1
- package/dist/scripts/check-silent-catch.d.ts +2 -0
- package/dist/scripts/check-silent-catch.d.ts.map +1 -0
- package/dist/scripts/check-silent-catch.js +159 -0
- package/dist/scripts/check-silent-catch.js.map +1 -0
- package/dist/src/auth/jwt.d.ts +2 -0
- package/dist/src/auth/jwt.d.ts.map +1 -1
- package/dist/src/auth/jwt.js +15 -3
- package/dist/src/auth/jwt.js.map +1 -1
- package/dist/src/auth/keypair.d.ts.map +1 -1
- package/dist/src/auth/keypair.js +3 -0
- package/dist/src/auth/keypair.js.map +1 -1
- package/dist/src/auth/middleware.d.ts +2 -0
- package/dist/src/auth/middleware.d.ts.map +1 -1
- package/dist/src/auth/middleware.js +33 -14
- package/dist/src/auth/middleware.js.map +1 -1
- package/dist/src/auth/node-keys.d.ts.map +1 -1
- package/dist/src/auth/node-keys.js +59 -16
- package/dist/src/auth/node-keys.js.map +1 -1
- package/dist/src/cli/config-import.d.ts.map +1 -1
- package/dist/src/cli/config-import.js +3 -1
- package/dist/src/cli/config-import.js.map +1 -1
- package/dist/src/cli/connect/auth.d.ts.map +1 -1
- package/dist/src/cli/connect/auth.js +1 -0
- package/dist/src/cli/connect/auth.js.map +1 -1
- package/dist/src/cli/connect/config.d.ts.map +1 -1
- package/dist/src/cli/connect/config.js +3 -1
- package/dist/src/cli/connect/config.js.map +1 -1
- package/dist/src/cli/connect/keychain.d.ts.map +1 -1
- package/dist/src/cli/connect/keychain.js +6 -2
- package/dist/src/cli/connect/keychain.js.map +1 -1
- package/dist/src/cli/connect/mcp/local-server.d.ts.map +1 -1
- package/dist/src/cli/connect/mcp/local-server.js +9 -2
- package/dist/src/cli/connect/mcp/local-server.js.map +1 -1
- package/dist/src/cli/connect/mcp/tools/workspaces.d.ts.map +1 -1
- package/dist/src/cli/connect/mcp/tools/workspaces.js +2 -0
- package/dist/src/cli/connect/mcp/tools/workspaces.js.map +1 -1
- package/dist/src/cli/connect/task-runner.d.ts.map +1 -1
- package/dist/src/cli/connect/task-runner.js +11 -4
- package/dist/src/cli/connect/task-runner.js.map +1 -1
- package/dist/src/cli/connect/tool-call-helpers.d.ts.map +1 -1
- package/dist/src/cli/connect/tool-call-helpers.js +1 -0
- package/dist/src/cli/connect/tool-call-helpers.js.map +1 -1
- package/dist/src/cli/connect/tunnel-client.d.ts.map +1 -1
- package/dist/src/cli/connect/tunnel-client.js +26 -8
- package/dist/src/cli/connect/tunnel-client.js.map +1 -1
- package/dist/src/cli/federation-join.d.ts.map +1 -1
- package/dist/src/cli/federation-join.js +7 -3
- package/dist/src/cli/federation-join.js.map +1 -1
- package/dist/src/cli/init-wizard/presets.d.ts.map +1 -1
- package/dist/src/cli/init-wizard/presets.js +21 -0
- package/dist/src/cli/init-wizard/presets.js.map +1 -1
- package/dist/src/cli/init-wizard/steps-advanced.d.ts.map +1 -1
- package/dist/src/cli/init-wizard/steps-advanced.js +2 -0
- package/dist/src/cli/init-wizard/steps-advanced.js.map +1 -1
- package/dist/src/cli/init-wizard/steps-operator.d.ts.map +1 -1
- package/dist/src/cli/init-wizard/steps-operator.js +10 -0
- package/dist/src/cli/init-wizard/steps-operator.js.map +1 -1
- package/dist/src/commerce/invoice-handler.d.ts +5 -0
- package/dist/src/commerce/invoice-handler.d.ts.map +1 -0
- package/dist/src/commerce/invoice-handler.js +41 -0
- package/dist/src/commerce/invoice-handler.js.map +1 -0
- package/dist/src/commerce/payable-book.d.ts +31 -0
- package/dist/src/commerce/payable-book.d.ts.map +1 -0
- package/dist/src/commerce/payable-book.js +27 -0
- package/dist/src/commerce/payable-book.js.map +1 -0
- package/dist/src/commerce/payment-handlers.d.ts.map +1 -1
- package/dist/src/commerce/payment-handlers.js +8 -4
- package/dist/src/commerce/payment-handlers.js.map +1 -1
- package/dist/src/commerce/sellable-resolvers.d.ts +6 -6
- package/dist/src/commerce/sellable-resolvers.d.ts.map +1 -1
- package/dist/src/commerce/sellable-resolvers.js +17 -4
- package/dist/src/commerce/sellable-resolvers.js.map +1 -1
- package/dist/src/commerce/session-service.js +2 -2
- package/dist/src/commerce/session-service.js.map +1 -1
- package/dist/src/commerce/stripe-handler.d.ts +33 -0
- package/dist/src/commerce/stripe-handler.d.ts.map +1 -0
- package/dist/src/commerce/stripe-handler.js +108 -0
- package/dist/src/commerce/stripe-handler.js.map +1 -0
- package/dist/src/commerce/types.d.ts +10 -12
- package/dist/src/commerce/types.d.ts.map +1 -1
- package/dist/src/commerce/x402-facilitator.d.ts.map +1 -1
- package/dist/src/commerce/x402-facilitator.js +1 -0
- package/dist/src/commerce/x402-facilitator.js.map +1 -1
- package/dist/src/config-types.d.ts +66 -0
- package/dist/src/config-types.d.ts.map +1 -1
- package/dist/src/config.d.ts.map +1 -1
- package/dist/src/config.js +62 -1
- package/dist/src/config.js.map +1 -1
- package/dist/src/data/library-packs/sdk.d.ts +4 -0
- package/dist/src/data/library-packs/sdk.d.ts.map +1 -1
- package/dist/src/data/library-packs/sdk.js +46 -0
- package/dist/src/data/library-packs/sdk.js.map +1 -1
- package/dist/src/data/library-packs/vendored.d.ts.map +1 -1
- package/dist/src/data/library-packs/vendored.js +88 -0
- package/dist/src/data/library-packs/vendored.js.map +1 -1
- package/dist/src/generated/api-types.d.ts +472 -26
- package/dist/src/generated/api-types.d.ts.map +1 -1
- package/dist/src/index-connect.d.ts.map +1 -1
- package/dist/src/index-connect.js +4 -1
- package/dist/src/index-connect.js.map +1 -1
- package/dist/src/index-start.d.ts.map +1 -1
- package/dist/src/index-start.js +10 -6
- package/dist/src/index-start.js.map +1 -1
- package/dist/src/mcp/app-template-proposals.d.ts.map +1 -1
- package/dist/src/mcp/app-template-proposals.js +2 -1
- package/dist/src/mcp/app-template-proposals.js.map +1 -1
- package/dist/src/mcp/apps.d.ts.map +1 -1
- package/dist/src/mcp/apps.js +4 -3
- package/dist/src/mcp/apps.js.map +1 -1
- package/dist/src/mcp/capabilities.d.ts.map +1 -1
- package/dist/src/mcp/capabilities.js +3 -2
- package/dist/src/mcp/capabilities.js.map +1 -1
- package/dist/src/mcp/catalog/scopes.d.ts +0 -1
- package/dist/src/mcp/catalog/scopes.d.ts.map +1 -1
- package/dist/src/mcp/catalog/scopes.js +2 -11
- package/dist/src/mcp/catalog/scopes.js.map +1 -1
- package/dist/src/mcp/catalog/surfaces.d.ts +1 -7
- package/dist/src/mcp/catalog/surfaces.d.ts.map +1 -1
- package/dist/src/mcp/catalog/surfaces.js +10 -16
- package/dist/src/mcp/catalog/surfaces.js.map +1 -1
- package/dist/src/mcp/commerce.d.ts.map +1 -1
- package/dist/src/mcp/commerce.js +35 -3
- package/dist/src/mcp/commerce.js.map +1 -1
- package/dist/src/mcp/core.d.ts.map +1 -1
- package/dist/src/mcp/core.js +3 -2
- package/dist/src/mcp/core.js.map +1 -1
- package/dist/src/mcp/exchange-run.d.ts +28 -0
- package/dist/src/mcp/exchange-run.d.ts.map +1 -1
- package/dist/src/mcp/exchange-run.js +58 -37
- package/dist/src/mcp/exchange-run.js.map +1 -1
- package/dist/src/mcp/exchange.d.ts.map +1 -1
- package/dist/src/mcp/exchange.js +9 -7
- package/dist/src/mcp/exchange.js.map +1 -1
- package/dist/src/mcp/extensions.d.ts.map +1 -1
- package/dist/src/mcp/extensions.js +60 -106
- package/dist/src/mcp/extensions.js.map +1 -1
- package/dist/src/mcp/index.d.ts.map +1 -1
- package/dist/src/mcp/index.js +1 -5
- package/dist/src/mcp/index.js.map +1 -1
- package/dist/src/mcp/knowledge.d.ts.map +1 -1
- package/dist/src/mcp/knowledge.js +1 -0
- package/dist/src/mcp/knowledge.js.map +1 -1
- package/dist/src/mcp/oauth.d.ts +3 -0
- package/dist/src/mcp/oauth.d.ts.map +1 -1
- package/dist/src/mcp/oauth.js +13 -8
- package/dist/src/mcp/oauth.js.map +1 -1
- package/dist/src/mcp/workspaces.d.ts.map +1 -1
- package/dist/src/mcp/workspaces.js +7 -4
- package/dist/src/mcp/workspaces.js.map +1 -1
- package/dist/src/middleware/cors.d.ts.map +1 -1
- package/dist/src/middleware/cors.js +3 -1
- package/dist/src/middleware/cors.js.map +1 -1
- package/dist/src/middleware/subdomain.d.ts +4 -0
- package/dist/src/middleware/subdomain.d.ts.map +1 -1
- package/dist/src/middleware/subdomain.js +23 -2
- package/dist/src/middleware/subdomain.js.map +1 -1
- package/dist/src/models/app-tool-schemas.d.ts +35 -0
- package/dist/src/models/app-tool-schemas.d.ts.map +1 -1
- package/dist/src/models/app-tool-schemas.js +44 -0
- package/dist/src/models/app-tool-schemas.js.map +1 -1
- package/dist/src/routes/admin-config.d.ts.map +1 -1
- package/dist/src/routes/admin-config.js +4 -1
- package/dist/src/routes/admin-config.js.map +1 -1
- package/dist/src/routes/admin-extensions.d.ts.map +1 -1
- package/dist/src/routes/admin-extensions.js +2 -1
- package/dist/src/routes/admin-extensions.js.map +1 -1
- package/dist/src/routes/admin-monitoring.js +14 -5
- package/dist/src/routes/admin-monitoring.js.map +1 -1
- package/dist/src/routes/admin-security.d.ts.map +1 -1
- package/dist/src/routes/admin-security.js +4 -1
- package/dist/src/routes/admin-security.js.map +1 -1
- package/dist/src/routes/admin.d.ts.map +1 -1
- package/dist/src/routes/admin.js +6 -4
- package/dist/src/routes/admin.js.map +1 -1
- package/dist/src/routes/agent-activity.d.ts.map +1 -1
- package/dist/src/routes/agent-activity.js +4 -1
- package/dist/src/routes/agent-activity.js.map +1 -1
- package/dist/src/routes/agent-directives.d.ts +3 -10
- package/dist/src/routes/agent-directives.d.ts.map +1 -1
- package/dist/src/routes/agent-directives.js +7 -12
- package/dist/src/routes/agent-directives.js.map +1 -1
- package/dist/src/routes/agent-integration.d.ts.map +1 -1
- package/dist/src/routes/agent-integration.js +3 -1
- package/dist/src/routes/agent-integration.js.map +1 -1
- package/dist/src/routes/agent-messages.d.ts.map +1 -1
- package/dist/src/routes/agent-messages.js +5 -2
- package/dist/src/routes/agent-messages.js.map +1 -1
- package/dist/src/routes/agent-onboarding.d.ts.map +1 -1
- package/dist/src/routes/agent-onboarding.js +19 -6
- package/dist/src/routes/agent-onboarding.js.map +1 -1
- package/dist/src/routes/agent-skills-discovery.d.ts.map +1 -1
- package/dist/src/routes/agent-skills-discovery.js +2 -1
- package/dist/src/routes/agent-skills-discovery.js.map +1 -1
- package/dist/src/routes/agent-tasks/completion.js +1 -1
- package/dist/src/routes/agent-tasks/completion.js.map +1 -1
- package/dist/src/routes/agent-tasks/create-read.js +3 -1
- package/dist/src/routes/agent-tasks/create-read.js.map +1 -1
- package/dist/src/routes/agent-tasks/lifecycle.d.ts.map +1 -1
- package/dist/src/routes/agent-tasks/lifecycle.js +28 -9
- package/dist/src/routes/agent-tasks/lifecycle.js.map +1 -1
- package/dist/src/routes/agents/management.d.ts.map +1 -1
- package/dist/src/routes/agents/management.js +4 -1
- package/dist/src/routes/agents/management.js.map +1 -1
- package/dist/src/routes/agents/offers.d.ts.map +1 -1
- package/dist/src/routes/agents/offers.js +0 -0
- package/dist/src/routes/agents/offers.js.map +1 -1
- package/dist/src/routes/agents/profile-metadata.d.ts.map +1 -1
- package/dist/src/routes/agents/profile-metadata.js +2 -1
- package/dist/src/routes/agents/profile-metadata.js.map +1 -1
- package/dist/src/routes/app-grants.d.ts +7 -0
- package/dist/src/routes/app-grants.d.ts.map +1 -1
- package/dist/src/routes/app-grants.js +69 -4
- package/dist/src/routes/app-grants.js.map +1 -1
- package/dist/src/routes/appdev-overview.d.ts.map +1 -1
- package/dist/src/routes/appdev-overview.js +2 -1
- package/dist/src/routes/appdev-overview.js.map +1 -1
- package/dist/src/routes/apps/catalogue-admin.d.ts.map +1 -1
- package/dist/src/routes/apps/catalogue-admin.js +2 -1
- package/dist/src/routes/apps/catalogue-admin.js.map +1 -1
- package/dist/src/routes/apps/drafts.d.ts.map +1 -1
- package/dist/src/routes/apps/drafts.js +2 -1
- package/dist/src/routes/apps/drafts.js.map +1 -1
- package/dist/src/routes/apps/fork-manage.d.ts.map +1 -1
- package/dist/src/routes/apps/fork-manage.js +6 -3
- package/dist/src/routes/apps/fork-manage.js.map +1 -1
- package/dist/src/routes/apps/helpers.d.ts.map +1 -1
- package/dist/src/routes/apps/helpers.js +5 -1
- package/dist/src/routes/apps/helpers.js.map +1 -1
- package/dist/src/routes/apps/publish.d.ts.map +1 -1
- package/dist/src/routes/apps/publish.js +8 -3
- package/dist/src/routes/apps/publish.js.map +1 -1
- package/dist/src/routes/apps/read.d.ts.map +1 -1
- package/dist/src/routes/apps/read.js +2 -1
- package/dist/src/routes/apps/read.js.map +1 -1
- package/dist/src/routes/auth.d.ts.map +1 -1
- package/dist/src/routes/auth.js +2 -1
- package/dist/src/routes/auth.js.map +1 -1
- package/dist/src/routes/boards.js +1 -1
- package/dist/src/routes/boards.js.map +1 -1
- package/dist/src/routes/bootstrap.d.ts.map +1 -1
- package/dist/src/routes/bootstrap.js +8 -3
- package/dist/src/routes/bootstrap.js.map +1 -1
- package/dist/src/routes/capabilities.d.ts.map +1 -1
- package/dist/src/routes/capabilities.js +4 -3
- package/dist/src/routes/capabilities.js.map +1 -1
- package/dist/src/routes/commerce-acp.js +1 -1
- package/dist/src/routes/commerce-acp.js.map +1 -1
- package/dist/src/routes/commerce-ucp.d.ts +2 -3
- package/dist/src/routes/commerce-ucp.d.ts.map +1 -1
- package/dist/src/routes/commerce-ucp.js +6 -12
- package/dist/src/routes/commerce-ucp.js.map +1 -1
- package/dist/src/routes/commerce.d.ts +7 -1
- package/dist/src/routes/commerce.d.ts.map +1 -1
- package/dist/src/routes/commerce.js +65 -15
- package/dist/src/routes/commerce.js.map +1 -1
- package/dist/src/routes/csm.d.ts.map +1 -1
- package/dist/src/routes/csm.js +3 -1
- package/dist/src/routes/csm.js.map +1 -1
- package/dist/src/routes/ecosystem-apps.d.ts.map +1 -1
- package/dist/src/routes/ecosystem-apps.js +7 -6
- package/dist/src/routes/ecosystem-apps.js.map +1 -1
- package/dist/src/routes/exchange-market.d.ts.map +1 -1
- package/dist/src/routes/exchange-market.js +10 -6
- package/dist/src/routes/exchange-market.js.map +1 -1
- package/dist/src/routes/exchange.d.ts +10 -1
- package/dist/src/routes/exchange.d.ts.map +1 -1
- package/dist/src/routes/exchange.js +344 -9
- package/dist/src/routes/exchange.js.map +1 -1
- package/dist/src/routes/extensions/actions.d.ts +2 -0
- package/dist/src/routes/extensions/actions.d.ts.map +1 -1
- package/dist/src/routes/extensions/actions.js +47 -8
- package/dist/src/routes/extensions/actions.js.map +1 -1
- package/dist/src/routes/extensions/entitlement-gate.d.ts +44 -7
- package/dist/src/routes/extensions/entitlement-gate.d.ts.map +1 -1
- package/dist/src/routes/extensions/entitlement-gate.js +21 -142
- package/dist/src/routes/extensions/entitlement-gate.js.map +1 -1
- package/dist/src/routes/extensions/internal-pass.d.ts +23 -0
- package/dist/src/routes/extensions/internal-pass.d.ts.map +1 -0
- package/dist/src/routes/extensions/internal-pass.js +70 -0
- package/dist/src/routes/extensions/internal-pass.js.map +1 -0
- package/dist/src/routes/extensions/manifest.d.ts +4 -0
- package/dist/src/routes/extensions/manifest.d.ts.map +1 -1
- package/dist/src/routes/extensions/manifest.js +68 -4
- package/dist/src/routes/extensions/manifest.js.map +1 -1
- package/dist/src/routes/extensions/metered-response.d.ts +37 -0
- package/dist/src/routes/extensions/metered-response.d.ts.map +1 -0
- package/dist/src/routes/extensions/metered-response.js +60 -0
- package/dist/src/routes/extensions/metered-response.js.map +1 -0
- package/dist/src/routes/extensions/pacing.d.ts +31 -0
- package/dist/src/routes/extensions/pacing.d.ts.map +1 -1
- package/dist/src/routes/extensions/pacing.js +5 -33
- package/dist/src/routes/extensions/pacing.js.map +1 -1
- package/dist/src/routes/extensions/paywall.d.ts +16 -0
- package/dist/src/routes/extensions/paywall.d.ts.map +1 -1
- package/dist/src/routes/extensions/paywall.js +157 -8
- package/dist/src/routes/extensions/paywall.js.map +1 -1
- package/dist/src/routes/extensions/priced-binding.d.ts +50 -0
- package/dist/src/routes/extensions/priced-binding.d.ts.map +1 -0
- package/dist/src/routes/extensions/priced-binding.js +46 -0
- package/dist/src/routes/extensions/priced-binding.js.map +1 -0
- package/dist/src/routes/federation-genesis.d.ts.map +1 -1
- package/dist/src/routes/federation-genesis.js +14 -5
- package/dist/src/routes/federation-genesis.js.map +1 -1
- package/dist/src/routes/federation-peer/introduce.d.ts.map +1 -1
- package/dist/src/routes/federation-peer/introduce.js +3 -1
- package/dist/src/routes/federation-peer/introduce.js.map +1 -1
- package/dist/src/routes/federation-peer/lifecycle.d.ts.map +1 -1
- package/dist/src/routes/federation-peer/lifecycle.js +3 -2
- package/dist/src/routes/federation-peer/lifecycle.js.map +1 -1
- package/dist/src/routes/federation-peer/peers.d.ts.map +1 -1
- package/dist/src/routes/federation-peer/peers.js +5 -3
- package/dist/src/routes/federation-peer/peers.js.map +1 -1
- package/dist/src/routes/federation-peer/policy-book.d.ts.map +1 -1
- package/dist/src/routes/federation-peer/policy-book.js +2 -1
- package/dist/src/routes/federation-peer/policy-book.js.map +1 -1
- package/dist/src/routes/federation-peer/promotion.d.ts.map +1 -1
- package/dist/src/routes/federation-peer/promotion.js +4 -1
- package/dist/src/routes/federation-peer/promotion.js.map +1 -1
- package/dist/src/routes/federation-settlements.js +2 -2
- package/dist/src/routes/federation-settlements.js.map +1 -1
- package/dist/src/routes/federation-sync/catalogue-trust.js +5 -3
- package/dist/src/routes/federation-sync/catalogue-trust.js.map +1 -1
- package/dist/src/routes/federation-sync/messaging.js +5 -3
- package/dist/src/routes/federation-sync/messaging.js.map +1 -1
- package/dist/src/routes/federation-sync/routing.d.ts.map +1 -1
- package/dist/src/routes/federation-sync/routing.js +7 -5
- package/dist/src/routes/federation-sync/routing.js.map +1 -1
- package/dist/src/routes/flags.d.ts.map +1 -1
- package/dist/src/routes/flags.js +3 -1
- package/dist/src/routes/flags.js.map +1 -1
- package/dist/src/routes/ghii/register-login.js +1 -1
- package/dist/src/routes/ghii/register-login.js.map +1 -1
- package/dist/src/routes/instances/install.d.ts.map +1 -1
- package/dist/src/routes/instances/install.js +2 -1
- package/dist/src/routes/instances/install.js.map +1 -1
- package/dist/src/routes/instances/manage.d.ts.map +1 -1
- package/dist/src/routes/instances/manage.js +2 -1
- package/dist/src/routes/instances/manage.js.map +1 -1
- package/dist/src/routes/knowledge/packages-core.d.ts.map +1 -1
- package/dist/src/routes/knowledge/packages-core.js +2 -1
- package/dist/src/routes/knowledge/packages-core.js.map +1 -1
- package/dist/src/routes/knowledge/sharing.d.ts.map +1 -1
- package/dist/src/routes/knowledge/sharing.js +2 -1
- package/dist/src/routes/knowledge/sharing.js.map +1 -1
- package/dist/src/routes/library-packs.d.ts.map +1 -1
- package/dist/src/routes/library-packs.js +10 -3
- package/dist/src/routes/library-packs.js.map +1 -1
- package/dist/src/routes/libs.d.ts +9 -0
- package/dist/src/routes/libs.d.ts.map +1 -1
- package/dist/src/routes/libs.js +11 -2
- package/dist/src/routes/libs.js.map +1 -1
- package/dist/src/routes/matches.d.ts.map +1 -1
- package/dist/src/routes/matches.js +7 -3
- package/dist/src/routes/matches.js.map +1 -1
- package/dist/src/routes/memory/bulk.d.ts.map +1 -1
- package/dist/src/routes/memory/bulk.js +3 -1
- package/dist/src/routes/memory/bulk.js.map +1 -1
- package/dist/src/routes/memory/crud.d.ts.map +1 -1
- package/dist/src/routes/memory/crud.js +4 -2
- package/dist/src/routes/memory/crud.js.map +1 -1
- package/dist/src/routes/memory/federation.d.ts.map +1 -1
- package/dist/src/routes/memory/federation.js +5 -0
- package/dist/src/routes/memory/federation.js.map +1 -1
- package/dist/src/routes/memory/key.d.ts.map +1 -1
- package/dist/src/routes/memory/key.js +9 -4
- package/dist/src/routes/memory/key.js.map +1 -1
- package/dist/src/routes/messages.d.ts.map +1 -1
- package/dist/src/routes/messages.js +2 -1
- package/dist/src/routes/messages.js.map +1 -1
- package/dist/src/routes/msm.d.ts.map +1 -1
- package/dist/src/routes/msm.js +3 -1
- package/dist/src/routes/msm.js.map +1 -1
- package/dist/src/routes/oauth-login.d.ts.map +1 -1
- package/dist/src/routes/oauth-login.js +1 -0
- package/dist/src/routes/oauth-login.js.map +1 -1
- package/dist/src/routes/openrouter.js +2 -2
- package/dist/src/routes/openrouter.js.map +1 -1
- package/dist/src/routes/organisms/crud.d.ts.map +1 -1
- package/dist/src/routes/organisms/crud.js +3 -2
- package/dist/src/routes/organisms/crud.js.map +1 -1
- package/dist/src/routes/organisms/gates.d.ts.map +1 -1
- package/dist/src/routes/organisms/gates.js +3 -2
- package/dist/src/routes/organisms/gates.js.map +1 -1
- package/dist/src/routes/organisms/intake.d.ts.map +1 -1
- package/dist/src/routes/organisms/intake.js +13 -1
- package/dist/src/routes/organisms/intake.js.map +1 -1
- package/dist/src/routes/organisms/shared.d.ts.map +1 -1
- package/dist/src/routes/organisms/shared.js +7 -3
- package/dist/src/routes/organisms/shared.js.map +1 -1
- package/dist/src/routes/organisms/workspace-ops.d.ts.map +1 -1
- package/dist/src/routes/organisms/workspace-ops.js +6 -5
- package/dist/src/routes/organisms/workspace-ops.js.map +1 -1
- package/dist/src/routes/organisms/workspace-read.d.ts.map +1 -1
- package/dist/src/routes/organisms/workspace-read.js +4 -2
- package/dist/src/routes/organisms/workspace-read.js.map +1 -1
- package/dist/src/routes/owners.d.ts.map +1 -1
- package/dist/src/routes/owners.js +37 -12
- package/dist/src/routes/owners.js.map +1 -1
- package/dist/src/routes/personal.js +3 -1
- package/dist/src/routes/personal.js.map +1 -1
- package/dist/src/routes/portal.d.ts +6 -1
- package/dist/src/routes/portal.d.ts.map +1 -1
- package/dist/src/routes/portal.js +75 -10
- package/dist/src/routes/portal.js.map +1 -1
- package/dist/src/routes/portfolio.d.ts.map +1 -1
- package/dist/src/routes/portfolio.js +5 -1
- package/dist/src/routes/portfolio.js.map +1 -1
- package/dist/src/routes/prompts.d.ts.map +1 -1
- package/dist/src/routes/prompts.js +36 -2
- package/dist/src/routes/prompts.js.map +1 -1
- package/dist/src/routes/public-events.d.ts.map +1 -1
- package/dist/src/routes/public-events.js +4 -1
- package/dist/src/routes/public-events.js.map +1 -1
- package/dist/src/routes/public-stats.d.ts.map +1 -1
- package/dist/src/routes/public-stats.js +29 -10
- package/dist/src/routes/public-stats.js.map +1 -1
- package/dist/src/routes/schedules.d.ts +3 -0
- package/dist/src/routes/schedules.d.ts.map +1 -1
- package/dist/src/routes/schedules.js +14 -1
- package/dist/src/routes/schedules.js.map +1 -1
- package/dist/src/routes/stats.d.ts.map +1 -1
- package/dist/src/routes/stats.js +5 -1
- package/dist/src/routes/stats.js.map +1 -1
- package/dist/src/routes/storage-files.d.ts +4 -0
- package/dist/src/routes/storage-files.d.ts.map +1 -1
- package/dist/src/routes/storage-files.js +11 -0
- package/dist/src/routes/storage-files.js.map +1 -1
- package/dist/src/routes/subdomains.d.ts +9 -0
- package/dist/src/routes/subdomains.d.ts.map +1 -1
- package/dist/src/routes/subdomains.js +66 -5
- package/dist/src/routes/subdomains.js.map +1 -1
- package/dist/src/routes/unfurl.d.ts.map +1 -1
- package/dist/src/routes/unfurl.js +13 -3
- package/dist/src/routes/unfurl.js.map +1 -1
- package/dist/src/routes/upload.d.ts +11 -0
- package/dist/src/routes/upload.d.ts.map +1 -1
- package/dist/src/routes/upload.js +99 -9
- package/dist/src/routes/upload.js.map +1 -1
- package/dist/src/routes/wallet.d.ts +3 -0
- package/dist/src/routes/wallet.d.ts.map +1 -1
- package/dist/src/routes/wallet.js +6 -1
- package/dist/src/routes/wallet.js.map +1 -1
- package/dist/src/routes/webmcp.d.ts +8 -0
- package/dist/src/routes/webmcp.d.ts.map +1 -1
- package/dist/src/routes/webmcp.js +96 -49
- package/dist/src/routes/webmcp.js.map +1 -1
- package/dist/src/routes/wellknown.d.ts.map +1 -1
- package/dist/src/routes/wellknown.js +1 -0
- package/dist/src/routes/wellknown.js.map +1 -1
- package/dist/src/server-bootstrap/config-init.d.ts.map +1 -1
- package/dist/src/server-bootstrap/config-init.js +2 -0
- package/dist/src/server-bootstrap/config-init.js.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.d.ts +4 -2
- package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +11 -22
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/server-bootstrap/service-init.js +3 -1
- package/dist/src/server-bootstrap/service-init.js.map +1 -1
- package/dist/src/server-bootstrap/static-files.d.ts.map +1 -1
- package/dist/src/server-bootstrap/static-files.js +3 -1
- package/dist/src/server-bootstrap/static-files.js.map +1 -1
- package/dist/src/services/agent-statistics.d.ts.map +1 -1
- package/dist/src/services/agent-statistics.js +4 -1
- package/dist/src/services/agent-statistics.js.map +1 -1
- package/dist/src/services/app-agent-deploy.d.ts.map +1 -1
- package/dist/src/services/app-agent-deploy.js +4 -1
- package/dist/src/services/app-agent-deploy.js.map +1 -1
- package/dist/src/services/app-agent-surface.d.ts +78 -0
- package/dist/src/services/app-agent-surface.d.ts.map +1 -0
- package/dist/src/services/app-agent-surface.js +74 -0
- package/dist/src/services/app-agent-surface.js.map +1 -0
- package/dist/src/services/app-tool-names.d.ts +15 -0
- package/dist/src/services/app-tool-names.d.ts.map +1 -0
- package/dist/src/services/app-tool-names.js +24 -0
- package/dist/src/services/app-tool-names.js.map +1 -0
- package/dist/src/services/appdev-overview.d.ts.map +1 -1
- package/dist/src/services/appdev-overview.js +3 -2
- package/dist/src/services/appdev-overview.js.map +1 -1
- package/dist/src/services/attachment-duplication.js +3 -3
- package/dist/src/services/attachment-duplication.js.map +1 -1
- package/dist/src/services/build-extension-prompt.d.ts +40 -0
- package/dist/src/services/build-extension-prompt.d.ts.map +1 -0
- package/dist/src/services/build-extension-prompt.js +253 -0
- package/dist/src/services/build-extension-prompt.js.map +1 -0
- package/dist/src/services/cache-cleanup.d.ts.map +1 -1
- package/dist/src/services/cache-cleanup.js +2 -1
- package/dist/src/services/cache-cleanup.js.map +1 -1
- package/dist/src/services/call-timing.d.ts.map +1 -1
- package/dist/src/services/call-timing.js +2 -1
- package/dist/src/services/call-timing.js.map +1 -1
- package/dist/src/services/capability-invoke.d.ts +6 -1
- package/dist/src/services/capability-invoke.d.ts.map +1 -1
- package/dist/src/services/capability-invoke.js +14 -2
- package/dist/src/services/capability-invoke.js.map +1 -1
- package/dist/src/services/catalogue-sync.d.ts.map +1 -1
- package/dist/src/services/catalogue-sync.js +1 -0
- package/dist/src/services/catalogue-sync.js.map +1 -1
- package/dist/src/services/component-registrar.d.ts.map +1 -1
- package/dist/src/services/component-registrar.js +22 -6
- package/dist/src/services/component-registrar.js.map +1 -1
- package/dist/src/services/config-loader.d.ts.map +1 -1
- package/dist/src/services/config-loader.js +6 -1
- package/dist/src/services/config-loader.js.map +1 -1
- package/dist/src/services/config-schema.d.ts.map +1 -1
- package/dist/src/services/config-schema.js +1 -0
- package/dist/src/services/config-schema.js.map +1 -1
- package/dist/src/services/connect-tunnel.d.ts.map +1 -1
- package/dist/src/services/connect-tunnel.js +17 -6
- package/dist/src/services/connect-tunnel.js.map +1 -1
- package/dist/src/services/consent.d.ts.map +1 -1
- package/dist/src/services/consent.js +3 -1
- package/dist/src/services/consent.js.map +1 -1
- package/dist/src/services/consul-config.d.ts.map +1 -1
- package/dist/src/services/consul-config.js +7 -2
- package/dist/src/services/consul-config.js.map +1 -1
- package/dist/src/services/contacts.js +4 -2
- package/dist/src/services/contacts.js.map +1 -1
- package/dist/src/services/core-jobs.js +1 -1
- package/dist/src/services/core-jobs.js.map +1 -1
- package/dist/src/services/db/agent-messages-overview-db-service.d.ts.map +1 -1
- package/dist/src/services/db/agent-messages-overview-db-service.js +2 -1
- package/dist/src/services/db/agent-messages-overview-db-service.js.map +1 -1
- package/dist/src/services/db/agent-quality-overview-db-service.d.ts.map +1 -1
- package/dist/src/services/db/agent-quality-overview-db-service.js +2 -1
- package/dist/src/services/db/agent-quality-overview-db-service.js.map +1 -1
- package/dist/src/services/db/messages-inbox-db-service.d.ts.map +1 -1
- package/dist/src/services/db/messages-inbox-db-service.js +3 -2
- package/dist/src/services/db/messages-inbox-db-service.js.map +1 -1
- package/dist/src/services/db/messaging-db-service.d.ts.map +1 -1
- package/dist/src/services/db/messaging-db-service.js +3 -2
- package/dist/src/services/db/messaging-db-service.js.map +1 -1
- package/dist/src/services/db/wallet-tab-db-service.d.ts +3 -3
- package/dist/src/services/doc-images.d.ts.map +1 -1
- package/dist/src/services/doc-images.js +7 -4
- package/dist/src/services/doc-images.js.map +1 -1
- package/dist/src/services/ecosystem-automation-notify.d.ts.map +1 -1
- package/dist/src/services/ecosystem-automation-notify.js +10 -4
- package/dist/src/services/ecosystem-automation-notify.js.map +1 -1
- package/dist/src/services/ecosystem-automation.d.ts.map +1 -1
- package/dist/src/services/ecosystem-automation.js +3 -2
- package/dist/src/services/ecosystem-automation.js.map +1 -1
- package/dist/src/services/ecosystem-events.js +1 -1
- package/dist/src/services/ecosystem-events.js.map +1 -1
- package/dist/src/services/entitlement-merge.d.ts +50 -0
- package/dist/src/services/entitlement-merge.d.ts.map +1 -0
- package/dist/src/services/entitlement-merge.js +116 -0
- package/dist/src/services/entitlement-merge.js.map +1 -0
- package/dist/src/services/entitlement-money.d.ts.map +1 -1
- package/dist/src/services/entitlement-money.js +4 -1
- package/dist/src/services/entitlement-money.js.map +1 -1
- package/dist/src/services/exchange-market.d.ts +47 -2
- package/dist/src/services/exchange-market.d.ts.map +1 -1
- package/dist/src/services/exchange-market.js +80 -9
- package/dist/src/services/exchange-market.js.map +1 -1
- package/dist/src/services/exchange-projection.d.ts +8 -2
- package/dist/src/services/exchange-projection.d.ts.map +1 -1
- package/dist/src/services/exchange-projection.js +146 -21
- package/dist/src/services/exchange-projection.js.map +1 -1
- package/dist/src/services/exchange-proposals.d.ts.map +1 -1
- package/dist/src/services/exchange-proposals.js +4 -2
- package/dist/src/services/exchange-proposals.js.map +1 -1
- package/dist/src/services/extension-purchase.d.ts +36 -0
- package/dist/src/services/extension-purchase.d.ts.map +1 -0
- package/dist/src/services/extension-purchase.js +110 -0
- package/dist/src/services/extension-purchase.js.map +1 -0
- package/dist/src/services/extension-runtime.d.ts +23 -1
- package/dist/src/services/extension-runtime.d.ts.map +1 -1
- package/dist/src/services/extension-runtime.js +21 -4
- package/dist/src/services/extension-runtime.js.map +1 -1
- package/dist/src/services/extension-secrets.d.ts +8 -0
- package/dist/src/services/extension-secrets.d.ts.map +1 -1
- package/dist/src/services/extension-secrets.js +14 -0
- package/dist/src/services/extension-secrets.js.map +1 -1
- package/dist/src/services/federation-availability.d.ts.map +1 -1
- package/dist/src/services/federation-availability.js +1 -0
- package/dist/src/services/federation-availability.js.map +1 -1
- package/dist/src/services/federation-book.js +15 -7
- package/dist/src/services/federation-book.js.map +1 -1
- package/dist/src/services/federation-helpers.d.ts.map +1 -1
- package/dist/src/services/federation-helpers.js +1 -0
- package/dist/src/services/federation-helpers.js.map +1 -1
- package/dist/src/services/federation.d.ts.map +1 -1
- package/dist/src/services/federation.js +8 -6
- package/dist/src/services/federation.js.map +1 -1
- package/dist/src/services/gate-expiry.d.ts.map +1 -1
- package/dist/src/services/gate-expiry.js +2 -1
- package/dist/src/services/gate-expiry.js.map +1 -1
- package/dist/src/services/genesis-sync.d.ts.map +1 -1
- package/dist/src/services/genesis-sync.js +9 -4
- package/dist/src/services/genesis-sync.js.map +1 -1
- package/dist/src/services/handbooks/commerce.d.ts +13 -0
- package/dist/src/services/handbooks/commerce.d.ts.map +1 -0
- package/dist/src/services/handbooks/commerce.js +60 -0
- package/dist/src/services/handbooks/commerce.js.map +1 -0
- package/dist/src/services/handbooks/index.d.ts +1 -0
- package/dist/src/services/handbooks/index.d.ts.map +1 -1
- package/dist/src/services/handbooks/index.js +2 -2
- package/dist/src/services/handbooks/index.js.map +1 -1
- package/dist/src/services/hooks.d.ts.map +1 -1
- package/dist/src/services/hooks.js +2 -0
- package/dist/src/services/hooks.js.map +1 -1
- package/dist/src/services/invitations.d.ts.map +1 -1
- package/dist/src/services/invitations.js +2 -0
- package/dist/src/services/invitations.js.map +1 -1
- package/dist/src/services/living-author.d.ts.map +1 -1
- package/dist/src/services/living-author.js +4 -1
- package/dist/src/services/living-author.js.map +1 -1
- package/dist/src/services/living-pulse.js +18 -6
- package/dist/src/services/living-pulse.js.map +1 -1
- package/dist/src/services/mailbox-notification.d.ts.map +1 -1
- package/dist/src/services/mailbox-notification.js +1 -0
- package/dist/src/services/mailbox-notification.js.map +1 -1
- package/dist/src/services/match-notification.d.ts.map +1 -1
- package/dist/src/services/match-notification.js +2 -1
- package/dist/src/services/match-notification.js.map +1 -1
- package/dist/src/services/matching.d.ts.map +1 -1
- package/dist/src/services/matching.js +5 -2
- package/dist/src/services/matching.js.map +1 -1
- package/dist/src/services/memory-replication.d.ts.map +1 -1
- package/dist/src/services/memory-replication.js +3 -1
- package/dist/src/services/memory-replication.js.map +1 -1
- package/dist/src/services/message-broadcast.d.ts.map +1 -1
- package/dist/src/services/message-broadcast.js +2 -1
- package/dist/src/services/message-broadcast.js.map +1 -1
- package/dist/src/services/message-delivery.d.ts.map +1 -1
- package/dist/src/services/message-delivery.js +9 -4
- package/dist/src/services/message-delivery.js.map +1 -1
- package/dist/src/services/metered-access.d.ts +148 -0
- package/dist/src/services/metered-access.d.ts.map +1 -0
- package/dist/src/services/metered-access.js +128 -0
- package/dist/src/services/metered-access.js.map +1 -0
- package/dist/src/services/metered-entitlements.d.ts +140 -5
- package/dist/src/services/metered-entitlements.d.ts.map +1 -1
- package/dist/src/services/metered-entitlements.js +247 -30
- package/dist/src/services/metered-entitlements.js.map +1 -1
- package/dist/src/services/metered-settlement.d.ts +45 -0
- package/dist/src/services/metered-settlement.d.ts.map +1 -0
- package/dist/src/services/metered-settlement.js +117 -0
- package/dist/src/services/metered-settlement.js.map +1 -0
- package/dist/src/services/network-policy.d.ts.map +1 -1
- package/dist/src/services/network-policy.js +6 -2
- package/dist/src/services/network-policy.js.map +1 -1
- package/dist/src/services/notebook-classify.d.ts.map +1 -1
- package/dist/src/services/notebook-classify.js +7 -2
- package/dist/src/services/notebook-classify.js.map +1 -1
- package/dist/src/services/notebook-plan.d.ts.map +1 -1
- package/dist/src/services/notebook-plan.js +4 -1
- package/dist/src/services/notebook-plan.js.map +1 -1
- package/dist/src/services/notify.d.ts.map +1 -1
- package/dist/src/services/notify.js +6 -3
- package/dist/src/services/notify.js.map +1 -1
- package/dist/src/services/openrouter.d.ts.map +1 -1
- package/dist/src/services/openrouter.js +1 -0
- package/dist/src/services/openrouter.js.map +1 -1
- package/dist/src/services/organism-export.d.ts.map +1 -1
- package/dist/src/services/organism-export.js +4 -1
- package/dist/src/services/organism-export.js.map +1 -1
- package/dist/src/services/organism-import.d.ts.map +1 -1
- package/dist/src/services/organism-import.js +5 -1
- package/dist/src/services/organism-import.js.map +1 -1
- package/dist/src/services/perf-trace.js +3 -1
- package/dist/src/services/perf-trace.js.map +1 -1
- package/dist/src/services/personal-tunnel.js +14 -8
- package/dist/src/services/personal-tunnel.js.map +1 -1
- package/dist/src/services/presence.d.ts.map +1 -1
- package/dist/src/services/presence.js +11 -5
- package/dist/src/services/presence.js.map +1 -1
- package/dist/src/services/protected-resource.d.ts +60 -0
- package/dist/src/services/protected-resource.d.ts.map +1 -0
- package/dist/src/services/protected-resource.js +137 -0
- package/dist/src/services/protected-resource.js.map +1 -0
- package/dist/src/services/realtime-manager.d.ts.map +1 -1
- package/dist/src/services/realtime-manager.js +8 -5
- package/dist/src/services/realtime-manager.js.map +1 -1
- package/dist/src/services/safe-zip.d.ts.map +1 -1
- package/dist/src/services/safe-zip.js +4 -1
- package/dist/src/services/safe-zip.js.map +1 -1
- package/dist/src/services/scheduler-extension-job.js +2 -2
- package/dist/src/services/scheduler-extension-job.js.map +1 -1
- package/dist/src/services/scheduler.js +13 -7
- package/dist/src/services/scheduler.js.map +1 -1
- package/dist/src/services/security-incident.d.ts.map +1 -1
- package/dist/src/services/security-incident.js +7 -2
- package/dist/src/services/security-incident.js.map +1 -1
- package/dist/src/services/site-sync.d.ts.map +1 -1
- package/dist/src/services/site-sync.js +1 -0
- package/dist/src/services/site-sync.js.map +1 -1
- package/dist/src/services/site.d.ts +1 -1
- package/dist/src/services/site.d.ts.map +1 -1
- package/dist/src/services/site.js +29 -8
- package/dist/src/services/site.js.map +1 -1
- package/dist/src/services/structure-overview.d.ts.map +1 -1
- package/dist/src/services/structure-overview.js +4 -1
- package/dist/src/services/structure-overview.js.map +1 -1
- package/dist/src/services/structure-snapshot.d.ts.map +1 -1
- package/dist/src/services/structure-snapshot.js +3 -2
- package/dist/src/services/structure-snapshot.js.map +1 -1
- package/dist/src/services/sync-scheduler.js +3 -2
- package/dist/src/services/sync-scheduler.js.map +1 -1
- package/dist/src/services/tracked-response.js +1 -1
- package/dist/src/services/tracked-response.js.map +1 -1
- package/dist/src/services/trust-broadcast.d.ts.map +1 -1
- package/dist/src/services/trust-broadcast.js +1 -0
- package/dist/src/services/trust-broadcast.js.map +1 -1
- package/dist/src/services/upload-zip.d.ts +7 -0
- package/dist/src/services/upload-zip.d.ts.map +1 -1
- package/dist/src/services/upload-zip.js +19 -85
- package/dist/src/services/upload-zip.js.map +1 -1
- package/dist/src/services/web-bot-auth.d.ts.map +1 -1
- package/dist/src/services/web-bot-auth.js +1 -0
- package/dist/src/services/web-bot-auth.js.map +1 -1
- package/dist/src/services/workflow/engine-steps.d.ts.map +1 -1
- package/dist/src/services/workflow/engine-steps.js +12 -6
- package/dist/src/services/workflow/engine-steps.js.map +1 -1
- package/dist/src/services/workspace-export.d.ts.map +1 -1
- package/dist/src/services/workspace-export.js +5 -2
- package/dist/src/services/workspace-export.js.map +1 -1
- package/dist/src/services/workspace-import.d.ts.map +1 -1
- package/dist/src/services/workspace-import.js +2 -1
- package/dist/src/services/workspace-import.js.map +1 -1
- package/dist/src/services/workspace-versions.d.ts.map +1 -1
- package/dist/src/services/workspace-versions.js +0 -0
- package/dist/src/services/workspace-versions.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/db-types.d.ts +5 -0
- package/dist/src/storage/providers/postgres-kysely/db-types.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/helpers.d.ts +11 -0
- package/dist/src/storage/providers/postgres-kysely/helpers.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/helpers.js +14 -0
- package/dist/src/storage/providers/postgres-kysely/helpers.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/app-grants.d.ts +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/app-grants.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/app-grants.js +6 -0
- package/dist/src/storage/providers/postgres-kysely/methods/app-grants.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/capabilities.js +3 -3
- package/dist/src/storage/providers/postgres-kysely/methods/capabilities.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/ecosystem.js +3 -3
- package/dist/src/storage/providers/postgres-kysely/methods/ecosystem.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/federation.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/federation.js +12 -10
- package/dist/src/storage/providers/postgres-kysely/methods/federation.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/identity.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/identity.js +26 -12
- package/dist/src/storage/providers/postgres-kysely/methods/identity.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/marketplace.js +5 -5
- package/dist/src/storage/providers/postgres-kysely/methods/marketplace.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/node-ext-escrow.d.ts +9 -0
- package/dist/src/storage/providers/postgres-kysely/methods/node-ext-escrow.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/node-ext-escrow.js +31 -27
- package/dist/src/storage/providers/postgres-kysely/methods/node-ext-escrow.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/organisms.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/organisms.js +10 -14
- package/dist/src/storage/providers/postgres-kysely/methods/organisms.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/otk.js +3 -3
- package/dist/src/storage/providers/postgres-kysely/methods/otk.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/packages.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/packages.js +4 -14
- package/dist/src/storage/providers/postgres-kysely/methods/packages.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/template-listings.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/template-listings.js +11 -10
- package/dist/src/storage/providers/postgres-kysely/methods/template-listings.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/wallet.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/wallet.js +3 -1
- package/dist/src/storage/providers/postgres-kysely/methods/wallet.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/migrate.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/migrate.js +3 -0
- package/dist/src/storage/providers/postgres-kysely/migrate.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/migrations/0013_ghii_password_lockout.sql +12 -0
- package/dist/src/storage/providers/postgres-kysely/migrations/0014_transaction_initiator.sql +6 -0
- package/dist/src/storage/providers/postgres-kysely/migrations/0015_app_grant_spend_cap.sql +5 -0
- package/dist/src/storage/providers/sqlite/methods/apps.d.ts +1 -1
- package/dist/src/storage/providers/sqlite/methods/apps.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/apps.js +12 -2
- package/dist/src/storage/providers/sqlite/methods/apps.js.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/community.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/community.js +6 -1
- package/dist/src/storage/providers/sqlite/methods/community.js.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/identity-nodes.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/identity-nodes.js +9 -2
- package/dist/src/storage/providers/sqlite/methods/identity-nodes.js.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/work.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/work.js +4 -2
- package/dist/src/storage/providers/sqlite/methods/work.js.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/community.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/community.js +6 -1
- package/dist/src/storage/providers/sqlite/repos/community.js.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/identity.d.ts +3 -0
- package/dist/src/storage/providers/sqlite/repos/identity.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/identity.js +13 -4
- package/dist/src/storage/providers/sqlite/repos/identity.js.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/work.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/repos/work.js +4 -2
- package/dist/src/storage/providers/sqlite/repos/work.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema-tables-1.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema-tables-1.js +1 -0
- package/dist/src/storage/providers/sqlite/schema-tables-1.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema-tables-2.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema-tables-2.js +2 -0
- package/dist/src/storage/providers/sqlite/schema-tables-2.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.js +14 -1
- package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
- package/dist/src/storage/repositories/app-grant.repository.d.ts +1 -1
- package/dist/src/storage/repositories/app-grant.repository.d.ts.map +1 -1
- package/dist/src/storage/types/auth.d.ts +9 -0
- package/dist/src/storage/types/auth.d.ts.map +1 -1
- package/dist/src/storage/types/commerce.d.ts +13 -0
- package/dist/src/storage/types/commerce.d.ts.map +1 -1
- package/dist/src/utils/app-agent-discovery.d.ts +31 -0
- package/dist/src/utils/app-agent-discovery.d.ts.map +1 -0
- package/dist/src/utils/app-agent-discovery.js +96 -0
- package/dist/src/utils/app-agent-discovery.js.map +1 -0
- package/dist/src/utils/app-protect.d.ts.map +1 -1
- package/dist/src/utils/app-protect.js +1 -0
- package/dist/src/utils/app-protect.js.map +1 -1
- package/dist/src/utils/env-validator.d.ts.map +1 -1
- package/dist/src/utils/env-validator.js +5 -1
- package/dist/src/utils/env-validator.js.map +1 -1
- package/dist/src/utils/gaii.d.ts +50 -0
- package/dist/src/utils/gaii.d.ts.map +1 -1
- package/dist/src/utils/gaii.js +66 -0
- package/dist/src/utils/gaii.js.map +1 -1
- package/dist/src/utils/url-validator.d.ts.map +1 -1
- package/dist/src/utils/url-validator.js +4 -1
- package/dist/src/utils/url-validator.js.map +1 -1
- package/dist/src/utils/version.d.ts.map +1 -1
- package/dist/src/utils/version.js +1 -0
- package/dist/src/utils/version.js.map +1 -1
- package/dist/static/sdk-libs/auth/session.js +7 -3
- package/dist/static/sdk-libs/dist/aimeat-auth.js +1 -1
- package/dist/static/sdk-libs/dist/aimeat-exchange.js +675 -0
- package/dist/static/sdk-libs/dist/aimeat-game.js +1555 -0
- package/dist/static/sdk-libs/dist/aimeat-webmcp.js +46 -0
- package/dist/static/sdk-libs/exchange/browse.js +81 -0
- package/dist/static/sdk-libs/exchange/client.js +131 -0
- package/dist/static/sdk-libs/exchange/contracts.js +228 -0
- package/dist/static/sdk-libs/exchange/demand.js +106 -0
- package/dist/static/sdk-libs/exchange/earnings.js +39 -0
- package/dist/static/sdk-libs/exchange/format.js +51 -0
- package/dist/static/sdk-libs/exchange/index.js +70 -0
- package/dist/static/sdk-libs/exchange/odps-completeness.js +177 -0
- package/dist/static/sdk-libs/exchange/sell.js +253 -0
- package/dist/static/sdk-libs/game/board.js +331 -0
- package/dist/static/sdk-libs/game/dom.js +223 -0
- package/dist/static/sdk-libs/game/i18n.js +201 -0
- package/dist/static/sdk-libs/game/index.js +72 -0
- package/dist/static/sdk-libs/game/markers.js +150 -0
- package/dist/static/sdk-libs/game/menu.js +260 -0
- package/dist/static/sdk-libs/game/overlay.js +193 -0
- package/dist/static/sdk-libs/game/progress.js +280 -0
- package/dist/static/sdk-libs/game/score.js +134 -0
- package/dist/static/sdk-libs/game/screen.js +120 -0
- package/dist/static/sdk-libs/game/units.js +55 -0
- package/dist/static/sdk-libs/webmcp/index.js +63 -0
- package/package.json +2 -1
package/dist/locales/en.json
CHANGED
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"inbox.messageThis": "Send a message",
|
|
28
28
|
"nav.members": "Members",
|
|
29
29
|
"members.title": "Members",
|
|
30
|
-
"members.desc": "People
|
|
31
|
-
"members.empty": "
|
|
30
|
+
"members.desc": "People here who have published a page of their own.",
|
|
31
|
+
"members.empty": "Nobody has published a page yet. Yours can be the first.",
|
|
32
32
|
"inbox.broadcast": "Broadcast",
|
|
33
33
|
"inbox.broadcastTitle": "Send to many",
|
|
34
34
|
"inbox.bcModeBroadcast": "Message (repliable)",
|
|
@@ -181,6 +181,9 @@
|
|
|
181
181
|
"inbox.acceptedToast": "Request accepted.",
|
|
182
182
|
"inbox.blockedToast": "Contact blocked.",
|
|
183
183
|
"inbox.failed": "Could not send the message.",
|
|
184
|
+
"inbox.attachTooLarge": "\"{name}\" is {size} MB. This node accepts attachments up to {max} MB.",
|
|
185
|
+
"inbox.attachNoUrl": "The node did not issue an upload URL for \"{name}\".",
|
|
186
|
+
"inbox.attachFailed": "Upload of \"{name}\" failed (HTTP {status}).",
|
|
184
187
|
"inbox.markImportant": "Mark important (needs a reply)",
|
|
185
188
|
"inbox.trackResponse": "Track a response",
|
|
186
189
|
"inbox.trackHint": "Turn this message into an actionable record. When that record is marked done, a reply is sent back to the sender (automatically, or after your approval).",
|
|
@@ -583,33 +586,45 @@
|
|
|
583
586
|
"profile.scheduler.cal.showMore": "+{n} more",
|
|
584
587
|
"profile.scheduler.cal.showLess": "Show less",
|
|
585
588
|
"appGrant": {
|
|
586
|
-
"title": "Allow this app to access your data?",
|
|
587
|
-
"intro": "It will receive its own scoped, revocable token. Never your login session. You can revoke it anytime in Profile › Access.",
|
|
588
|
-
"scopesLabel": "Requested access",
|
|
589
|
-
"approve": "Allow access",
|
|
590
589
|
"approving": "Allowing…",
|
|
591
|
-
"deny": "Don't trust",
|
|
592
590
|
"externalBadge": "External app",
|
|
593
|
-
"
|
|
594
|
-
"
|
|
595
|
-
"needsLabel": "This app needs:",
|
|
596
|
-
"advancedShow": "⚙ Advanced, choose permissions",
|
|
597
|
-
"advancedHide": "▲ Hide advanced",
|
|
598
|
-
"trustCta": "❤ Trust, allow access",
|
|
591
|
+
"ownBadge": "Your app",
|
|
592
|
+
"connectTitle": "Connect {app} to your account",
|
|
599
593
|
"manageTitle": "Manage this app's access",
|
|
594
|
+
"worksWith": "Works with:",
|
|
595
|
+
"showDetails": "Show the exact permissions ({n})",
|
|
596
|
+
"hideDetails": "Hide the exact permissions",
|
|
597
|
+
"subsetHint": "Uncheck anything you would rather not give. The app gets exactly what stays checked.",
|
|
598
|
+
"assureKey": "It gets its own key, never your password.",
|
|
599
|
+
"assureHome": "What it saves lives in your own AIMEAT account.",
|
|
600
|
+
"assureRevoke": "You can revoke it in one click: Profile › Access.",
|
|
601
|
+
"assureNext": "Next time it signs you in without this screen.",
|
|
602
|
+
"connectCta": "Connect",
|
|
603
|
+
"notNow": "Not now",
|
|
600
604
|
"signingIn": "Signing you in…",
|
|
601
605
|
"revoke": "Revoke access",
|
|
602
606
|
"saveCta": "Save changes",
|
|
603
|
-
"nextNote": "Next time this app logs you in automatically, no prompt.",
|
|
604
607
|
"loginTitle": "Log in to continue",
|
|
605
608
|
"loginBody": "Log in on aimeat.io, then re-open the app's link to approve access.",
|
|
606
609
|
"loginCta": "Log in",
|
|
607
610
|
"errorTitle": "Cannot grant access",
|
|
608
611
|
"missing": "No authorization request.",
|
|
609
612
|
"expired": "This request has expired.",
|
|
610
|
-
"
|
|
611
|
-
"
|
|
612
|
-
|
|
613
|
+
"newScope": "new",
|
|
614
|
+
"area": {
|
|
615
|
+
"memory": "your saved data",
|
|
616
|
+
"storage": "your files",
|
|
617
|
+
"catalogue": "the public catalogue",
|
|
618
|
+
"social": "boards",
|
|
619
|
+
"messages": "your messages",
|
|
620
|
+
"wallet": "your morsel balance",
|
|
621
|
+
"knowledge": "your knowledge packages",
|
|
622
|
+
"task": "your agents' tasks",
|
|
623
|
+
"workflow": "your automations",
|
|
624
|
+
"ai": "your AI budget",
|
|
625
|
+
"notifications": "notifications to you",
|
|
626
|
+
"organism": "your workspaces"
|
|
627
|
+
}
|
|
613
628
|
},
|
|
614
629
|
"common": {
|
|
615
630
|
"cancel": "Cancel",
|
|
@@ -667,257 +682,10 @@
|
|
|
667
682
|
"themeToLight": "Switch to light mode",
|
|
668
683
|
"howItWorks": "How it works",
|
|
669
684
|
"business": "For your business",
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
"title": "Companies",
|
|
675
|
-
"desc": "Browse companies on this node and order their agents' offerings.",
|
|
676
|
-
"directory": "Directory",
|
|
677
|
-
"none": "No companies yet.",
|
|
678
|
-
"offeringsShort": "offerings",
|
|
679
|
-
"selectHint": "Pick a company to see its profile and catalogue.",
|
|
680
|
-
"businessId": "Business ID (Y-tunnus)",
|
|
681
|
-
"catalogue": "Offerings for sale",
|
|
682
|
-
"noOfferings": "This company has no offerings listed yet.",
|
|
683
|
-
"callable": "Runs instantly — result appears below.",
|
|
684
|
-
"viaInbox": "Handled by the seller's agent — track it in My orders.",
|
|
685
|
-
"usePlaceholder": "Describe what you need (optional)…",
|
|
686
|
-
"order": "Order",
|
|
687
|
-
"morsels": "morsels",
|
|
688
|
-
"loginToOrder": "Log in to order",
|
|
689
|
-
"orderResult": "Done — result below.",
|
|
690
|
-
"orderTask": "Order received — the seller's agent {agent} will handle it.",
|
|
691
|
-
"charged": "Charged {n} morsels",
|
|
692
|
-
"myOrders": "My orders",
|
|
693
|
-
"noMyOrders": "You haven't ordered anything yet.",
|
|
694
|
-
"done": "Done",
|
|
695
|
-
"free": "Free",
|
|
696
|
-
"fromCompany": "Company",
|
|
697
|
-
"stQueued": "Queued",
|
|
698
|
-
"stActive": "In progress",
|
|
699
|
-
"stDone": "Done",
|
|
700
|
-
"stFailed": "Failed",
|
|
701
|
-
"stInstant": "Instant",
|
|
702
|
-
"viewPortfolio": "View portfolio",
|
|
703
|
-
"enterpriseRequired": "The company directory requires the AIMEAT Enterprise edition. This node runs the free Community edition."
|
|
704
|
-
},
|
|
705
|
-
"myCompany": {
|
|
706
|
-
"title": "My Company",
|
|
707
|
-
"desc": "Create a company and sell your agents' capabilities (priced in morsels).",
|
|
708
|
-
"yourCompanies": "Your companies",
|
|
709
|
-
"noCompanies": "No companies yet — create one below.",
|
|
710
|
-
"createCompany": "Create a company",
|
|
711
|
-
"slug": "Slug (URL id)",
|
|
712
|
-
"name": "Company name",
|
|
713
|
-
"create": "Create company",
|
|
714
|
-
"selectHint": "Select a company on the left, or create one.",
|
|
715
|
-
"offerings": "Catalog",
|
|
716
|
-
"noOfferings": "Catalog is empty — add a capability from your agents below.",
|
|
717
|
-
"addFromOffers": "+ Add to catalog",
|
|
718
|
-
"done": "Done",
|
|
719
|
-
"pickHint": "Pick one of your agents' capabilities to add to the catalog:",
|
|
720
|
-
"noOffersToList": "Your agents have no offerings yet. Create offers on your agents first.",
|
|
721
|
-
"putUpForSale": "Put up for sale",
|
|
722
|
-
"listed": "Listed ✓",
|
|
723
|
-
"free": "free",
|
|
724
|
-
"callable": "instant",
|
|
725
|
-
"viaInbox": "via agent inbox",
|
|
726
|
-
"use": "Order",
|
|
727
|
-
"usePlaceholder": "What do you want? (optional)…",
|
|
728
|
-
"result": "Result",
|
|
729
|
-
"manage": "Manage",
|
|
730
|
-
"edit": "Edit",
|
|
731
|
-
"cancel": "Cancel",
|
|
732
|
-
"visibilityLabel": "Visibility",
|
|
733
|
-
"priceLabel": "Price",
|
|
734
|
-
"lastSavedBy": "Last saved by",
|
|
735
|
-
"notForSale": "not for sale",
|
|
736
|
-
"neverEdited": "Not configured yet — click Edit to set price + visibility.",
|
|
737
|
-
"tabCatalog": "Catalog",
|
|
738
|
-
"tabOrders": "Orders",
|
|
739
|
-
"tabCustomers": "Customers",
|
|
740
|
-
"tabMembers": "Members",
|
|
741
|
-
"noCustomers": "No customers yet.",
|
|
742
|
-
"orderCount": "Orders",
|
|
743
|
-
"lastOrder": "Last order",
|
|
744
|
-
"creator": "creator",
|
|
745
|
-
"byMember": "Offered by",
|
|
746
|
-
"roleAdmin": "Admin",
|
|
747
|
-
"roleMember": "Member",
|
|
748
|
-
"roleVisitor": "Visitor",
|
|
749
|
-
"removeMember": "Remove",
|
|
750
|
-
"addMember": "Add a member",
|
|
751
|
-
"memberUsername": "Username",
|
|
752
|
-
"addMemberBtn": "Add",
|
|
753
|
-
"visPrivate": "Private (only me)",
|
|
754
|
-
"visUnlisted": "Unlisted (by link)",
|
|
755
|
-
"visPublic": "Public (listed)",
|
|
756
|
-
"savePrice": "Save",
|
|
757
|
-
"saved": "Saved ✓",
|
|
758
|
-
"removeFromCatalog": "Remove from catalog",
|
|
759
|
-
"privateHint": "Private — others can't see or order this. Set Public to sell it.",
|
|
760
|
-
"agentNoOfferings": "No offerings yet — create one in Profile › Offerings.",
|
|
761
|
-
"orderPlacedTask": "Order received — the seller's agent {agent} will handle it. Track it under My orders.",
|
|
762
|
-
"orderPlacedResult": "Done — result below.",
|
|
763
|
-
"charged": "Charged {n} morsels",
|
|
764
|
-
"ordersReceived": "Orders received",
|
|
765
|
-
"myOrders": "My orders",
|
|
766
|
-
"noOrdersReceived": "No orders yet.",
|
|
767
|
-
"noMyOrders": "You haven't ordered anything yet.",
|
|
768
|
-
"orderedBy": "From",
|
|
769
|
-
"orderedWhat": "Order",
|
|
770
|
-
"fromCompany": "Company",
|
|
771
|
-
"statusLabel": "Status",
|
|
772
|
-
"stQueued": "Queued",
|
|
773
|
-
"stActive": "In progress",
|
|
774
|
-
"stDone": "Done",
|
|
775
|
-
"stFailed": "Failed",
|
|
776
|
-
"stInstant": "Instant",
|
|
777
|
-
"wallet": "Company wallet",
|
|
778
|
-
"morsels": "morsels",
|
|
779
|
-
"enterpriseBadge": "Enterprise feature",
|
|
780
|
-
"enterpriseRequired": "Company commerce requires the AIMEAT Enterprise edition. This node runs the free Community edition.",
|
|
781
|
-
"loginRequired": "Please log in to manage your companies.",
|
|
782
|
-
"tabSettings": "Settings",
|
|
783
|
-
"businessId": "Business ID (Y-tunnus)",
|
|
784
|
-
"businessIdOptional": "Business ID (Y-tunnus) — optional",
|
|
785
|
-
"businessIdHint": "Finnish format: 1234567-8. Required to sell as a registered company (KYB).",
|
|
786
|
-
"noBusinessId": "No business ID set — add it in Settings.",
|
|
787
|
-
"description": "Description",
|
|
788
|
-
"commission": "Company commission %",
|
|
789
|
-
"commissionHint": "The company's cut of each sale; the rest goes to the fulfilling member. Default 20%.",
|
|
790
|
-
"settingsSaved": "Settings saved ✓",
|
|
791
|
-
"loading": "Loading…",
|
|
792
|
-
"paymentsCheckout": "Checkout (node)",
|
|
793
|
-
"paymentsOn": "enabled",
|
|
794
|
-
"paymentsOff": "disabled",
|
|
795
|
-
"paymentsHandlers": "Payment methods on this node",
|
|
796
|
-
"paymentsNone": "No payment methods advertised (commerce disabled)",
|
|
797
|
-
"paymentsKyb": "KYB status",
|
|
798
|
-
"paymentsKybPre": "Business ID given (pre-stage)",
|
|
799
|
-
"paymentsKybMissing": "Business ID missing",
|
|
800
|
-
"paymentsKybHint": "Real-money selling will require completed KYB verification; morsel sales work without it.",
|
|
801
|
-
"pspTitle": "Payment provider (money sales)",
|
|
802
|
-
"pspHint": "Your own Stripe secret key. Money sales settle directly on YOUR Stripe account — the node never holds your key or funds.",
|
|
803
|
-
"pspConfigured": "Configured",
|
|
804
|
-
"pspMissing": "Not configured",
|
|
805
|
-
"pspSave": "Save key",
|
|
806
|
-
"pspRemove": "Remove",
|
|
807
|
-
"pspSaved": "Payment key saved ✓",
|
|
808
|
-
"pspRemoved": "Payment key removed",
|
|
809
|
-
"connectTitle": "Stripe Connect (money selling)",
|
|
810
|
-
"connectHint": "Onboard as a Stripe Express account under the platform. Card payments settle to YOUR account; the operator takes only the platform fee — no custody.",
|
|
811
|
-
"connectUnavailable": "Platform not configured",
|
|
812
|
-
"connectNotStarted": "Not started",
|
|
813
|
-
"connectReady": "Ready — accepts cards",
|
|
814
|
-
"connectPending": "Onboarding incomplete",
|
|
815
|
-
"connectOnboard": "Start Stripe onboarding",
|
|
816
|
-
"connectContinue": "Continue onboarding",
|
|
817
|
-
"connectRefresh": "Refresh status",
|
|
818
|
-
"connectOpened": "Opened Stripe onboarding in a new tab — finish there, then Refresh status.",
|
|
819
|
-
"connectRequirements": "Stripe still needs",
|
|
820
|
-
"kybVerified": "Verified",
|
|
821
|
-
"kybHintConnect": "KYB verifies automatically once your Stripe account can accept charges and you have given a Y-tunnus.",
|
|
822
|
-
"pspShowLegacy": "Advanced: use my own Stripe key instead",
|
|
823
|
-
"pspHideLegacy": "Hide advanced",
|
|
824
|
-
"payablesTitle": "Payables (owed to the seller)",
|
|
825
|
-
"payablesNone": "No money sales yet.",
|
|
826
|
-
"payablesGross": "Gross sales",
|
|
827
|
-
"payablesMember": "To the fulfilling member",
|
|
828
|
-
"payablesOrg": "To the company wallet",
|
|
829
|
-
"payablesFee": "Platform fee",
|
|
830
|
-
"dac7Title": "DAC7 / VAT (platform reporting)",
|
|
831
|
-
"dac7Consideration": "Total consideration",
|
|
832
|
-
"dac7Transactions": "Transactions",
|
|
833
|
-
"vatTotal": "VAT booked",
|
|
834
|
-
"saveSettings": "Save settings",
|
|
835
|
-
"receiptLabel": "Receipt",
|
|
836
|
-
"logo": "Company logo",
|
|
837
|
-
"noLogo": "No logo",
|
|
838
|
-
"uploadLogo": "Upload logo",
|
|
839
|
-
"removeLogo": "Remove",
|
|
840
|
-
"uploading": "Uploading…",
|
|
841
|
-
"logoTooBig": "Logo must be under 1 MB.",
|
|
842
|
-
"listedLabel": "Show this company in the public AIMEAT company directory",
|
|
843
|
-
"listedHint": "When on, your company — with its published services and pricing — appears in the corp catalogue. Turn off to stay private.",
|
|
844
|
-
"unlistedBadge": "not in directory",
|
|
845
|
-
"tabPortfolio": "Portfolio",
|
|
846
|
-
"tabSecretary": "Secretary",
|
|
847
|
-
"tabGovernance": "Governance",
|
|
848
|
-
"tabModel": "Company model",
|
|
849
|
-
"modelLoading": "Loading the company model…",
|
|
850
|
-
"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.",
|
|
851
|
-
"modelDescPlaceholder": "Describe your company: what it does, its departments, key roles and who reports to whom…",
|
|
852
|
-
"modelGenerate": "Generate model",
|
|
853
|
-
"modelGenerating": "Generating…",
|
|
854
|
-
"modelCopyPrompt": "Copy prompt",
|
|
855
|
-
"modelPaste": "Paste JSON",
|
|
856
|
-
"modelPastePlaceholder": "Paste the JSON your AI chat returned…",
|
|
857
|
-
"modelReview": "Review",
|
|
858
|
-
"modelDraft": "Draft — review before applying",
|
|
859
|
-
"modelApply": "Apply model",
|
|
860
|
-
"modelDiscard": "Discard",
|
|
861
|
-
"modelApplied": "Company model saved ✓",
|
|
862
|
-
"modelCopied": "Prompt copied ✓",
|
|
863
|
-
"modelParseErr": "Couldn't read a model from that — expected a JSON object.",
|
|
864
|
-
"modelEmpty": "No company model yet. Describe your company above to build one.",
|
|
865
|
-
"modelDepartments": "Departments",
|
|
866
|
-
"modelRoles": "Roles",
|
|
867
|
-
"modelPeople": "People",
|
|
868
|
-
"modelReporting": "Reporting lines",
|
|
869
|
-
"govLoading": "Loading financials…",
|
|
870
|
-
"govIntro": "Cost & ROI in financial terms — the company's transaction ledger, not raw tokens. Revenue, commission income, and cost-per-task per agent.",
|
|
871
|
-
"govRevenue": "Revenue",
|
|
872
|
-
"govOrders": "Orders",
|
|
873
|
-
"govAvg": "Avg / task",
|
|
874
|
-
"govCommissionIncome": "Commission income",
|
|
875
|
-
"govByAgent": "By agent",
|
|
876
|
-
"govNoActivity": "No orders yet — financials populate as the company's agents fulfil orders.",
|
|
877
|
-
"govAgent": "Agent",
|
|
878
|
-
"govTasks": "Tasks",
|
|
879
|
-
"govRevenueShort": "Revenue",
|
|
880
|
-
"govAvgShort": "Avg/task",
|
|
881
|
-
"govPayout": "Member payout",
|
|
882
|
-
"govWallet": "Org wallet",
|
|
883
|
-
"govCommission": "Commission",
|
|
884
|
-
"govFee": "Platform fee",
|
|
885
|
-
"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.",
|
|
886
|
-
"secLoading": "Loading the company Secretary…",
|
|
887
|
-
"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.",
|
|
888
|
-
"secEnable": "Enable company Secretary",
|
|
889
|
-
"secEnabling": "Enabling…",
|
|
890
|
-
"secTitle": "Company Secretary",
|
|
891
|
-
"secBrain": "Brain",
|
|
892
|
-
"secLocked": "Locked (managed by Enterprise)",
|
|
893
|
-
"secCaps": "Company-admin capabilities",
|
|
894
|
-
"secScopes": "Granted scopes",
|
|
895
|
-
"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.",
|
|
896
|
-
"pfLive": "Portfolio is live ✓",
|
|
897
|
-
"pfVisit": "Visit",
|
|
898
|
-
"pfUnpublish": "Unpublish",
|
|
899
|
-
"pfLastPublished": "Last published",
|
|
900
|
-
"pfStep1": "1. Choose what to include",
|
|
901
|
-
"pfIncludeInfo": "Company info (name, Y-tunnus, about)",
|
|
902
|
-
"pfIncludeOfferings": "Services & pricing",
|
|
903
|
-
"pfUseLogo": "Use the company logo",
|
|
904
|
-
"pfNoLogo": "upload one in Settings first",
|
|
905
|
-
"pfLook": "Describe how you'd like it to look",
|
|
906
|
-
"pfLookPlaceholder": "e.g. clean and modern, dark theme, bold headings, trustworthy and corporate…",
|
|
907
|
-
"pfGenerate": "Generate prompt",
|
|
908
|
-
"pfStep2": "2. Copy this prompt into your AI chat",
|
|
909
|
-
"pfStep2Hint": "Paste it into ChatGPT / Claude / any AI, then copy the HTML it produces.",
|
|
910
|
-
"pfCopyPrompt": "Copy prompt",
|
|
911
|
-
"pfStep3": "3. Paste the HTML here and publish",
|
|
912
|
-
"pfPublish": "Publish portfolio",
|
|
913
|
-
"pfPublished": "Portfolio published ✓",
|
|
914
|
-
"pfNeedHtml": "Paste the HTML your AI produced first.",
|
|
915
|
-
"pfCopied": "Prompt copied ✓",
|
|
916
|
-
"pfThemeHeading": "Ready-made theme",
|
|
917
|
-
"pfThemeHint": "Pick a theme and publish instantly — no AI needed. Uses your choices above.",
|
|
918
|
-
"pfPreview": "Preview",
|
|
919
|
-
"pfPublishTheme": "Publish with this theme",
|
|
920
|
-
"pfOrAi": "Or design your own with AI"
|
|
685
|
+
"learn": "Learn",
|
|
686
|
+
"exchange": "EXCHANGE",
|
|
687
|
+
"members": "Members",
|
|
688
|
+
"me": "Me"
|
|
921
689
|
},
|
|
922
690
|
"hero": {
|
|
923
691
|
"title": "Your data is yours. Your AI works for you.",
|
|
@@ -2532,16 +2300,20 @@
|
|
|
2532
2300
|
"wallet": {
|
|
2533
2301
|
"title": "Wallet",
|
|
2534
2302
|
"desc": "Morsels are the network's way of saying \"thank you.\" They're not money or crypto. They're simple tokens that flow between agents when services are shared. You get a daily allowance of 50 morsels/day (up to 500 cap) plus a 100 morsel welcome bonus when you join. You share morsels with others when they help you, and earn them back by helping in return. The economy is built around generosity, not spending.",
|
|
2535
|
-
"
|
|
2536
|
-
"
|
|
2303
|
+
"sellingTitle": "Selling & payments",
|
|
2304
|
+
"sellingDesc": "How money reaches you when someone buys from you. Every rail settles to you directly — this node holds no key and no funds of yours.",
|
|
2305
|
+
"railCard": "Card (Stripe)",
|
|
2306
|
+
"railCardNote": "Charges run on your own Stripe secret, so you are the merchant of record and the money lands on your Stripe balance. The key is stored server-side and never shown again.",
|
|
2307
|
+
"railStablecoin": "Stablecoin (x402)",
|
|
2308
|
+
"railInvoice": "Invoice",
|
|
2309
|
+
"railInvoiceReady": "always available",
|
|
2310
|
+
"railInvoiceNote": "Take a money order without any payment provider: nothing is captured online, the order completes, and the amount is booked as a payable for you to bill offline.",
|
|
2537
2311
|
"pspConfigured": "Configured",
|
|
2538
2312
|
"pspMissing": "Not configured",
|
|
2539
2313
|
"pspSave": "Save key",
|
|
2540
2314
|
"pspRemove": "Remove",
|
|
2541
2315
|
"pspSaved": "Payment key saved",
|
|
2542
2316
|
"pspRemoved": "Payment key removed",
|
|
2543
|
-
"x402Title": "Stablecoin payouts (x402)",
|
|
2544
|
-
"x402Desc": "A different rail from Stripe: a buyer signs a stablecoin payment and the facilitator settles it on-chain straight to this address. The token follows the price — a dollar price settles in USDC, a euro price in EURC — and the same address receives both. Non-custodial: the node holds no key and no funds. Without an address, a stablecoin sale of yours fails.",
|
|
2545
2317
|
"x402Configured": "Payout address set",
|
|
2546
2318
|
"x402Missing": "No payout address",
|
|
2547
2319
|
"x402Save": "Save address",
|
|
@@ -3194,7 +2966,16 @@
|
|
|
3194
2966
|
"validUntil": "Valid until {time} ({h} h)",
|
|
3195
2967
|
"noKeypair": "No keypair is stored for this account. Keys are generated at registration; older accounts may not have one.",
|
|
3196
2968
|
"fedAllowAllCaption": "Any federation node can verify your identity. Uncheck to restrict to the list below.",
|
|
3197
|
-
"adRuleExample": "Example: \"Always answer in Finnish\" or \"Never spend morsels without asking\"."
|
|
2969
|
+
"adRuleExample": "Example: \"Always answer in Finnish\" or \"Never spend morsels without asking\".",
|
|
2970
|
+
"agSpendTitle": "Spending limit",
|
|
2971
|
+
"agSpendNoLimit": "No limit — it may spend whatever you hold.",
|
|
2972
|
+
"agSpendUsed": "{spent} of {cap} morsels used",
|
|
2973
|
+
"agSpendPlaceholder": "morsels, or empty for no limit",
|
|
2974
|
+
"agCapSave": "Set limit",
|
|
2975
|
+
"agCapSaved": "Spending limit saved",
|
|
2976
|
+
"agCapResetBtn": "Clear counter",
|
|
2977
|
+
"agCapReset": "Counter cleared",
|
|
2978
|
+
"agCapFailed": "Could not change the limit"
|
|
3198
2979
|
},
|
|
3199
2980
|
"nodes": {
|
|
3200
2981
|
"title": "Personal Nodes",
|
|
@@ -4025,24 +3806,31 @@
|
|
|
4025
3806
|
}
|
|
4026
3807
|
},
|
|
4027
3808
|
"dev": {
|
|
4028
|
-
"title": "
|
|
4029
|
-
"subtitle": "
|
|
3809
|
+
"title": "Connect your AI to this node",
|
|
3810
|
+
"subtitle": "One line if your AI speaks MCP, a copy-paste prompt for everything else. Then build on it, or run a node of your own.",
|
|
4030
3811
|
"repos": {
|
|
4031
3812
|
"protocol": "aimeat-protocol on GitHub",
|
|
4032
3813
|
"crew": "crewaimeat on GitHub"
|
|
4033
3814
|
},
|
|
4034
3815
|
"stats": {
|
|
3816
|
+
"title": "Live on this node",
|
|
4035
3817
|
"agents": "Agents",
|
|
3818
|
+
"online": "online now",
|
|
3819
|
+
"apps": "Published apps",
|
|
3820
|
+
"organisms": "Organisms",
|
|
3821
|
+
"knowledge": "Knowledge packages",
|
|
4036
3822
|
"chatSessions": "Chat Sessions",
|
|
4037
3823
|
"services": "Services",
|
|
4038
3824
|
"boards": "Boards"
|
|
4039
3825
|
},
|
|
4040
3826
|
"quickStart": {
|
|
4041
|
-
"title": "
|
|
4042
|
-
"
|
|
3827
|
+
"title": "Start here",
|
|
3828
|
+
"mcpDesc": "If your AI speaks MCP, this one line is the whole setup. Claude Code, Cursor, VS Code, Codex CLI, Gemini CLI, Windsurf and OpenHands all do.",
|
|
3829
|
+
"mcpNote": "Other clients take the same URL in their custom connector dialog. Pick your platform below and you get the exact steps.",
|
|
3830
|
+
"desc": "No MCP, but your AI can read a web page? Paste this into the chat and it connects itself:",
|
|
4043
3831
|
"copy": "Copy",
|
|
4044
|
-
"note": "Works with
|
|
4045
|
-
"fallback": "
|
|
3832
|
+
"note": "Works with any AI that can browse (Grok, Claude, ChatGPT with browsing). The URL returns JSON instructions the AI understands.",
|
|
3833
|
+
"fallback": "For any other AI, pick your platform below and you get exact steps."
|
|
4046
3834
|
},
|
|
4047
3835
|
"step1": {
|
|
4048
3836
|
"label": "Select Your AI Platform"
|
|
@@ -4054,20 +3842,20 @@
|
|
|
4054
3842
|
"label": "Choose How to Connect"
|
|
4055
3843
|
},
|
|
4056
3844
|
"step4": {
|
|
4057
|
-
"label": "
|
|
3845
|
+
"label": "Publish your app"
|
|
4058
3846
|
},
|
|
4059
3847
|
"mode": {
|
|
4060
|
-
"loggedIn": "
|
|
4061
|
-
"loggedInDesc": "You can
|
|
4062
|
-
"anonymous": "
|
|
4063
|
-
"anonymousDesc": "You can
|
|
4064
|
-
"anonymousNote": "
|
|
4065
|
-
"signUp": "Sign
|
|
4066
|
-
"signUpNote": "
|
|
3848
|
+
"loggedIn": "Signed in as",
|
|
3849
|
+
"loggedInDesc": "You can publish apps to this node and share the link. Your agents connect under this account.",
|
|
3850
|
+
"anonymous": "Not signed in",
|
|
3851
|
+
"anonymousDesc": "You can read everything here, copy every prompt, and have your AI build an app.",
|
|
3852
|
+
"anonymousNote": "Publishing the app so others can use it needs an account.",
|
|
3853
|
+
"signUp": "Sign in",
|
|
3854
|
+
"signUpNote": "takes seconds: one click with Google, or email and password."
|
|
4067
3855
|
},
|
|
4068
3856
|
"community": {
|
|
4069
|
-
"title": "
|
|
4070
|
-
"desc": "
|
|
3857
|
+
"title": "Apps built on this node",
|
|
3858
|
+
"desc": "Published by people here. Open one to see what a single-file AIMEAT app looks like in use."
|
|
4071
3859
|
},
|
|
4072
3860
|
"profile": "Profile",
|
|
4073
3861
|
"humanPortal": "For Everyone",
|
|
@@ -4085,8 +3873,8 @@
|
|
|
4085
3873
|
"api": "API",
|
|
4086
3874
|
"apiDesc": "REST Interface",
|
|
4087
3875
|
"unavailable": "Not available on this plan",
|
|
4088
|
-
"upgradeForMcp": "MCP
|
|
4089
|
-
"upgradeForApi": "
|
|
3876
|
+
"upgradeForMcp": "MCP comes with a paid plan and puts the full AIMEAT toolset directly in your AI.",
|
|
3877
|
+
"upgradeForApi": "Use the Apps tab: this plan generates a complete web application from a prompt."
|
|
4090
3878
|
},
|
|
4091
3879
|
"copy": "Copy",
|
|
4092
3880
|
"copied": "Copied!",
|
|
@@ -4133,8 +3921,8 @@
|
|
|
4133
3921
|
"mcpProfileLinkAction": "View your sessions →",
|
|
4134
3922
|
"mcpAuthDetails": "How does MCP authentication work?",
|
|
4135
3923
|
"mcpAuthExplain": "<strong>OAuth 2.1 with Ed25519 signatures:</strong><ol style='margin:.5rem 0 0 1.25rem'><li>Your AI platform registers as an OAuth client (automatic)</li><li>AIMEAT sends an auth challenge to your browser</li><li>Your agent's private key signs: <code>GAII + nodeId + timestamp</code></li><li>AIMEAT verifies the signature and issues JWT access + refresh tokens</li><li>Your AI platform uses these tokens for all MCP tool calls</li></ol><p style='margin-top:.5rem'>Tokens refresh automatically. Your private key never leaves your browser.</p>",
|
|
4136
|
-
"apiBadge": "
|
|
4137
|
-
"apiDesc": "Your AI can make HTTP calls. Copy this prompt
|
|
3924
|
+
"apiBadge": "API, REST interface",
|
|
3925
|
+
"apiDesc": "Your AI can make HTTP calls but has no MCP. Copy this prompt into your AI chat. It registers as an agent, you approve it, and it gets a token.",
|
|
4138
3926
|
"browseBadge": "📡 API, Browse Only",
|
|
4139
3927
|
"browseDesc": "Your AI can browse URLs. Copy this prompt to get started:",
|
|
4140
3928
|
"browseUpgradeTitle": "Want full access?",
|
|
@@ -4143,12 +3931,13 @@
|
|
|
4143
3931
|
"browseUpgrade3": "Or use the {{promptPackageLink}} to generate an HTML app",
|
|
4144
3932
|
"promptPackageLabel": "Prompt Package",
|
|
4145
3933
|
"promptBadge": "🖥️ Apps, Application Builder",
|
|
4146
|
-
"promptDesc": "Your AI
|
|
3934
|
+
"promptDesc": "Your AI writes the code for you. Select what you want to build, then copy the prompt into your AI chat. The AI interviews you and generates a complete HTML application.",
|
|
4147
3935
|
"promptLoggedIn": "You're logged in: after your AI generates the app, come back here to upload it and get a shareable link!",
|
|
4148
3936
|
"promptAnon": "Anonymous mode. You'll need to share the generated HTML file yourself.",
|
|
4149
3937
|
"promptSignUp": "Sign up",
|
|
4150
3938
|
"promptSignUpNote": "to upload and get a share link.",
|
|
4151
|
-
"loading": "Loading..."
|
|
3939
|
+
"loading": "Loading...",
|
|
3940
|
+
"apiMcpHint": "If your AI does support MCP, use that instead. It is one line and you skip this entirely."
|
|
4152
3941
|
},
|
|
4153
3942
|
"goals": {
|
|
4154
3943
|
"dashboard": "Personal Dashboard",
|
|
@@ -4168,43 +3957,35 @@
|
|
|
4168
3957
|
"codeUpdatedShort": "Code updated",
|
|
4169
3958
|
"codeRemovedShort": "Code removed"
|
|
4170
3959
|
},
|
|
4171
|
-
"uploadSection": {
|
|
4172
|
-
"desc": "After your AI generates the HTML file, upload it here to get a shareable download link.",
|
|
4173
|
-
"accessCodeLabel": "Access Code (optional)",
|
|
4174
|
-
"accessCodePlaceholder": "Leave empty for public access",
|
|
4175
|
-
"accessCodeNote": "If set, downloaders will need this code. 4–64 characters.",
|
|
4176
|
-
"dragDrop": "Drag & drop your .html file here, or:",
|
|
4177
|
-
"chooseFile": "Choose File",
|
|
4178
|
-
"protected": "Protected with access code.",
|
|
4179
|
-
"changeCode": "Change Access Code",
|
|
4180
|
-
"newCodePlaceholder": "New code (or leave empty to remove)",
|
|
4181
|
-
"setCodePlaceholder": "Set a code to protect",
|
|
4182
|
-
"updateBtn": "Update",
|
|
4183
|
-
"fileSize": "File size: ",
|
|
4184
|
-
"shareTitle": "Share Your App",
|
|
4185
|
-
"shareDesc": "After your AI generates the HTML file:",
|
|
4186
|
-
"shareStep1": "Save the generated code as an .html file",
|
|
4187
|
-
"shareStep2": "Open it in your browser to test",
|
|
4188
|
-
"shareStep3": "Share the file with others via email, cloud drive, or messaging",
|
|
4189
|
-
"wantEasier": "Want easier sharing?",
|
|
4190
|
-
"createAccount": "Create an account",
|
|
4191
|
-
"downloadLinkNote": "to upload your app and get a personal download link like:"
|
|
4192
|
-
},
|
|
4193
3960
|
"appList": {
|
|
4194
3961
|
"protected": "Protected",
|
|
4195
3962
|
"by": "by ",
|
|
4196
3963
|
"accessCode": "Access code",
|
|
4197
3964
|
"newCodePlaceholder": "New code or empty to remove",
|
|
4198
3965
|
"setCodePlaceholder": "Set access code",
|
|
4199
|
-
"enterCode": "Please enter the access code"
|
|
3966
|
+
"enterCode": "Please enter the access code",
|
|
3967
|
+
"open": "Open"
|
|
4200
3968
|
},
|
|
4201
3969
|
"platformNotes": {
|
|
4202
|
-
"noHttp": "
|
|
3970
|
+
"noHttp": "Works through copy-paste prompts",
|
|
4203
3971
|
"terminal": "Can run terminal commands",
|
|
4204
3972
|
"vscodeSettings": "Add as MCP server in VS Code settings",
|
|
4205
3973
|
"pythonSandbox": "Python sandbox. Can make HTTP requests",
|
|
4206
3974
|
"functionCalling": "Models with function calling",
|
|
4207
|
-
"indexnow": "Can browse pages indexed in Bing (IndexNow)"
|
|
3975
|
+
"indexnow": "Can browse pages indexed in Bing (IndexNow)",
|
|
3976
|
+
"cliOneLiner": "One command in your terminal, then the AIMEAT tools are there",
|
|
3977
|
+
"mcpSettings": "Add AIMEAT as an MCP server in the settings",
|
|
3978
|
+
"consumerAppNoMcp": "The consumer app has no MCP. Use the copy-prompt path, or the CLI variant above",
|
|
3979
|
+
"chatgptDevMode": "MCP connectors work in Developer mode, on the paid tiers"
|
|
3980
|
+
},
|
|
3981
|
+
"publish": {
|
|
3982
|
+
"title": "Publish your app",
|
|
3983
|
+
"desc": "Your app runs on this node, isolated on its own address, with version history, rollback and a share link. It keeps your login, saved data, files, AI and realtime features.",
|
|
3984
|
+
"step1": "Open the app catalog",
|
|
3985
|
+
"step2": "Click + Add, open the Paste tab, and paste the HTML. The name and description fill in automatically.",
|
|
3986
|
+
"step3": "Click Publish. You get a link to share.",
|
|
3987
|
+
"cta": "Open the app catalog",
|
|
3988
|
+
"note": "Signing in takes seconds: one click with Google, or email and password."
|
|
4208
3989
|
}
|
|
4209
3990
|
},
|
|
4210
3991
|
"init": {
|
|
@@ -4318,6 +4099,7 @@
|
|
|
4318
4099
|
"operatorTypeCompany": "Company",
|
|
4319
4100
|
"operatorTypeOrganisation": "Organisation",
|
|
4320
4101
|
"operatorTypeAssociation": "Association",
|
|
4102
|
+
"operatorBusinessId": "Business ID (Y-tunnus, VAT id, company number)",
|
|
4321
4103
|
"operatorAddress": "Postal address (required by GDPR for the controller)",
|
|
4322
4104
|
"operatorAddressRequired": "Postal address is required",
|
|
4323
4105
|
"operatorCountry": "Country of operation",
|
|
@@ -7579,11 +7361,59 @@
|
|
|
7579
7361
|
"generatorLink": "Try the Generator"
|
|
7580
7362
|
},
|
|
7581
7363
|
"help": {
|
|
7364
|
+
"pageTitle": "Help",
|
|
7582
7365
|
"title": "Help your AI work with AIMEAT",
|
|
7583
|
-
"
|
|
7584
|
-
"
|
|
7585
|
-
"
|
|
7586
|
-
"
|
|
7366
|
+
"tabHuman": "For me",
|
|
7367
|
+
"tabAgent": "For my AI",
|
|
7368
|
+
"description": "If your AI assistant is having trouble connecting to this site or using it, copy the prompt below and paste it into your AI chat. It will guide your AI through connecting, signing in, and using everything available.",
|
|
7369
|
+
"copyBtn": "Copy prompt",
|
|
7370
|
+
"copied": "Copied",
|
|
7371
|
+
"loadError": "Could not load the help prompt. Try reloading the page.",
|
|
7372
|
+
"startTitle": "Getting started",
|
|
7373
|
+
"start1": "Sign in or create an account. One click with Google, or email and password.",
|
|
7374
|
+
"start2": "Connect your AI assistant so it can work here.",
|
|
7375
|
+
"start2Link": "Connection instructions",
|
|
7376
|
+
"start3": "Build your first app by describing it to your AI.",
|
|
7377
|
+
"start3Link": "Open the app catalog",
|
|
7378
|
+
"start4": "Learn the whole platform hands-on and free, straight in your browser.",
|
|
7379
|
+
"start4Link": "Open the Experience Center",
|
|
7380
|
+
"qTitle": "Common questions",
|
|
7381
|
+
"stuckTitle": "Still stuck",
|
|
7382
|
+
"stuckAi": "Ask your own AI: get the help prompt →",
|
|
7383
|
+
"stuckHuman": "Ask a human →",
|
|
7384
|
+
"contactSubject": "A question about AIMEAT",
|
|
7385
|
+
"agentEntryTitle": "For an agent reading this page directly",
|
|
7386
|
+
"epRoot": "machine-readable getting started",
|
|
7387
|
+
"epLlms": "the full agent manual",
|
|
7388
|
+
"epSpec": "the OpenAPI contract",
|
|
7389
|
+
"epMcp": "the MCP endpoint",
|
|
7390
|
+
"epPrompt": "this prompt as plain markdown",
|
|
7391
|
+
"q": {
|
|
7392
|
+
"agent": {
|
|
7393
|
+
"q": "What is an agent, and how is it different from an AI?",
|
|
7394
|
+
"a": "An AI is a model. An agent is a job you give an AI: it has a name, a memory that survives the conversation, a queue of tasks you write in plain language, and a spending cap. Change the AI behind it and the agent keeps its memory and its work."
|
|
7395
|
+
},
|
|
7396
|
+
"organism": {
|
|
7397
|
+
"q": "What is an organism, and when do I need one?",
|
|
7398
|
+
"a": "An organism is a shared space where people and agents work on the same thing. It keeps a history of every change, and anything that goes out passes a person first. You want one when more than one person, or more than one agent, touches the same material. For your own notes you do not need one."
|
|
7399
|
+
},
|
|
7400
|
+
"privacy": {
|
|
7401
|
+
"q": "Who can see my data?",
|
|
7402
|
+
"a": "Everything starts private, and you choose what to publish. Agents and apps reach exactly what you handed them and nothing beside it, every read and write carries the name of whoever did it, and you can take a permission back at any time."
|
|
7403
|
+
},
|
|
7404
|
+
"cost": {
|
|
7405
|
+
"q": "What are morsels, and what does AI cost me?",
|
|
7406
|
+
"a": "Morsels are the daily allowance here, and they refill every day. They pace expensive operations. Real money is metered separately: AI spend goes against your own key, and you can see it per agent and per project."
|
|
7407
|
+
},
|
|
7408
|
+
"connect": {
|
|
7409
|
+
"q": "My AI says it cannot connect. What now?",
|
|
7410
|
+
"a": "If your AI supports MCP, add this site as a connector: one command in Claude Code, or paste the MCP address into your client’s custom connector dialog. For every other AI, copy the help prompt on the \"For my AI\" tab into the chat and it will orient itself from there."
|
|
7411
|
+
},
|
|
7412
|
+
"broken": {
|
|
7413
|
+
"q": "Something is broken. Who do I tell?",
|
|
7414
|
+
"a": "Tell whoever runs this site. Your AI can send the message from inside the session, or use the contact details below. Say what you were doing and what you expected to happen."
|
|
7415
|
+
}
|
|
7416
|
+
}
|
|
7587
7417
|
},
|
|
7588
7418
|
"capabilities": {
|
|
7589
7419
|
"title": "Capabilities",
|
|
@@ -7970,25 +7800,25 @@
|
|
|
7970
7800
|
"accountRetry": "I signed in — try again"
|
|
7971
7801
|
},
|
|
7972
7802
|
"landing": {
|
|
7973
|
-
"heroTitle": "
|
|
7974
|
-
"heroSub": "
|
|
7803
|
+
"heroTitle": "Owner, or tenant. Which one do you want to be?",
|
|
7804
|
+
"heroSub": "Your memory, your agents, your balance sheet. On a rented platform you build a tool and pay for it. Here the tool can bill someone else, and it is yours.",
|
|
7975
7805
|
"askAiTitle": "Let your own AI tell you what AIMEAT is, for you",
|
|
7976
7806
|
"askAiSub": "Paste this into Claude, ChatGPT or any AI. It asks a couple of questions about you, then explains what AIMEAT means for your situation, and what it won't solve.",
|
|
7977
7807
|
"askAiCopy": "Copy prompt",
|
|
7978
7808
|
"askAiCopied": "Copied ✓",
|
|
7979
|
-
"tickerTitle": "Live activity
|
|
7980
|
-
"tickerFallback": "Agents
|
|
7809
|
+
"tickerTitle": "Live activity here",
|
|
7810
|
+
"tickerFallback": "Agents here write, schedule and publish around the clock.",
|
|
7981
7811
|
"published": "published",
|
|
7982
7812
|
"agentsOnline": "agents online",
|
|
7983
7813
|
"minAgo": "{n} min ago",
|
|
7984
7814
|
"hAgo": "{n} h ago",
|
|
7985
|
-
"todayPrefix": "
|
|
7815
|
+
"todayPrefix": "Here today:",
|
|
7986
7816
|
"humanHours": "human hours",
|
|
7987
7817
|
"statWrites": "documents published",
|
|
7988
7818
|
"statTasks": "tasks completed",
|
|
7989
7819
|
"statSchedules": "schedules fired",
|
|
7990
|
-
"statsFallback": "
|
|
7991
|
-
"ownLine": "The same could run for you
|
|
7820
|
+
"statsFallback": "Agents run here around the clock: schedules, tasks and publishing, with no human hours behind them.",
|
|
7821
|
+
"ownLine": "The same could run for you: your own server, your data, your agents.",
|
|
7992
7822
|
"ownCta": "From 49 €/mo →",
|
|
7993
7823
|
"cardATitle": "Try the apps",
|
|
7994
7824
|
"cardAText": "Play instantly, no login. All built with an AI chat.",
|
|
@@ -8001,12 +7831,12 @@
|
|
|
8001
7831
|
"cardCCta": "See packages →",
|
|
8002
7832
|
"loop1": "Copy the prompt into your AI chat",
|
|
8003
7833
|
"loop2": "The AI interviews you and builds the app",
|
|
8004
|
-
"loop3": "The app
|
|
7834
|
+
"loop3": "The app goes live at its own address. Share the link.",
|
|
8005
7835
|
"galleryTitle": "Built with this loop: real apps, try them",
|
|
8006
7836
|
"builtInChat": "built in an AI chat session",
|
|
8007
7837
|
"footPricing": "Pricing",
|
|
8008
7838
|
"footDocs": "Docs",
|
|
8009
|
-
"footOwnNode": "Run your own
|
|
7839
|
+
"footOwnNode": "Run it on your own server",
|
|
8010
7840
|
"footDev": "For developers",
|
|
8011
7841
|
"agentOnlineOne": "agent online",
|
|
8012
7842
|
"evExtension": "published an update",
|
|
@@ -8021,34 +7851,34 @@
|
|
|
8021
7851
|
"galleryGraph": "Plot 3D math functions in the browser.",
|
|
8022
7852
|
"galleryBandJam": "Make music with your friends, live!",
|
|
8023
7853
|
"buildTitle": "Build your app in 10 minutes, copy this prompt",
|
|
8024
|
-
"buildSub": "Paste into Claude, ChatGPT or any AI. It asks about your idea, builds the app and
|
|
7854
|
+
"buildSub": "Paste into Claude, ChatGPT or any AI. It asks about your idea, builds the app and puts it live for you. Share the link when done.",
|
|
8025
7855
|
"buildCopy": "Copy prompt",
|
|
8026
7856
|
"buildCopied": "Copied ✓",
|
|
8027
7857
|
"startTemplate": "Start from a template",
|
|
8028
7858
|
"fromScratch": "(none — build from scratch)",
|
|
8029
|
-
"feedTitle": "Happening
|
|
8030
|
-
"feedSub": "Public apps,
|
|
7859
|
+
"feedTitle": "Happening here right now",
|
|
7860
|
+
"feedSub": "Public apps, shared spaces and agent materials as they are published. Click a row for details.",
|
|
8031
7861
|
"feedTabApps": "Apps",
|
|
8032
7862
|
"feedTabOrganisms": "Organisms",
|
|
8033
7863
|
"feedTabAgents": "Agents",
|
|
8034
7864
|
"feedOpen": "Open →",
|
|
8035
7865
|
"feedLoading": "Loading…",
|
|
8036
7866
|
"feedEmpty": "Nothing here yet. Be the first to publish something public.",
|
|
8037
|
-
"totalsSub": "What's live
|
|
7867
|
+
"totalsSub": "What's live here right now. An organism is a shared space where people and their agents work on the same thing.",
|
|
8038
7868
|
"totalApps": "public apps",
|
|
8039
7869
|
"totalOrganisms": "organisms",
|
|
8040
7870
|
"totalAgents": "agents",
|
|
8041
7871
|
"totalOnline": "online now",
|
|
8042
7872
|
"totalKnowledge": "knowledge packages",
|
|
8043
7873
|
"totalDownloads": "app downloads",
|
|
8044
|
-
"heroKicker": "
|
|
7874
|
+
"heroKicker": "Two roles in the agent economy.",
|
|
8045
7875
|
"heroLead": "Six agents. Zero human hours.",
|
|
8046
7876
|
"heroOpenPaper": "Open tonight's paper",
|
|
8047
7877
|
"heroShotAlt": "AIMEAT Sanomat, tonight's edition",
|
|
8048
7878
|
"heroPaperLine": "Tonight's edition · written entirely by agents",
|
|
8049
7879
|
"heroSub2": "A real app, built and run by AI on AIMEAT. Look before you sign up.",
|
|
8050
7880
|
"heroTryFree": "Try it free →",
|
|
8051
|
-
"heroGetOwn": "
|
|
7881
|
+
"heroGetOwn": "Run it on your own server →",
|
|
8052
7882
|
"buildHeroKicker": "A safe place to build with AI.",
|
|
8053
7883
|
"buildHeroTitle": "Build a real app with your AI in minutes, and it's yours.",
|
|
8054
7884
|
"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.",
|
|
@@ -8064,20 +7894,26 @@
|
|
|
8064
7894
|
"wallSearch": "Search apps…",
|
|
8065
7895
|
"wallNoMatch": "No apps match your search.",
|
|
8066
7896
|
"agentBuildTitle": "Build an agent in 10 minutes, copy this prompt",
|
|
8067
|
-
"agentBuildSub": "Paste into Claude, ChatGPT or any AI. It builds
|
|
7897
|
+
"agentBuildSub": "Paste into Claude, ChatGPT or any AI. It builds an AI agent that runs on your own machine with no keys to buy, connects it to your account here, and shows you how to share it. For coders and tinkerers; everyone else can use the desktop app instead.",
|
|
7898
|
+
"heroCtaBuild": "Build something, free →",
|
|
7899
|
+
"heroCtaBusiness": "See what it does for a business →",
|
|
7900
|
+
"heroCtaLoading": "Loading the build prompt…",
|
|
7901
|
+
"buildLoading": "Loading the build prompt…",
|
|
7902
|
+
"buildShowFull": "Show the full prompt",
|
|
7903
|
+
"buildChars": "characters"
|
|
8068
7904
|
},
|
|
8069
7905
|
"pricing": {
|
|
8070
7906
|
"title": "Pricing",
|
|
8071
|
-
"sub": "Start free. Move to your own
|
|
7907
|
+
"sub": "Start free. Move to a server of your own when the data should be yours alone.",
|
|
8072
7908
|
"mo": "mo",
|
|
8073
7909
|
"tryName": "Try it",
|
|
8074
|
-
"try1": "
|
|
7910
|
+
"try1": "Hosted here, shared with everyone else trying it.",
|
|
8075
7911
|
"try2": "Morsels, public apps, the prompt loop.",
|
|
8076
7912
|
"tryCta": "Start free →",
|
|
8077
|
-
"ownName": "
|
|
8078
|
-
"own1": "
|
|
7913
|
+
"ownName": "Your own server",
|
|
7914
|
+
"own1": "A machine of your own, your data on it, and your own AI keys.",
|
|
8079
7915
|
"own2": "No backups, community support.",
|
|
8080
|
-
"proName": "
|
|
7916
|
+
"proName": "Your own server, Pro",
|
|
8081
7917
|
"pro1": "Backups and a bigger instance.",
|
|
8082
7918
|
"pro2": "Ready-made agent packages (CrewAI crew installed).",
|
|
8083
7919
|
"pro3": "Email support.",
|
|
@@ -8094,11 +7930,12 @@
|
|
|
8094
7930
|
},
|
|
8095
7931
|
"contact": {
|
|
8096
7932
|
"title": "Talk to a human.",
|
|
8097
|
-
"sub": "
|
|
7933
|
+
"sub": "You reach us directly. A demo fits in the same call.",
|
|
7934
|
+
"linkedin": "LinkedIn"
|
|
8098
7935
|
},
|
|
8099
7936
|
"hiw": {
|
|
8100
|
-
"title": "A place where AIs go to work",
|
|
8101
|
-
"intro": "AIMEAT
|
|
7937
|
+
"title": "A place where AIs go to work, and where the work is yours to sell",
|
|
7938
|
+
"intro": "AIMEAT gives any AI an identity, a memory, a task queue and a manager. Bring your own model. What the work produces stays yours, and it can carry a price.",
|
|
8102
7939
|
"dAria": "How AIMEAT works",
|
|
8103
7940
|
"dModels": "AI models",
|
|
8104
7941
|
"dModels1": "Swappable:",
|
|
@@ -8123,15 +7960,28 @@
|
|
|
8123
7960
|
"cardAgentsTitle": "Agents",
|
|
8124
7961
|
"cardAgentsText": "An agent is not an AI. It is a job for an AI. It has an identity, a memory that persists, a task queue you feed in plain language, working hours and a spending cap. Quality can be reviewed afterwards. Run it on any model: CrewAI, Claude, GPT, your own runtime.",
|
|
8125
7962
|
"cardOrgTitle": "Organisms",
|
|
8126
|
-
"cardOrgText": "An organism
|
|
7963
|
+
"cardOrgText": "An organism is where the work turns into something you keep: one shared picture of a project that people and agents both write to. Agents get to do a lot and do it fast, and the decisions that matter wait for a person. Every change carries the name of whoever made it.",
|
|
8127
7964
|
"cardAssetsTitle": "Your assets",
|
|
8128
|
-
"cardAssetsText": "Models come and go.
|
|
8129
|
-
"exampleTitle": "
|
|
7965
|
+
"cardAssetsText": "Models come and go. Your identity, your memory, your work history and your results stay on the machine you control. Swap one AI for another mid-flight and the agent picks up where it left off.",
|
|
7966
|
+
"exampleTitle": "Examples running here",
|
|
8130
7967
|
"exampleText": "AIMEAT Sanomat writes itself every evening. news-fetcher pulls raw material at 17:00, six writer agents produce the articles, and the paper ships with zero human hours.",
|
|
8131
7968
|
"exampleCta": "Read tonight's paper →",
|
|
8132
7969
|
"ctaTry": "Try it free →",
|
|
8133
7970
|
"ctaPricing": "See pricing →",
|
|
8134
|
-
"ctaBusiness": "For your business →"
|
|
7971
|
+
"ctaBusiness": "For your business →",
|
|
7972
|
+
"dExchange": "EXCHANGE",
|
|
7973
|
+
"dExchange1": "Priced capabilities",
|
|
7974
|
+
"dExchange2": "contracts, settlement",
|
|
7975
|
+
"dExchange3": "other companies",
|
|
7976
|
+
"cardAppsTitle": "Apps",
|
|
7977
|
+
"cardAppsText": "Describe what you want and your AI builds it. The app gets its own web address, keeps every earlier version in case you want one back, and comes with a link you can send to anyone. It reaches your information through permissions you granted and can take back.",
|
|
7978
|
+
"cardConsentTitle": "Consent",
|
|
7979
|
+
"cardConsentText": "Every agent and every app works under named permissions, and every action is attributed to whoever took it. Take a permission back and the door closes. The audit is a report, not a project.",
|
|
7980
|
+
"exampleApps": "An app you own: CADENCE is a CRM built by describing it. Contacts, deals and follow-ups, kept up to date by agents while you sell.",
|
|
7981
|
+
"exampleAppsCta": "Open it →",
|
|
7982
|
+
"exampleExchange": "Work with a price: a capability listed on EXCHANGE, bought by another company’s agent under a contract, every call logged and settled.",
|
|
7983
|
+
"exampleExchangeCta": "See the market →",
|
|
7984
|
+
"ctaLearn": "Learn it hands-on, free →"
|
|
8135
7985
|
},
|
|
8136
7986
|
"start": {
|
|
8137
7987
|
"jira": {
|
|
@@ -8220,7 +8070,7 @@
|
|
|
8220
8070
|
},
|
|
8221
8071
|
"pb": {
|
|
8222
8072
|
"title": "Your playbook",
|
|
8223
|
-
"sub": "Built from your answers. Save it: it doubles as the first document
|
|
8073
|
+
"sub": "Built from your answers. Save it: it doubles as the first document in your first shared space.",
|
|
8224
8074
|
"estHosted": "Estimated time: 10–15 minutes",
|
|
8225
8075
|
"estSelf": "Estimated time: from zero to a running node, proven in 21 minutes",
|
|
8226
8076
|
"copyAll": "Copy playbook",
|
|
@@ -8268,7 +8118,7 @@
|
|
|
8268
8118
|
},
|
|
8269
8119
|
"ec": {
|
|
8270
8120
|
"title": "Keep going: the Experience Center",
|
|
8271
|
-
"a": "A hands-on academy for the whole ecosystem: connect your AI (the nicest way), then agents, apps,
|
|
8121
|
+
"a": "A hands-on academy for the whole ecosystem: connect your AI (the nicest way), then agents, apps, shared spaces and automation — layer by layer, with try-it links.",
|
|
8272
8122
|
"link": "Open the Experience Center →"
|
|
8273
8123
|
},
|
|
8274
8124
|
"h1": {
|
|
@@ -8299,38 +8149,66 @@
|
|
|
8299
8149
|
},
|
|
8300
8150
|
"biz": {
|
|
8301
8151
|
"heroTitle": "A digital employee that never sleeps",
|
|
8302
|
-
"heroSub": "Scheduled agents fetch, write, report and ship while you do something else. Every step traceable.",
|
|
8303
|
-
"proofUnavailable": "
|
|
8152
|
+
"heroSub": "Scheduled agents fetch, write, report and ship while you do something else. Every step traceable, and what they produce is yours.",
|
|
8153
|
+
"proofUnavailable": "The live example runs on the machine of whoever operates this site.",
|
|
8304
8154
|
"c1Title": "I wake up already knowing what happened in my field",
|
|
8305
|
-
"c1Text": "
|
|
8306
|
-
"c1Proof": "Read tonight's
|
|
8155
|
+
"c1Text": "A publication that writes itself every evening. Agents pull the raw material, write the pieces and ship the edition. Zero human hours.",
|
|
8156
|
+
"c1Proof": "Read tonight's edition →",
|
|
8307
8157
|
"c1Cta": "The same, from your topics →",
|
|
8308
|
-
"c2Title": "My
|
|
8309
|
-
"c2Text": "
|
|
8310
|
-
"c2Proof": "
|
|
8158
|
+
"c2Title": "My morning briefing is waiting, and it knows what is stale",
|
|
8159
|
+
"c2Text": "Say once what you want to know every morning. An agent gathers, summarises and sends, and the board shows how old each answer is with a button that puts the agent back to work.",
|
|
8160
|
+
"c2Proof": "Open the briefing board →",
|
|
8311
8161
|
"c2Cta": "Order your morning report →",
|
|
8312
8162
|
"c3Title": "I know what's being said about us, and what to do about it",
|
|
8313
|
-
"c3Text": "An agent tracks mentions, competitors and
|
|
8314
|
-
"c3Proof": "
|
|
8163
|
+
"c3Text": "An agent tracks mentions, competitors and registry changes, and produces an action list. Company cards fill themselves from open data.",
|
|
8164
|
+
"c3Proof": "Open the company radar →",
|
|
8315
8165
|
"c3Cta": "Start the radar →",
|
|
8316
8166
|
"c4Title": "My project knows its own status",
|
|
8317
8167
|
"c4Text": "When developers have agents, sprints slow things down. An organism is a continuous shared picture: goals, roadmap, bugs, decisions and a living context every agent reads before working and updates after. A human approves the decisions; everything else moves at agent speed.",
|
|
8318
8168
|
"c4Quote": "This could replace Jira.",
|
|
8319
8169
|
"c4QuoteBy": "game developer, large studio",
|
|
8320
|
-
"c4Proof": "Open
|
|
8170
|
+
"c4Proof": "Open our own roadmap, live →",
|
|
8321
8171
|
"c4Cta": "Turn your project into an organism →",
|
|
8322
8172
|
"c5Title": "A user's idea shipped the same day",
|
|
8323
|
-
"c5Text": "A user left an idea in the morning. An agent triaged it into a task, implemented it, ran the tests
|
|
8324
|
-
"c5Proof": "
|
|
8173
|
+
"c5Text": "A user left an idea in the morning. An agent triaged it into a task, implemented it, ran the tests, updated the status page and marked the feedback resolved. A human confirmed it works. The whole chain is traceable: feedback → task → release.",
|
|
8174
|
+
"c5Proof": "Follow one from idea to release →",
|
|
8325
8175
|
"c5Cta": "Open a feedback loop for your customers →",
|
|
8326
|
-
"c6Title": "
|
|
8327
|
-
"c6Text": "The
|
|
8328
|
-
"c6Proof": "
|
|
8176
|
+
"c6Title": "A whole company running on a server of its own",
|
|
8177
|
+
"c6Text": "The homepage lives in agent memory on this company’s own machine, a node of its own connected to the network. One crew of agents checks the machine every morning at 04:00; another runs research overnight.",
|
|
8178
|
+
"c6Proof": "Open a company that runs this way →",
|
|
8329
8179
|
"c6Cta": "See hosting packages →",
|
|
8330
8180
|
"allLive": "Everything above runs in production right now. No proof is a mockup.",
|
|
8331
8181
|
"ctaDemo": "Book a demo →",
|
|
8332
8182
|
"ctaPricing": "See pricing →",
|
|
8333
|
-
"writtenToday": "written today at"
|
|
8183
|
+
"writtenToday": "written today at",
|
|
8184
|
+
"g1Title": "The work happens without you",
|
|
8185
|
+
"g2Title": "The company runs on it",
|
|
8186
|
+
"g3Title": "The company earns on it",
|
|
8187
|
+
"c2ProofNote": "Example, sent today at 07:00: \"3 new bookings · 1 review (4★, answered) · a competitor dropped prices · suggested action: weekend campaign.\"",
|
|
8188
|
+
"c3ProofNote": "Example action list: \"1) Answer the review on platform Y today. 2) Trend Z is rising, draft a post. 3) A competitor launched a campaign, counter-offer attached.\"",
|
|
8189
|
+
"c7Title": "My CRM costs less than lunch, and my agents keep it fed",
|
|
8190
|
+
"c7Text": "Contacts, companies, deals and follow-ups, with a history of every change and no way to lose one. Tap to dial, dictate the note by voice, set the next follow-up. Company details fill themselves in from the trade register.",
|
|
8191
|
+
"c7Proof": "Open the CRM →",
|
|
8192
|
+
"c7Cta": "Move your CRM here →",
|
|
8193
|
+
"c8Title": "My API is something agents can find, use and pay for",
|
|
8194
|
+
"c8Text": "You already have an API. Making it discoverable, readable and billable for agents is a day of work, and after it every agent on the network can find it, use it and pay for it.",
|
|
8195
|
+
"c8Proof": "See what agent-native looks like →",
|
|
8196
|
+
"c8Cta": "Make your API agent-native →",
|
|
8197
|
+
"c9Title": "My data sells itself while I sleep",
|
|
8198
|
+
"c9Text": "Publish a capability once and it carries a price. Another company’s app, or another company’s agent, buys exactly what it needs under a contract, and every call is logged and settled. You see what it earned; the buyer saw the price before the first call.",
|
|
8199
|
+
"c9Proof": "Open the marketplace →",
|
|
8200
|
+
"c9Cta": "List your first capability →",
|
|
8201
|
+
"c10Title": "What we know how to do is now a product",
|
|
8202
|
+
"c10Text": "A way of working, packaged: the steps, the prompts, the checks. Run it for one team, then for the next customer without rebuilding it.",
|
|
8203
|
+
"c10Proof": "Open a playbook →",
|
|
8204
|
+
"c10Cta": "Package what you know →",
|
|
8205
|
+
"sovTitle": "Why owning it is the reason to buy",
|
|
8206
|
+
"sov0": "A company here is a node, not an account type. You take your own AIMEAT node, put your business identity and your own payment keys on it, invite your people and build the apps your work needs. Nothing about it is a separate product tier.",
|
|
8207
|
+
"sov1": "Your data stays on a server you control and stays with you, so your own certification is the one that counts.",
|
|
8208
|
+
"sov2": "Every action is logged: who read what, who authorised it, what it cost. The audit is a report, not a project.",
|
|
8209
|
+
"sov3": "Agents and apps work under named permissions you can take back with one click, and every action is attributed to whoever took it.",
|
|
8210
|
+
"sov4": "The code is MIT licensed and readable. A closed competitor can only promise the same thing.",
|
|
8211
|
+
"ctaAssessment": "Free: where is your AI right now? →"
|
|
8334
8212
|
},
|
|
8335
8213
|
"markdown.embed.loading": "Loading…",
|
|
8336
8214
|
"markdown.embed.notFound": "Key not found",
|
|
@@ -8446,5 +8324,7 @@
|
|
|
8446
8324
|
"invite.signedInAs": "You're signed in as {owner}.",
|
|
8447
8325
|
"invite.mismatchBody": "This invitation was sent to {email}. It can only be accepted by the account whose verified email is that address. Sign out and open the link again, or ask the inviter to add your account directly.",
|
|
8448
8326
|
"invite.signOutRetry": "Sign out",
|
|
8449
|
-
"invite.switchAccount": "Use a different account"
|
|
8327
|
+
"invite.switchAccount": "Use a different account",
|
|
8328
|
+
"members.yours": "Every account can have one. Build it yourself, or let your own AI write it from what you have actually done here: the apps you published, the agents you run, the work that got finished. It becomes your page at a web address you can hand to anyone.",
|
|
8329
|
+
"members.yoursCta": "Make your page →"
|
|
8450
8330
|
}
|