aimeat 3.2.0 → 3.3.1
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 +1 -1
- package/dist/.env.example +58 -1
- package/dist/build-stamp.json +4 -4
- package/dist/locales/en.json +41 -1
- package/dist/locales/es.json +41 -1
- package/dist/locales/fi.json +43 -3
- package/dist/public/changelog.json +12 -0
- package/dist/public/css/views/chat.css +388 -0
- package/dist/public/js/services/chat.js +190 -0
- package/dist/public/js/services/speech-reader.js +26 -0
- package/dist/public/lib/VENDORED.md +1 -0
- package/dist/public/lib/duckdb-wasm@1.32.0/duckdb-browser-eh.worker.js +14 -0
- package/dist/public/lib/duckdb-wasm@1.32.0/duckdb-browser.js +23 -0
- package/dist/public/lib/duckdb-wasm@1.32.0/duckdb-eh.wasm +0 -0
- package/dist/public/lib/duckdb-wasm@1.32.0/extensions/v1.4.3/wasm_eh/parquet.duckdb_extension.wasm +0 -0
- package/dist/public/lib/vendored-assets.json +19 -0
- package/dist/public/llms-full-template.txt +2706 -0
- package/dist/public/llms-index-template.txt +60 -0
- package/dist/public/robots.node.txt +64 -23
- package/dist/public/spa.html +8 -1
- package/dist/public/views/chat/parts.js +257 -0
- package/dist/public/views/chat.js +327 -0
- package/dist/public/views/landing.js +24 -1
- package/dist/public/views/profile/agents/scope-model.js +320 -315
- package/dist/scripts/audit-mcp-schemas.js +50 -0
- package/dist/scripts/audit-mcp-schemas.js.map +1 -1
- package/dist/scripts/build-sdk-libs.d.ts.map +1 -1
- package/dist/scripts/build-sdk-libs.js +1 -0
- package/dist/scripts/build-sdk-libs.js.map +1 -1
- package/dist/scripts/check-ai-disclosure.d.ts +1 -1
- package/dist/scripts/check-ai-disclosure.d.ts.map +1 -1
- package/dist/scripts/check-ai-disclosure.js +30 -3
- package/dist/scripts/check-ai-disclosure.js.map +1 -1
- package/dist/scripts/check-denial-coverage.d.ts +29 -0
- package/dist/scripts/check-denial-coverage.d.ts.map +1 -0
- package/dist/scripts/check-denial-coverage.js +237 -0
- package/dist/scripts/check-denial-coverage.js.map +1 -0
- package/dist/scripts/check-ext-entrypoints.js +14 -2
- package/dist/scripts/check-ext-entrypoints.js.map +1 -1
- package/dist/scripts/check-outbound-fetch.d.ts.map +1 -1
- package/dist/scripts/check-outbound-fetch.js +16 -2
- package/dist/scripts/check-outbound-fetch.js.map +1 -1
- package/dist/scripts/check-sse-parity.js +14 -0
- package/dist/scripts/check-sse-parity.js.map +1 -1
- package/dist/scripts/indexnow.js +9 -7
- package/dist/scripts/indexnow.js.map +1 -1
- package/dist/src/auth/ai-gate.d.ts +25 -0
- package/dist/src/auth/ai-gate.d.ts.map +1 -0
- package/dist/src/auth/ai-gate.js +21 -0
- package/dist/src/auth/ai-gate.js.map +1 -0
- package/dist/src/auth/middleware.d.ts +7 -0
- package/dist/src/auth/middleware.d.ts.map +1 -1
- package/dist/src/auth/middleware.js +15 -21
- package/dist/src/auth/middleware.js.map +1 -1
- package/dist/src/cli/connect/mcp/tools/agent-tasks.d.ts +4 -0
- package/dist/src/cli/connect/mcp/tools/agent-tasks.d.ts.map +1 -1
- package/dist/src/cli/connect/mcp/tools/agent-tasks.js +11 -1
- package/dist/src/cli/connect/mcp/tools/agent-tasks.js.map +1 -1
- package/dist/src/cli/connect/mcp/tools/apps.d.ts.map +1 -1
- package/dist/src/cli/connect/mcp/tools/apps.js +88 -0
- package/dist/src/cli/connect/mcp/tools/apps.js.map +1 -1
- package/dist/src/cli/connect/mcp/tools/core.d.ts +7 -0
- package/dist/src/cli/connect/mcp/tools/core.d.ts.map +1 -1
- package/dist/src/cli/connect/mcp/tools/core.js +83 -4
- package/dist/src/cli/connect/mcp/tools/core.js.map +1 -1
- package/dist/src/cli/connect/onboarding-prompt.js +1 -1
- package/dist/src/cli/connect/skill-bundle.js +1 -1
- package/dist/src/cli/connect/tool-call-defs-agent.d.ts.map +1 -1
- package/dist/src/cli/connect/tool-call-defs-agent.js +38 -9
- package/dist/src/cli/connect/tool-call-defs-agent.js.map +1 -1
- package/dist/src/cli/connect/tool-call-defs-app-draft-edit.d.ts +21 -0
- package/dist/src/cli/connect/tool-call-defs-app-draft-edit.d.ts.map +1 -0
- package/dist/src/cli/connect/tool-call-defs-app-draft-edit.js +137 -0
- package/dist/src/cli/connect/tool-call-defs-app-draft-edit.js.map +1 -0
- package/dist/src/cli/connect/tool-call-defs-apps.d.ts.map +1 -1
- package/dist/src/cli/connect/tool-call-defs-apps.js +114 -25
- package/dist/src/cli/connect/tool-call-defs-apps.js.map +1 -1
- package/dist/src/cli/connect/tool-call-defs-core.d.ts +1 -0
- package/dist/src/cli/connect/tool-call-defs-core.d.ts.map +1 -1
- package/dist/src/cli/connect/tool-call-defs-core.js +179 -26
- package/dist/src/cli/connect/tool-call-defs-core.js.map +1 -1
- package/dist/src/cli/connect/tool-call-defs-organism.d.ts.map +1 -1
- package/dist/src/cli/connect/tool-call-defs-organism.js +20 -3
- package/dist/src/cli/connect/tool-call-defs-organism.js.map +1 -1
- package/dist/src/cli/connect/tool-call.d.ts.map +1 -1
- package/dist/src/cli/connect/tool-call.js +52 -1
- package/dist/src/cli/connect/tool-call.js.map +1 -1
- package/dist/src/config-types-ai.d.ts +76 -0
- package/dist/src/config-types-ai.d.ts.map +1 -0
- package/dist/src/config-types-ai.js +15 -0
- package/dist/src/config-types-ai.js.map +1 -0
- package/dist/src/config-types.d.ts +11 -2
- package/dist/src/config-types.d.ts.map +1 -1
- package/dist/src/config.d.ts.map +1 -1
- package/dist/src/config.js +25 -4
- package/dist/src/config.js.map +1 -1
- package/dist/src/data/builtin-skills.d.ts.map +1 -1
- package/dist/src/data/builtin-skills.js +3 -2
- package/dist/src/data/builtin-skills.js.map +1 -1
- package/dist/src/data/digital-signage-package.js +1 -1
- package/dist/src/data/library-packs/sdk.d.ts.map +1 -1
- package/dist/src/data/library-packs/sdk.js +76 -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 +81 -0
- package/dist/src/data/library-packs/vendored.js.map +1 -1
- package/dist/src/data/library-packs.d.ts +2 -2
- package/dist/src/data/library-packs.js +2 -2
- package/dist/src/data/public-pages.d.ts +13 -0
- package/dist/src/data/public-pages.d.ts.map +1 -1
- package/dist/src/data/public-pages.js +153 -113
- package/dist/src/data/public-pages.js.map +1 -1
- package/dist/src/generated/api-types.d.ts +1808 -36
- package/dist/src/generated/api-types.d.ts.map +1 -1
- package/dist/src/index-start.d.ts.map +1 -1
- package/dist/src/index-start.js +3 -0
- package/dist/src/index-start.js.map +1 -1
- package/dist/src/mcp/agent-tasks.d.ts.map +1 -1
- package/dist/src/mcp/agent-tasks.js +5 -0
- package/dist/src/mcp/agent-tasks.js.map +1 -1
- package/dist/src/mcp/ai-image.d.ts +22 -0
- package/dist/src/mcp/ai-image.d.ts.map +1 -0
- package/dist/src/mcp/ai-image.js +60 -0
- package/dist/src/mcp/ai-image.js.map +1 -0
- package/dist/src/mcp/annotations.d.ts +5 -0
- package/dist/src/mcp/annotations.d.ts.map +1 -1
- package/dist/src/mcp/annotations.js +18 -0
- package/dist/src/mcp/annotations.js.map +1 -1
- package/dist/src/mcp/apps-draft-edit.d.ts +28 -0
- package/dist/src/mcp/apps-draft-edit.d.ts.map +1 -0
- package/dist/src/mcp/apps-draft-edit.js +164 -0
- package/dist/src/mcp/apps-draft-edit.js.map +1 -0
- package/dist/src/mcp/apps-screenshot.d.ts +26 -0
- package/dist/src/mcp/apps-screenshot.d.ts.map +1 -0
- package/dist/src/mcp/apps-screenshot.js +39 -0
- package/dist/src/mcp/apps-screenshot.js.map +1 -0
- package/dist/src/mcp/catalog/definitions/discovery-work-boards.d.ts +1 -0
- package/dist/src/mcp/catalog/definitions/discovery-work-boards.d.ts.map +1 -1
- package/dist/src/mcp/catalog/definitions/discovery-work-boards.js +40 -0
- package/dist/src/mcp/catalog/definitions/discovery-work-boards.js.map +1 -1
- package/dist/src/mcp/catalog/definitions/organisms-workspaces-apps.d.ts +3 -0
- package/dist/src/mcp/catalog/definitions/organisms-workspaces-apps.d.ts.map +1 -1
- package/dist/src/mcp/catalog/definitions/organisms-workspaces-apps.js +74 -0
- package/dist/src/mcp/catalog/definitions/organisms-workspaces-apps.js.map +1 -1
- package/dist/src/mcp/catalog/definitions/schedules-tasks-memory.d.ts.map +1 -1
- package/dist/src/mcp/catalog/definitions/schedules-tasks-memory.js +1 -0
- package/dist/src/mcp/catalog/definitions/schedules-tasks-memory.js.map +1 -1
- package/dist/src/mcp/catalog/scopes.d.ts.map +1 -1
- package/dist/src/mcp/catalog/scopes.js +19 -1
- package/dist/src/mcp/catalog/scopes.js.map +1 -1
- package/dist/src/mcp/catalog/surfaces.d.ts.map +1 -1
- package/dist/src/mcp/catalog/surfaces.js +18 -4
- package/dist/src/mcp/catalog/surfaces.js.map +1 -1
- package/dist/src/mcp/core-datapackage.d.ts +32 -0
- package/dist/src/mcp/core-datapackage.d.ts.map +1 -0
- package/dist/src/mcp/core-datapackage.js +188 -0
- package/dist/src/mcp/core-datapackage.js.map +1 -0
- package/dist/src/mcp/core-storage.d.ts +7 -3
- package/dist/src/mcp/core-storage.d.ts.map +1 -1
- package/dist/src/mcp/core-storage.js +27 -4
- package/dist/src/mcp/core-storage.js.map +1 -1
- package/dist/src/mcp/core.d.ts.map +1 -1
- package/dist/src/mcp/core.js +3 -0
- package/dist/src/mcp/core.js.map +1 -1
- package/dist/src/mcp/extensions.d.ts.map +1 -1
- package/dist/src/mcp/extensions.js +11 -1
- package/dist/src/mcp/extensions.js.map +1 -1
- package/dist/src/mcp/index.d.ts +9 -0
- package/dist/src/mcp/index.d.ts.map +1 -1
- package/dist/src/mcp/index.js +34 -0
- package/dist/src/mcp/index.js.map +1 -1
- package/dist/src/models/agent-task-schemas.d.ts.map +1 -1
- package/dist/src/models/agent-task-schemas.js +12 -1
- package/dist/src/models/agent-task-schemas.js.map +1 -1
- package/dist/src/models/workflow-schemas.d.ts +178 -1
- package/dist/src/models/workflow-schemas.d.ts.map +1 -1
- package/dist/src/models/workflow-schemas.js +75 -0
- package/dist/src/models/workflow-schemas.js.map +1 -1
- package/dist/src/routes/admin-extensions.d.ts +4 -0
- package/dist/src/routes/admin-extensions.d.ts.map +1 -1
- package/dist/src/routes/admin-extensions.js +135 -142
- package/dist/src/routes/admin-extensions.js.map +1 -1
- package/dist/src/routes/agent-conventions.d.ts.map +1 -1
- package/dist/src/routes/agent-conventions.js +4 -2
- package/dist/src/routes/agent-conventions.js.map +1 -1
- package/dist/src/routes/agent-docs.d.ts +4 -4
- package/dist/src/routes/agent-docs.js +145 -145
- package/dist/src/routes/agent-docs.js.map +1 -1
- package/dist/src/routes/agent-messages.d.ts +6 -0
- package/dist/src/routes/agent-messages.d.ts.map +1 -1
- package/dist/src/routes/agent-messages.js +23 -1
- package/dist/src/routes/agent-messages.js.map +1 -1
- package/dist/src/routes/agent-tasks/create-read.d.ts.map +1 -1
- package/dist/src/routes/agent-tasks/create-read.js +8 -1
- package/dist/src/routes/agent-tasks/create-read.js.map +1 -1
- package/dist/src/routes/agent-tasks/lifecycle.d.ts +4 -1
- package/dist/src/routes/agent-tasks/lifecycle.d.ts.map +1 -1
- package/dist/src/routes/agent-tasks/lifecycle.js +80 -2
- package/dist/src/routes/agent-tasks/lifecycle.js.map +1 -1
- package/dist/src/routes/ai.d.ts +5 -0
- package/dist/src/routes/ai.d.ts.map +1 -1
- package/dist/src/routes/ai.js +55 -16
- package/dist/src/routes/ai.js.map +1 -1
- package/dist/src/routes/app-grants.d.ts.map +1 -1
- package/dist/src/routes/app-grants.js +5 -0
- package/dist/src/routes/app-grants.js.map +1 -1
- package/dist/src/routes/apps/drafts.d.ts +6 -0
- package/dist/src/routes/apps/drafts.d.ts.map +1 -1
- package/dist/src/routes/apps/drafts.js +133 -1
- package/dist/src/routes/apps/drafts.js.map +1 -1
- package/dist/src/routes/apps/read.d.ts.map +1 -1
- package/dist/src/routes/apps/read.js +38 -1
- package/dist/src/routes/apps/read.js.map +1 -1
- package/dist/src/routes/auth-otk.d.ts +28 -0
- package/dist/src/routes/auth-otk.d.ts.map +1 -0
- package/dist/src/routes/auth-otk.js +190 -0
- package/dist/src/routes/auth-otk.js.map +1 -0
- package/dist/src/routes/auth.d.ts +17 -0
- package/dist/src/routes/auth.d.ts.map +1 -1
- package/dist/src/routes/auth.js +44 -153
- package/dist/src/routes/auth.js.map +1 -1
- package/dist/src/routes/bootstrap.d.ts +6 -0
- package/dist/src/routes/bootstrap.d.ts.map +1 -1
- package/dist/src/routes/bootstrap.js +47 -20
- package/dist/src/routes/bootstrap.js.map +1 -1
- package/dist/src/routes/chat.d.ts +23 -0
- package/dist/src/routes/chat.d.ts.map +1 -0
- package/dist/src/routes/chat.js +165 -0
- package/dist/src/routes/chat.js.map +1 -0
- package/dist/src/routes/commerce.js +4 -4
- package/dist/src/routes/commerce.js.map +1 -1
- package/dist/src/routes/datapackages.d.ts +35 -0
- package/dist/src/routes/datapackages.d.ts.map +1 -0
- package/dist/src/routes/datapackages.js +217 -0
- package/dist/src/routes/datapackages.js.map +1 -0
- package/dist/src/routes/disputes.d.ts +8 -0
- package/dist/src/routes/disputes.d.ts.map +1 -1
- package/dist/src/routes/disputes.js +52 -1
- package/dist/src/routes/disputes.js.map +1 -1
- package/dist/src/routes/ecosystem-apps-advisories.d.ts +16 -0
- package/dist/src/routes/ecosystem-apps-advisories.d.ts.map +1 -0
- package/dist/src/routes/ecosystem-apps-advisories.js +104 -0
- package/dist/src/routes/ecosystem-apps-advisories.js.map +1 -0
- package/dist/src/routes/ecosystem-apps.d.ts +6 -0
- package/dist/src/routes/ecosystem-apps.d.ts.map +1 -1
- package/dist/src/routes/ecosystem-apps.js +31 -99
- package/dist/src/routes/ecosystem-apps.js.map +1 -1
- package/dist/src/routes/extensions/actions.d.ts.map +1 -1
- package/dist/src/routes/extensions/actions.js +29 -1
- package/dist/src/routes/extensions/actions.js.map +1 -1
- package/dist/src/routes/federation-sync/routing.d.ts.map +1 -1
- package/dist/src/routes/federation-sync/routing.js +12 -3
- package/dist/src/routes/federation-sync/routing.js.map +1 -1
- package/dist/src/routes/glossary.js +1 -1
- package/dist/src/routes/glossary.js.map +1 -1
- package/dist/src/routes/home/track.d.ts +5 -1
- package/dist/src/routes/home/track.d.ts.map +1 -1
- package/dist/src/routes/home/track.js +20 -6
- package/dist/src/routes/home/track.js.map +1 -1
- package/dist/src/routes/instances/install.d.ts +3 -0
- package/dist/src/routes/instances/install.d.ts.map +1 -1
- package/dist/src/routes/instances/install.js +17 -24
- package/dist/src/routes/instances/install.js.map +1 -1
- package/dist/src/routes/libs.js +1 -1
- package/dist/src/routes/libs.js.map +1 -1
- package/dist/src/routes/llm-proxy.d.ts +34 -0
- package/dist/src/routes/llm-proxy.d.ts.map +1 -0
- package/dist/src/routes/llm-proxy.js +258 -0
- package/dist/src/routes/llm-proxy.js.map +1 -0
- package/dist/src/routes/markdown-mirrors.js +1 -1
- package/dist/src/routes/markdown-mirrors.js.map +1 -1
- package/dist/src/routes/odata.d.ts +36 -0
- package/dist/src/routes/odata.d.ts.map +1 -0
- package/dist/src/routes/odata.js +143 -0
- package/dist/src/routes/odata.js.map +1 -0
- package/dist/src/routes/openrouter.d.ts +4 -0
- package/dist/src/routes/openrouter.d.ts.map +1 -1
- package/dist/src/routes/openrouter.js +10 -1
- package/dist/src/routes/openrouter.js.map +1 -1
- package/dist/src/routes/organisms/gates.d.ts.map +1 -1
- package/dist/src/routes/organisms/gates.js +9 -2
- package/dist/src/routes/organisms/gates.js.map +1 -1
- package/dist/src/routes/portal.d.ts +1 -0
- package/dist/src/routes/portal.d.ts.map +1 -1
- package/dist/src/routes/portal.js +13 -0
- package/dist/src/routes/portal.js.map +1 -1
- package/dist/src/routes/schedules.d.ts +4 -0
- package/dist/src/routes/schedules.d.ts.map +1 -1
- package/dist/src/routes/schedules.js +9 -1
- package/dist/src/routes/schedules.js.map +1 -1
- package/dist/src/routes/storage-files.d.ts +23 -0
- package/dist/src/routes/storage-files.d.ts.map +1 -1
- package/dist/src/routes/storage-files.js +103 -82
- package/dist/src/routes/storage-files.js.map +1 -1
- package/dist/src/routes/workflows.d.ts.map +1 -1
- package/dist/src/routes/workflows.js +9 -1
- package/dist/src/routes/workflows.js.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.d.ts +2 -0
- package/dist/src/server-bootstrap/routes-loader.d.ts.map +1 -1
- package/dist/src/server-bootstrap/routes-loader.js +22 -2
- package/dist/src/server-bootstrap/routes-loader.js.map +1 -1
- package/dist/src/server-bootstrap/service-init.d.ts.map +1 -1
- package/dist/src/server-bootstrap/service-init.js +12 -7
- 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 +44 -10
- package/dist/src/server-bootstrap/static-files.js.map +1 -1
- package/dist/src/services/ai-allowance.d.ts +82 -0
- package/dist/src/services/ai-allowance.d.ts.map +1 -0
- package/dist/src/services/ai-allowance.js +117 -0
- package/dist/src/services/ai-allowance.js.map +1 -0
- package/dist/src/services/ai-completion.d.ts +102 -0
- package/dist/src/services/ai-completion.d.ts.map +1 -1
- package/dist/src/services/ai-completion.js +131 -67
- package/dist/src/services/ai-completion.js.map +1 -1
- package/dist/src/services/ai-image.d.ts +70 -0
- package/dist/src/services/ai-image.d.ts.map +1 -0
- package/dist/src/services/ai-image.js +104 -0
- package/dist/src/services/ai-image.js.map +1 -0
- package/dist/src/services/ai-model-defaults.d.ts +45 -0
- package/dist/src/services/ai-model-defaults.d.ts.map +1 -0
- package/dist/src/services/ai-model-defaults.js +42 -0
- package/dist/src/services/ai-model-defaults.js.map +1 -0
- package/dist/src/services/ai-tool-setup.d.ts +5 -1
- package/dist/src/services/ai-tool-setup.d.ts.map +1 -1
- package/dist/src/services/ai-tool-setup.js +36 -0
- package/dist/src/services/ai-tool-setup.js.map +1 -1
- package/dist/src/services/ai-transcription.d.ts +5 -0
- package/dist/src/services/ai-transcription.d.ts.map +1 -1
- package/dist/src/services/ai-transcription.js +5 -2
- package/dist/src/services/ai-transcription.js.map +1 -1
- package/dist/src/services/app-agent-surfaces.js +4 -4
- package/dist/src/services/app-agent-surfaces.js.map +1 -1
- package/dist/src/services/app-draft-edit.d.ts +144 -0
- package/dist/src/services/app-draft-edit.d.ts.map +1 -0
- package/dist/src/services/app-draft-edit.js +203 -0
- package/dist/src/services/app-draft-edit.js.map +1 -0
- package/dist/src/services/auth-md.js +2 -2
- package/dist/src/services/auth-md.js.map +1 -1
- package/dist/src/services/board-write.d.ts +11 -3
- package/dist/src/services/board-write.d.ts.map +1 -1
- package/dist/src/services/board-write.js +24 -3
- package/dist/src/services/board-write.js.map +1 -1
- package/dist/src/services/chat-agent.d.ts +36 -0
- package/dist/src/services/chat-agent.d.ts.map +1 -0
- package/dist/src/services/chat-agent.js +123 -0
- package/dist/src/services/chat-agent.js.map +1 -0
- package/dist/src/services/chat-session.d.ts +58 -0
- package/dist/src/services/chat-session.d.ts.map +1 -0
- package/dist/src/services/chat-session.js +151 -0
- package/dist/src/services/chat-session.js.map +1 -0
- package/dist/src/services/chat-threads.d.ts +61 -0
- package/dist/src/services/chat-threads.d.ts.map +1 -0
- package/dist/src/services/chat-threads.js +137 -0
- package/dist/src/services/chat-threads.js.map +1 -0
- package/dist/src/services/config-schema.d.ts.map +1 -1
- package/dist/src/services/config-schema.js +2 -1
- package/dist/src/services/config-schema.js.map +1 -1
- package/dist/src/services/datapackage/contract.d.ts +198 -0
- package/dist/src/services/datapackage/contract.d.ts.map +1 -0
- package/dist/src/services/datapackage/contract.js +140 -0
- package/dist/src/services/datapackage/contract.js.map +1 -0
- package/dist/src/services/datapackage/ext-capability.d.ts +85 -0
- package/dist/src/services/datapackage/ext-capability.d.ts.map +1 -0
- package/dist/src/services/datapackage/ext-capability.js +72 -0
- package/dist/src/services/datapackage/ext-capability.js.map +1 -0
- package/dist/src/services/datapackage/odata.d.ts +92 -0
- package/dist/src/services/datapackage/odata.d.ts.map +1 -0
- package/dist/src/services/datapackage/odata.js +256 -0
- package/dist/src/services/datapackage/odata.js.map +1 -0
- package/dist/src/services/datapackage/odps.d.ts +24 -0
- package/dist/src/services/datapackage/odps.d.ts.map +1 -0
- package/dist/src/services/datapackage/odps.js +183 -0
- package/dist/src/services/datapackage/odps.js.map +1 -0
- package/dist/src/services/datapackage/store.d.ts +143 -0
- package/dist/src/services/datapackage/store.d.ts.map +1 -0
- package/dist/src/services/datapackage/store.js +533 -0
- package/dist/src/services/datapackage/store.js.map +1 -0
- package/dist/src/services/datapackage/table.d.ts +67 -0
- package/dist/src/services/datapackage/table.d.ts.map +1 -0
- package/dist/src/services/datapackage/table.js +0 -0
- package/dist/src/services/datapackage/table.js.map +1 -0
- package/dist/src/services/extension-ctx.d.ts +1 -0
- package/dist/src/services/extension-ctx.d.ts.map +1 -1
- package/dist/src/services/extension-ctx.js +31 -6
- package/dist/src/services/extension-ctx.js.map +1 -1
- package/dist/src/services/extension-files.d.ts +20 -0
- package/dist/src/services/extension-files.d.ts.map +1 -1
- package/dist/src/services/extension-files.js +9 -2
- package/dist/src/services/extension-files.js.map +1 -1
- package/dist/src/services/extension-lifecycle.d.ts +3 -0
- package/dist/src/services/extension-lifecycle.d.ts.map +1 -1
- package/dist/src/services/extension-lifecycle.js +2 -26
- package/dist/src/services/extension-lifecycle.js.map +1 -1
- package/dist/src/services/extension-runtime.d.ts +28 -2
- package/dist/src/services/extension-runtime.d.ts.map +1 -1
- package/dist/src/services/extension-runtime.js +22 -0
- package/dist/src/services/extension-runtime.js.map +1 -1
- package/dist/src/services/extension-schedules.d.ts +90 -0
- package/dist/src/services/extension-schedules.d.ts.map +1 -0
- package/dist/src/services/extension-schedules.js +123 -0
- package/dist/src/services/extension-schedules.js.map +1 -0
- package/dist/src/services/extension-system-run.d.ts +91 -0
- package/dist/src/services/extension-system-run.d.ts.map +1 -0
- package/dist/src/services/extension-system-run.js +100 -0
- package/dist/src/services/extension-system-run.js.map +1 -0
- package/dist/src/services/extension-upsert.d.ts +2 -0
- package/dist/src/services/extension-upsert.d.ts.map +1 -1
- package/dist/src/services/extension-upsert.js +6 -24
- package/dist/src/services/extension-upsert.js.map +1 -1
- package/dist/src/services/goose-acp.d.ts +84 -0
- package/dist/src/services/goose-acp.d.ts.map +1 -0
- package/dist/src/services/goose-acp.js +304 -0
- package/dist/src/services/goose-acp.js.map +1 -0
- package/dist/src/services/markdown-negotiation.js +1 -1
- package/dist/src/services/markdown-negotiation.js.map +1 -1
- package/dist/src/services/openrouter.d.ts +43 -1
- package/dist/src/services/openrouter.d.ts.map +1 -1
- package/dist/src/services/openrouter.js +98 -1
- package/dist/src/services/openrouter.js.map +1 -1
- package/dist/src/services/prompt-defaults/tiers-core.js +4 -4
- package/dist/src/services/scheduler-extension-job.d.ts +29 -6
- package/dist/src/services/scheduler-extension-job.d.ts.map +1 -1
- package/dist/src/services/scheduler-extension-job.js +29 -75
- package/dist/src/services/scheduler-extension-job.js.map +1 -1
- package/dist/src/services/scope-vocabulary-migration.d.ts +34 -1
- package/dist/src/services/scope-vocabulary-migration.d.ts.map +1 -1
- package/dist/src/services/scope-vocabulary-migration.js +60 -0
- package/dist/src/services/scope-vocabulary-migration.js.map +1 -1
- package/dist/src/services/screenshot-capture.d.ts +40 -1
- package/dist/src/services/screenshot-capture.d.ts.map +1 -1
- package/dist/src/services/screenshot-capture.js +142 -60
- package/dist/src/services/screenshot-capture.js.map +1 -1
- package/dist/src/services/skill-bundle/generator.js +1 -1
- package/dist/src/services/skill-bundle/generic-adapter.js +1 -1
- package/dist/src/services/skill-bundle/hermes-adapter.js +1 -1
- package/dist/src/services/storage-file-write.d.ts +36 -1
- package/dist/src/services/storage-file-write.d.ts.map +1 -1
- package/dist/src/services/storage-file-write.js +49 -3
- package/dist/src/services/storage-file-write.js.map +1 -1
- package/dist/src/services/task-outcome.d.ts +53 -0
- package/dist/src/services/task-outcome.d.ts.map +1 -0
- package/dist/src/services/task-outcome.js +28 -0
- package/dist/src/services/task-outcome.js.map +1 -0
- package/dist/src/services/workflow/engine-human.d.ts +15 -0
- package/dist/src/services/workflow/engine-human.d.ts.map +1 -1
- package/dist/src/services/workflow/engine-human.js +10 -1
- package/dist/src/services/workflow/engine-human.js.map +1 -1
- package/dist/src/services/workflow/engine-steps.d.ts +48 -3
- package/dist/src/services/workflow/engine-steps.d.ts.map +1 -1
- package/dist/src/services/workflow/engine-steps.js +361 -0
- package/dist/src/services/workflow/engine-steps.js.map +1 -1
- package/dist/src/services/workflow/engine.d.ts +1 -0
- package/dist/src/services/workflow/engine.d.ts.map +1 -1
- package/dist/src/services/workflow/engine.js +2 -1
- package/dist/src/services/workflow/engine.js.map +1 -1
- package/dist/src/services/workflow/store.d.ts.map +1 -1
- package/dist/src/services/workflow/store.js +60 -4
- package/dist/src/services/workflow/store.js.map +1 -1
- package/dist/src/services/write-guards.d.ts +27 -1
- package/dist/src/services/write-guards.d.ts.map +1 -1
- package/dist/src/services/write-guards.js +39 -9
- package/dist/src/services/write-guards.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/db-types.d.ts +1 -0
- package/dist/src/storage/providers/postgres-kysely/db-types.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/app-grants.d.ts +1 -0
- 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 +3 -0
- package/dist/src/storage/providers/postgres-kysely/methods/app-grants.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/files.d.ts +2 -0
- package/dist/src/storage/providers/postgres-kysely/methods/files.d.ts.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/methods/files.js +34 -2
- package/dist/src/storage/providers/postgres-kysely/methods/files.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 +23 -4
- package/dist/src/storage/providers/postgres-kysely/methods/wallet.js.map +1 -1
- package/dist/src/storage/providers/postgres-kysely/migrations/0039_storage_file_utf8_verified.sql +19 -0
- package/dist/src/storage/providers/sqlite/index.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/index.js +2 -1
- package/dist/src/storage/providers/sqlite/index.js.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/apps.d.ts +1 -0
- package/dist/src/storage/providers/sqlite/methods/apps.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/apps.js +33 -28
- package/dist/src/storage/providers/sqlite/methods/apps.js.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/identity-nodes.d.ts +1 -12
- package/dist/src/storage/providers/sqlite/methods/identity-nodes.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/identity-nodes.js +28 -135
- package/dist/src/storage/providers/sqlite/methods/identity-nodes.js.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/storage-files.d.ts +38 -0
- package/dist/src/storage/providers/sqlite/methods/storage-files.d.ts.map +1 -0
- package/dist/src/storage/providers/sqlite/methods/storage-files.js +109 -0
- package/dist/src/storage/providers/sqlite/methods/storage-files.js.map +1 -0
- package/dist/src/storage/providers/sqlite/methods/work.d.ts +5 -0
- package/dist/src/storage/providers/sqlite/methods/work.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/methods/work.js +34 -22
- package/dist/src/storage/providers/sqlite/methods/work.js.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.d.ts.map +1 -1
- package/dist/src/storage/providers/sqlite/schema.js +134 -130
- package/dist/src/storage/providers/sqlite/schema.js.map +1 -1
- package/dist/src/storage/repositories/app-grant.repository.d.ts +11 -0
- package/dist/src/storage/repositories/app-grant.repository.d.ts.map +1 -1
- package/dist/src/storage/repositories/file.repository.d.ts +13 -0
- package/dist/src/storage/repositories/file.repository.d.ts.map +1 -1
- package/dist/src/storage/types/commerce.d.ts +6 -0
- package/dist/src/storage/types/commerce.d.ts.map +1 -1
- package/dist/src/utils/agent-footer.d.ts.map +1 -1
- package/dist/src/utils/agent-footer.js +1 -0
- package/dist/src/utils/agent-footer.js.map +1 -1
- package/dist/src/utils/app-content-type.d.ts +57 -3
- package/dist/src/utils/app-content-type.d.ts.map +1 -1
- package/dist/src/utils/app-content-type.js +81 -12
- package/dist/src/utils/app-content-type.js.map +1 -1
- package/dist/src/utils/env-config/sections-features.d.ts.map +1 -1
- package/dist/src/utils/env-config/sections-features.js +9 -3
- package/dist/src/utils/env-config/sections-features.js.map +1 -1
- package/dist/src/utils/file-download-headers.d.ts +5 -3
- package/dist/src/utils/file-download-headers.d.ts.map +1 -1
- package/dist/src/utils/file-download-headers.js +18 -5
- package/dist/src/utils/file-download-headers.js.map +1 -1
- package/dist/src/utils/http-range.d.ts +151 -0
- package/dist/src/utils/http-range.d.ts.map +1 -0
- package/dist/src/utils/http-range.js +190 -0
- package/dist/src/utils/http-range.js.map +1 -0
- package/dist/src/utils/page-head.d.ts +5 -0
- package/dist/src/utils/page-head.d.ts.map +1 -1
- package/dist/src/utils/page-head.js +10 -1
- package/dist/src/utils/page-head.js.map +1 -1
- package/dist/src/utils/reserved-keys.d.ts +4 -1
- package/dist/src/utils/reserved-keys.d.ts.map +1 -1
- package/dist/src/utils/reserved-keys.js +4 -1
- package/dist/src/utils/reserved-keys.js.map +1 -1
- package/dist/static/sdk-libs/datapackage/index.js +336 -0
- package/dist/static/sdk-libs/dist/aimeat-datapackage.js +305 -0
- package/package.json +10 -2
|
@@ -32,6 +32,10 @@
|
|
|
32
32
|
* import { sitemapPages } from '../data/public-pages.js';
|
|
33
33
|
* for (const page of sitemapPages()) { ... }
|
|
34
34
|
* @version-history
|
|
35
|
+
* v1.3.0 — 2026-08-16 — buildLlmsHumanPages()/buildLlmsOptionalPages(): the llms.txt index's
|
|
36
|
+
* human-page and Optional link lists, generated here so a page added above appears in the
|
|
37
|
+
* index without a second edit. The manual that preceded the index had no human-page list, so
|
|
38
|
+
* a model asked what AIMEAT is was sent into the app builder's manual for the answer.
|
|
35
39
|
* v1.2.0 — 2026-08-01 — Record the standing decision that page routes and their mirrors stay out
|
|
36
40
|
* of openapi.yaml (TARGET-058 Phase 10b). Nothing here changed; the rule did.
|
|
37
41
|
* v1.1.0 — 2026-08-01 — Add /v1/transparency (TARGET-058 Phase 10), the public human page about
|
|
@@ -52,23 +56,24 @@ export const PUBLIC_PAGES = [
|
|
|
52
56
|
description: 'Open protocol infrastructure for AI agents: persistent memory, identity, consent, shared workspaces and a usage meter, over REST and MCP.',
|
|
53
57
|
changefreq: 'weekly',
|
|
54
58
|
priority: '1.0',
|
|
55
|
-
markdown: `Open protocol infrastructure for AI agents and the people who own them: persistent memory,
|
|
56
|
-
identities you grant and revoke, shared workspaces, skills, tasks and a usage meter, over REST
|
|
57
|
-
and MCP.
|
|
58
|
-
|
|
59
|
-
## For people
|
|
60
|
-
|
|
61
|
-
Register in the [portal]({{BASE_URL}}/v1/portal), then connect an assistant from
|
|
62
|
-
[Connect]({{BASE_URL}}/v1/connect). [How it works]({{BASE_URL}}/v1/how-it-works) explains the model without protocol
|
|
63
|
-
jargon; [For your business]({{BASE_URL}}/v1/business) covers the organisational case.
|
|
64
|
-
|
|
65
|
-
## For agents
|
|
66
|
-
|
|
67
|
-
- Machine-readable bootstrap: \`GET {{BASE_URL}}/?format=json\`
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
59
|
+
markdown: `Open protocol infrastructure for AI agents and the people who own them: persistent memory,
|
|
60
|
+
identities you grant and revoke, shared workspaces, skills, tasks and a usage meter, over REST
|
|
61
|
+
and MCP.
|
|
62
|
+
|
|
63
|
+
## For people
|
|
64
|
+
|
|
65
|
+
Register in the [portal]({{BASE_URL}}/v1/portal), then connect an assistant from
|
|
66
|
+
[Connect]({{BASE_URL}}/v1/connect). [How it works]({{BASE_URL}}/v1/how-it-works) explains the model without protocol
|
|
67
|
+
jargon; [For your business]({{BASE_URL}}/v1/business) covers the organisational case.
|
|
68
|
+
|
|
69
|
+
## For agents
|
|
70
|
+
|
|
71
|
+
- Machine-readable bootstrap: \`GET {{BASE_URL}}/?format=json\`
|
|
72
|
+
- Index: [llms.txt]({{BASE_URL}}/llms.txt) · Full manual: [llms-full.txt]({{BASE_URL}}/llms-full.txt)
|
|
73
|
+
- Orientation: [AGENTS.md]({{BASE_URL}}/AGENTS.md)
|
|
74
|
+
- Get an identity: [auth.md]({{BASE_URL}}/auth.md) (RFC 8628 device flow, the owner approves)
|
|
75
|
+
- Contract: [OpenAPI]({{BASE_URL}}/v1/spec) · MCP server: \`POST {{BASE_URL}}/v1/mcp\`
|
|
76
|
+
- Vocabulary: [glossary]({{BASE_URL}}/v1/glossary)
|
|
72
77
|
`,
|
|
73
78
|
},
|
|
74
79
|
{
|
|
@@ -77,13 +82,13 @@ jargon; [For your business]({{BASE_URL}}/v1/business) covers the organisational
|
|
|
77
82
|
description: 'The AIMEAT portal: create an account, connect and approve AI agents, and manage the memory, files and workspaces they can reach.',
|
|
78
83
|
changefreq: 'weekly',
|
|
79
84
|
priority: '0.9',
|
|
80
|
-
markdown: `The portal is where a person holds an AIMEAT account: register or sign in, connect AI agents and
|
|
81
|
-
approve exactly what each may reach, and manage the memory, files, workspaces and organisms behind
|
|
82
|
-
them.
|
|
83
|
-
|
|
84
|
-
An agent never enrols itself. It asks for a device code, and the person approves it here and picks
|
|
85
|
-
its scopes — see [Connect]({{BASE_URL}}/v1/connect) for the walkthrough, or [auth.md]({{BASE_URL}}/auth.md) for the
|
|
86
|
-
protocol-level flow.
|
|
85
|
+
markdown: `The portal is where a person holds an AIMEAT account: register or sign in, connect AI agents and
|
|
86
|
+
approve exactly what each may reach, and manage the memory, files, workspaces and organisms behind
|
|
87
|
+
them.
|
|
88
|
+
|
|
89
|
+
An agent never enrols itself. It asks for a device code, and the person approves it here and picks
|
|
90
|
+
its scopes — see [Connect]({{BASE_URL}}/v1/connect) for the walkthrough, or [auth.md]({{BASE_URL}}/auth.md) for the
|
|
91
|
+
protocol-level flow.
|
|
87
92
|
`,
|
|
88
93
|
},
|
|
89
94
|
{
|
|
@@ -92,15 +97,15 @@ protocol-level flow.
|
|
|
92
97
|
description: 'What AIMEAT does for an organisation: consent-governed shared memory, auditable agent access, and coordination across teams and their AI agents.',
|
|
93
98
|
changefreq: 'monthly',
|
|
94
99
|
priority: '0.8',
|
|
95
|
-
markdown: `What AIMEAT gives an organisation: shared memory its people and their AI agents work from,
|
|
96
|
-
access that is granted and revoked per person and per agent, and a record of who reached what.
|
|
97
|
-
|
|
98
|
-
The point is not that agents can store things. It is that an organisation can let them, and still
|
|
99
|
-
answer the questions an auditor asks: whose data, on whose authority, for what purpose, and how do
|
|
100
|
-
we stop it. Consent is recorded, scoped and revocable, and the enforcement is at the access check
|
|
101
|
-
rather than in policy.
|
|
102
|
-
|
|
103
|
-
See also [How it works]({{BASE_URL}}/v1/how-it-works) and the [glossary]({{BASE_URL}}/v1/glossary).
|
|
100
|
+
markdown: `What AIMEAT gives an organisation: shared memory its people and their AI agents work from,
|
|
101
|
+
access that is granted and revoked per person and per agent, and a record of who reached what.
|
|
102
|
+
|
|
103
|
+
The point is not that agents can store things. It is that an organisation can let them, and still
|
|
104
|
+
answer the questions an auditor asks: whose data, on whose authority, for what purpose, and how do
|
|
105
|
+
we stop it. Consent is recorded, scoped and revocable, and the enforcement is at the access check
|
|
106
|
+
rather than in policy.
|
|
107
|
+
|
|
108
|
+
See also [How it works]({{BASE_URL}}/v1/how-it-works) and the [glossary]({{BASE_URL}}/v1/glossary).
|
|
104
109
|
`,
|
|
105
110
|
},
|
|
106
111
|
{
|
|
@@ -109,20 +114,20 @@ See also [How it works]({{BASE_URL}}/v1/how-it-works) and the [glossary]({{BASE_
|
|
|
109
114
|
description: 'The protocol in plain terms: identities for humans and their agents, memory with visibility rules, consent, and how nodes federate.',
|
|
110
115
|
changefreq: 'monthly',
|
|
111
116
|
priority: '0.8',
|
|
112
|
-
markdown: `AIMEAT in plain terms.
|
|
113
|
-
|
|
114
|
-
A person has an identity on a node. Their AI agents get identities of their own underneath it, each
|
|
115
|
-
approved by the person and limited to named permissions. Anything an agent stores belongs to the
|
|
116
|
-
person, not to the agent and not to the model vendor, and survives the session that created it.
|
|
117
|
-
|
|
118
|
-
Work happens in organisms: shared spaces holding workspaces, records and documents, with membership
|
|
119
|
-
and access per space. Agents and people work on the same material.
|
|
120
|
-
|
|
121
|
-
What agents produce can carry a price, which is where a capability stops being a demo and becomes
|
|
122
|
-
something somebody buys.
|
|
123
|
-
|
|
124
|
-
The vocabulary is in the [glossary]({{BASE_URL}}/v1/glossary); the full technical account is
|
|
125
|
-
[llms.txt]({{BASE_URL}}/llms.txt).
|
|
117
|
+
markdown: `AIMEAT in plain terms.
|
|
118
|
+
|
|
119
|
+
A person has an identity on a node. Their AI agents get identities of their own underneath it, each
|
|
120
|
+
approved by the person and limited to named permissions. Anything an agent stores belongs to the
|
|
121
|
+
person, not to the agent and not to the model vendor, and survives the session that created it.
|
|
122
|
+
|
|
123
|
+
Work happens in organisms: shared spaces holding workspaces, records and documents, with membership
|
|
124
|
+
and access per space. Agents and people work on the same material.
|
|
125
|
+
|
|
126
|
+
What agents produce can carry a price, which is where a capability stops being a demo and becomes
|
|
127
|
+
something somebody buys.
|
|
128
|
+
|
|
129
|
+
The vocabulary is in the [glossary]({{BASE_URL}}/v1/glossary); the full technical account is
|
|
130
|
+
[llms-full.txt]({{BASE_URL}}/llms-full.txt).
|
|
126
131
|
`,
|
|
127
132
|
},
|
|
128
133
|
{
|
|
@@ -131,12 +136,12 @@ The vocabulary is in the [glossary]({{BASE_URL}}/v1/glossary); the full technica
|
|
|
131
136
|
description: 'Browsable reference for every AIMEAT endpoint, generated from the OpenAPI contract that governs this node.',
|
|
132
137
|
changefreq: 'weekly',
|
|
133
138
|
priority: '0.8',
|
|
134
|
-
markdown: `Browsable reference for every endpoint on this node, rendered from the OpenAPI contract that
|
|
135
|
-
governs it.
|
|
136
|
-
|
|
137
|
-
- The contract itself: [{{BASE_URL}}/v1/spec]({{BASE_URL}}/v1/spec)
|
|
138
|
-
- Prefer prose: [llms.txt]({{BASE_URL}}/llms.txt) has the same surface with worked examples
|
|
139
|
-
- Getting an identity first: [auth.md]({{BASE_URL}}/auth.md)
|
|
139
|
+
markdown: `Browsable reference for every endpoint on this node, rendered from the OpenAPI contract that
|
|
140
|
+
governs it.
|
|
141
|
+
|
|
142
|
+
- The contract itself: [{{BASE_URL}}/v1/spec]({{BASE_URL}}/v1/spec)
|
|
143
|
+
- Prefer prose: [llms-full.txt]({{BASE_URL}}/llms-full.txt) has the same surface with worked examples
|
|
144
|
+
- Getting an identity first: [auth.md]({{BASE_URL}}/auth.md)
|
|
140
145
|
`,
|
|
141
146
|
},
|
|
142
147
|
{
|
|
@@ -145,11 +150,12 @@ governs it.
|
|
|
145
150
|
description: 'Getting started with AIMEAT, common questions, and a ready-made prompt you can paste into any AI chat to be walked through the node.',
|
|
146
151
|
changefreq: 'monthly',
|
|
147
152
|
priority: '0.7',
|
|
148
|
-
markdown: `Getting started with AIMEAT, the questions that come up first, and a prompt you can paste into any
|
|
149
|
-
AI chat to be walked through this node.
|
|
150
|
-
|
|
151
|
-
If you are an agent rather than a person, [AGENTS.md]({{BASE_URL}}/AGENTS.md) is the shorter road,
|
|
152
|
-
[llms.txt]({{BASE_URL}}/llms.txt) is the full
|
|
153
|
+
markdown: `Getting started with AIMEAT, the questions that come up first, and a prompt you can paste into any
|
|
154
|
+
AI chat to be walked through this node.
|
|
155
|
+
|
|
156
|
+
If you are an agent rather than a person, [AGENTS.md]({{BASE_URL}}/AGENTS.md) is the shorter road,
|
|
157
|
+
[llms.txt]({{BASE_URL}}/llms.txt) is the index, and [llms-full.txt]({{BASE_URL}}/llms-full.txt) is the
|
|
158
|
+
full manual.
|
|
153
159
|
`,
|
|
154
160
|
},
|
|
155
161
|
{
|
|
@@ -158,15 +164,15 @@ If you are an agent rather than a person, [AGENTS.md]({{BASE_URL}}/AGENTS.md) is
|
|
|
158
164
|
description: 'Connect Claude, ChatGPT or any MCP-capable assistant to your AIMEAT account, and approve exactly which scopes it may use.',
|
|
159
165
|
changefreq: 'monthly',
|
|
160
166
|
priority: '0.7',
|
|
161
|
-
markdown: `How to connect an AI assistant to your AIMEAT account.
|
|
162
|
-
|
|
163
|
-
Any MCP-capable client — Claude Desktop, claude.ai, Cursor and others — attaches to the node's MCP
|
|
164
|
-
server at \`{{BASE_URL}}/v1/mcp\` with OAuth 2.1. The server card is at
|
|
165
|
-
[/.well-known/mcp.json]({{BASE_URL}}/.well-known/mcp.json).
|
|
166
|
-
|
|
167
|
-
An agent that is not on an MCP platform uses the device flow instead: it asks for a code, you
|
|
168
|
-
approve it in your portal and choose its scopes, and it claims a token. Protocol detail:
|
|
169
|
-
[auth.md]({{BASE_URL}}/auth.md).
|
|
167
|
+
markdown: `How to connect an AI assistant to your AIMEAT account.
|
|
168
|
+
|
|
169
|
+
Any MCP-capable client — Claude Desktop, claude.ai, Cursor and others — attaches to the node's MCP
|
|
170
|
+
server at \`{{BASE_URL}}/v1/mcp\` with OAuth 2.1. The server card is at
|
|
171
|
+
[/.well-known/mcp.json]({{BASE_URL}}/.well-known/mcp.json).
|
|
172
|
+
|
|
173
|
+
An agent that is not on an MCP platform uses the device flow instead: it asks for a code, you
|
|
174
|
+
approve it in your portal and choose its scopes, and it claims a token. Protocol detail:
|
|
175
|
+
[auth.md]({{BASE_URL}}/auth.md).
|
|
170
176
|
`,
|
|
171
177
|
},
|
|
172
178
|
{
|
|
@@ -175,12 +181,12 @@ approve it in your portal and choose its scopes, and it claims a token. Protocol
|
|
|
175
181
|
description: 'The AIMEAT vocabulary: GHII, GAII and GEAI identities, morsels, organisms, workspaces, skills, capabilities and the rest, defined precisely.',
|
|
176
182
|
changefreq: 'monthly',
|
|
177
183
|
priority: '0.6',
|
|
178
|
-
markdown: `The AIMEAT vocabulary, defined precisely. Several of the terms are near-neighbours of each other,
|
|
179
|
-
and guessing wrong is quiet rather than loud.
|
|
180
|
-
|
|
181
|
-
The full set with forms, examples and cross-references is at
|
|
182
|
-
[{{BASE_URL}}/v1/glossary.md]({{BASE_URL}}/v1/glossary.md), and as JSON at
|
|
183
|
-
[{{BASE_URL}}/v1/glossary.json]({{BASE_URL}}/v1/glossary.json).
|
|
184
|
+
markdown: `The AIMEAT vocabulary, defined precisely. Several of the terms are near-neighbours of each other,
|
|
185
|
+
and guessing wrong is quiet rather than loud.
|
|
186
|
+
|
|
187
|
+
The full set with forms, examples and cross-references is at
|
|
188
|
+
[{{BASE_URL}}/v1/glossary.md]({{BASE_URL}}/v1/glossary.md), and as JSON at
|
|
189
|
+
[{{BASE_URL}}/v1/glossary.json]({{BASE_URL}}/v1/glossary.json).
|
|
184
190
|
`,
|
|
185
191
|
},
|
|
186
192
|
{
|
|
@@ -193,36 +199,36 @@ The full set with forms, examples and cross-references is at
|
|
|
193
199
|
// They have exactly one source — the live statement — and this file ships to every node that
|
|
194
200
|
// runs the software, where a hardcoded operator name would be a false statement. The page
|
|
195
201
|
// itself reads them from /v1/ai-transparency at render time for the same reason.
|
|
196
|
-
markdown: `When a model writes something on this node, the node records how it was made — which model,
|
|
197
|
-
when, on whose account, and how much a person was involved — and keeps that record at an address
|
|
198
|
-
of its own. Where a person reads that content on this node's own pages, the record becomes a
|
|
199
|
-
visible label: the official EU AI Office icon and a sentence in English or Finnish, with a link to
|
|
200
|
-
the full record. Software gets the same facts from the HTTP headers, the page metadata, and the
|
|
201
|
-
markdown and MCP surfaces.
|
|
202
|
-
|
|
203
|
-
## What this does not do
|
|
204
|
-
|
|
205
|
-
- This node does **not** watermark text. It does not see the words as a model produces them, and
|
|
206
|
-
that layer belongs to whoever runs the model.
|
|
207
|
-
- A mark can be removed by copying. The record at its own address survives that, but nothing here
|
|
208
|
-
makes text tamper-proof.
|
|
209
|
-
- Content made before this node started recording carries no record and will not acquire one.
|
|
210
|
-
- A missing record means nothing was stated. It never means a person wrote it.
|
|
211
|
-
|
|
212
|
-
## Checking a piece of content
|
|
213
|
-
|
|
214
|
-
Anyone can check content this node served, byte for byte, with no account:
|
|
215
|
-
\`GET {{BASE_URL}}/v1/provenance/by-hash/{sha256}\`. It works where the node served you the same
|
|
216
|
-
bytes it hashed; where the node re-assembles a document on the way out, use the record id from the
|
|
217
|
-
response's \`Link\` header instead.
|
|
218
|
-
|
|
219
|
-
## Who runs and supervises this node
|
|
220
|
-
|
|
221
|
-
Stated on the node's own live statement, [{{BASE_URL}}/v1/ai-transparency.md]({{BASE_URL}}/v1/ai-transparency.md),
|
|
222
|
-
which is also where the Code of Practice signatory status is answered.
|
|
223
|
-
|
|
224
|
-
Reporting content that should carry a label and does not: \`POST {{BASE_URL}}/v1/flags\` with
|
|
225
|
-
\`reason: "undisclosed_ai"\`.
|
|
202
|
+
markdown: `When a model writes something on this node, the node records how it was made — which model,
|
|
203
|
+
when, on whose account, and how much a person was involved — and keeps that record at an address
|
|
204
|
+
of its own. Where a person reads that content on this node's own pages, the record becomes a
|
|
205
|
+
visible label: the official EU AI Office icon and a sentence in English or Finnish, with a link to
|
|
206
|
+
the full record. Software gets the same facts from the HTTP headers, the page metadata, and the
|
|
207
|
+
markdown and MCP surfaces.
|
|
208
|
+
|
|
209
|
+
## What this does not do
|
|
210
|
+
|
|
211
|
+
- This node does **not** watermark text. It does not see the words as a model produces them, and
|
|
212
|
+
that layer belongs to whoever runs the model.
|
|
213
|
+
- A mark can be removed by copying. The record at its own address survives that, but nothing here
|
|
214
|
+
makes text tamper-proof.
|
|
215
|
+
- Content made before this node started recording carries no record and will not acquire one.
|
|
216
|
+
- A missing record means nothing was stated. It never means a person wrote it.
|
|
217
|
+
|
|
218
|
+
## Checking a piece of content
|
|
219
|
+
|
|
220
|
+
Anyone can check content this node served, byte for byte, with no account:
|
|
221
|
+
\`GET {{BASE_URL}}/v1/provenance/by-hash/{sha256}\`. It works where the node served you the same
|
|
222
|
+
bytes it hashed; where the node re-assembles a document on the way out, use the record id from the
|
|
223
|
+
response's \`Link\` header instead.
|
|
224
|
+
|
|
225
|
+
## Who runs and supervises this node
|
|
226
|
+
|
|
227
|
+
Stated on the node's own live statement, [{{BASE_URL}}/v1/ai-transparency.md]({{BASE_URL}}/v1/ai-transparency.md),
|
|
228
|
+
which is also where the Code of Practice signatory status is answered.
|
|
229
|
+
|
|
230
|
+
Reporting content that should carry a label and does not: \`POST {{BASE_URL}}/v1/flags\` with
|
|
231
|
+
\`reason: "undisclosed_ai"\`.
|
|
226
232
|
`,
|
|
227
233
|
},
|
|
228
234
|
{
|
|
@@ -231,11 +237,11 @@ Reporting content that should carry a label and does not: \`POST {{BASE_URL}}/v1
|
|
|
231
237
|
description: 'How this AIMEAT node handles personal data: what is stored, who can reach it, how consent is recorded, and how to have it removed.',
|
|
232
238
|
changefreq: 'yearly',
|
|
233
239
|
priority: '0.3',
|
|
234
|
-
markdown: `How this node handles personal data: what is stored, who can reach it, how consent is recorded and
|
|
235
|
-
revoked, and how to have data removed.
|
|
236
|
-
|
|
237
|
-
The full text is on the page itself, which also answers \`Accept: text/markdown\` with a conversion of
|
|
238
|
-
the real content rather than this summary.
|
|
240
|
+
markdown: `How this node handles personal data: what is stored, who can reach it, how consent is recorded and
|
|
241
|
+
revoked, and how to have data removed.
|
|
242
|
+
|
|
243
|
+
The full text is on the page itself, which also answers \`Accept: text/markdown\` with a conversion of
|
|
244
|
+
the real content rather than this summary.
|
|
239
245
|
`,
|
|
240
246
|
},
|
|
241
247
|
{
|
|
@@ -244,11 +250,11 @@ the real content rather than this summary.
|
|
|
244
250
|
description: 'The terms under which this AIMEAT node is offered, for the humans who hold accounts and the agents acting on their behalf.',
|
|
245
251
|
changefreq: 'yearly',
|
|
246
252
|
priority: '0.3',
|
|
247
|
-
markdown: `The terms under which this node is offered, for the people who hold accounts and the agents acting
|
|
248
|
-
on their behalf.
|
|
249
|
-
|
|
250
|
-
The full text is on the page itself, which also answers \`Accept: text/markdown\` with a conversion of
|
|
251
|
-
the real content rather than this summary.
|
|
253
|
+
markdown: `The terms under which this node is offered, for the people who hold accounts and the agents acting
|
|
254
|
+
on their behalf.
|
|
255
|
+
|
|
256
|
+
The full text is on the page itself, which also answers \`Accept: text/markdown\` with a conversion of
|
|
257
|
+
the real content rather than this summary.
|
|
252
258
|
`,
|
|
253
259
|
},
|
|
254
260
|
];
|
|
@@ -264,4 +270,38 @@ export function findPublicPage(path) {
|
|
|
264
270
|
export function mirroredPages() {
|
|
265
271
|
return PUBLIC_PAGES.filter((p) => !p.planned && p.markdown);
|
|
266
272
|
}
|
|
273
|
+
/**
|
|
274
|
+
* Paths the llms.txt index already names in its Documentation section. Listing them again under
|
|
275
|
+
* "Human pages" costs an index whose whole value is being short.
|
|
276
|
+
*/
|
|
277
|
+
const LLMS_INDEX_DOCUMENTED = new Set(['/v1/docs', '/v1/glossary']);
|
|
278
|
+
/**
|
|
279
|
+
* Paths that belong in the index's "Optional" section — the llmstxt.org convention for links an
|
|
280
|
+
* agent can skip when it needs a shorter context. Policy and transparency pages are that: a reader
|
|
281
|
+
* deciding what this node is does not need them, and a reader who does need them is looking.
|
|
282
|
+
*/
|
|
283
|
+
const LLMS_INDEX_OPTIONAL = new Set(['/v1/transparency', '/v1/privacy', '/v1/terms']);
|
|
284
|
+
/** One llms.txt link-list line per page: `- [Title](url): description`. */
|
|
285
|
+
function llmsLine(page, baseUrl) {
|
|
286
|
+
return `- [${page.title}](${baseUrl}${page.path}): ${page.description}`;
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* The llms.txt index "Human pages" list — substituted for the `{{HUMAN_PAGES}}` token. Generated
|
|
290
|
+
* from this registry rather than hand-listed, so a page added above appears in the index without a
|
|
291
|
+
* second edit. The fat manual it replaced had no human-page list at all, so a model asked what
|
|
292
|
+
* AIMEAT is was sent into the app builder's manual for the answer.
|
|
293
|
+
*/
|
|
294
|
+
export function buildLlmsHumanPages(baseUrl) {
|
|
295
|
+
return sitemapPages()
|
|
296
|
+
.filter((p) => !LLMS_INDEX_DOCUMENTED.has(p.path) && !LLMS_INDEX_OPTIONAL.has(p.path))
|
|
297
|
+
.map((p) => llmsLine(p, baseUrl))
|
|
298
|
+
.join('\n');
|
|
299
|
+
}
|
|
300
|
+
/** The llms.txt index "Optional" page lines — substituted for the `{{OPTIONAL_PAGES}}` token. */
|
|
301
|
+
export function buildLlmsOptionalPages(baseUrl) {
|
|
302
|
+
return sitemapPages()
|
|
303
|
+
.filter((p) => LLMS_INDEX_OPTIONAL.has(p.path))
|
|
304
|
+
.map((p) => llmsLine(p, baseUrl))
|
|
305
|
+
.join('\n');
|
|
306
|
+
}
|
|
267
307
|
//# sourceMappingURL=public-pages.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-pages.js","sourceRoot":"","sources":["../../../src/data/public-pages.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"public-pages.js","sourceRoot":"","sources":["../../../src/data/public-pages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AAyCH;;;GAGG;AACH,MAAM,CAAC,MAAM,YAAY,GAAiB;IACxC;QACE,IAAI,EAAE,GAAG;QACT,KAAK,EAAE,iDAAiD;QACxD,WAAW,EAAE,2IAA2I;QACxJ,UAAU,EAAE,QAAQ;QACpB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;;;;;;;;;;;;;CAkBb;KACE;IACD;QACE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,yDAAyD;QAChE,WAAW,EAAE,kIAAkI;QAC/I,UAAU,EAAE,QAAQ;QACpB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;;CAOb;KACE;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,0BAA0B;QACjC,WAAW,EAAE,kJAAkJ;QAC/J,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;;;;CASb;KACE;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,KAAK,EAAE,kBAAkB;QACzB,WAAW,EAAE,qIAAqI;QAClJ,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;;;;;;;;;CAcb;KACE;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,mBAAmB;QAC1B,WAAW,EAAE,4GAA4G;QACzH,UAAU,EAAE,QAAQ;QACpB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;CAMb;KACE;IACD;QACE,IAAI,EAAE,UAAU;QAChB,KAAK,EAAE,MAAM;QACb,WAAW,EAAE,sIAAsI;QACnJ,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;CAMb;KACE;IACD;QACE,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,sCAAsC;QAC7C,WAAW,EAAE,2HAA2H;QACxI,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;;;;CASb;KACE;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,8IAA8I;QAC3J,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;;CAMb;KACE;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,KAAK,EAAE,0CAA0C;QACjD,WAAW,EAAE,8KAA8K;QAC3L,UAAU,EAAE,SAAS;QACrB,QAAQ,EAAE,KAAK;QACf,8FAA8F;QAC9F,6FAA6F;QAC7F,0FAA0F;QAC1F,iFAAiF;QACjF,QAAQ,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8Bb;KACE;IACD;QACE,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,oIAAoI;QACjJ,UAAU,EAAE,QAAQ;QACpB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;CAKb;KACE;IACD;QACE,IAAI,EAAE,WAAW;QACjB,KAAK,EAAE,cAAc;QACrB,WAAW,EAAE,4HAA4H;QACzI,UAAU,EAAE,QAAQ;QACpB,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE;;;;;CAKb;KACE;CACF,CAAC;AAEF,oEAAoE;AACpE,MAAM,UAAU,YAAY;IAC1B,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;AAChD,CAAC;AAED,uFAAuF;AACvF,MAAM,UAAU,cAAc,CAAC,IAAY;IACzC,OAAO,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,CAAC;AACnD,CAAC;AAED,oGAAoG;AACpG,MAAM,UAAU,aAAa;IAC3B,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC;AAC9D,CAAC;AAED;;;GAGG;AACH,MAAM,qBAAqB,GAAG,IAAI,GAAG,CAAC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC,CAAC;AAEpE;;;;GAIG;AACH,MAAM,mBAAmB,GAAG,IAAI,GAAG,CAAC,CAAC,kBAAkB,EAAE,aAAa,EAAE,WAAW,CAAC,CAAC,CAAC;AAEtF,2EAA2E;AAC3E,SAAS,QAAQ,CAAC,IAAgB,EAAE,OAAe;IACjD,OAAO,MAAM,IAAI,CAAC,KAAK,KAAK,OAAO,GAAG,IAAI,CAAC,IAAI,MAAM,IAAI,CAAC,WAAW,EAAE,CAAC;AAC1E,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,mBAAmB,CAAC,OAAe;IACjD,OAAO,YAAY,EAAE;SAClB,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,qBAAqB,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;SACrF,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;SAChC,IAAI,CAAC,IAAI,CAAC,CAAC;AAChB,CAAC;AAED,iGAAiG;AACjG,MAAM,UAAU,sBAAsB,CAAC,OAAe;IACpD,OAAO,YAAY,EAAE;SAClB,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;SAC9C,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;SAChC,IAAI,CAAC,IAAI,CAAC,CAAC;AAChB,CAAC"}
|