@agent-native/core 0.131.5 → 0.131.7
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/corpus/README.md +3 -3
- package/corpus/core/CHANGELOG.md +70 -0
- package/corpus/core/docs/content/agent-native-toolkit.mdx +13 -6
- package/corpus/core/docs/content/cloneable-saas.mdx +5 -5
- package/corpus/core/docs/content/creating-templates.mdx +9 -0
- package/corpus/core/docs/content/deployment.mdx +18 -12
- package/corpus/core/docs/content/doctor.mdx +8 -1
- package/corpus/core/docs/content/drop-in-agent.mdx +1 -1
- package/corpus/core/docs/content/extensions.mdx +18 -18
- package/corpus/core/docs/content/faq.mdx +4 -4
- package/corpus/core/docs/content/key-concepts.mdx +30 -21
- package/corpus/core/docs/content/security.mdx +2 -2
- package/corpus/core/docs/content/template-brain-developers.mdx +4 -1
- package/corpus/core/docs/content/template-mail-developers.mdx +4 -1
- package/corpus/core/docs/content/what-is-agent-native.mdx +6 -6
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/a2a/client.ts +449 -66
- package/corpus/core/src/a2a/correlation.ts +31 -0
- package/corpus/core/src/a2a/invoke.ts +4 -2
- package/corpus/core/src/a2a/types.ts +4 -0
- package/corpus/core/src/action.ts +3 -0
- package/corpus/core/src/agent/action-continuation-guidance.ts +2 -1
- package/corpus/core/src/agent/engine/registry.ts +98 -6
- package/corpus/core/src/agent/production-agent.ts +151 -18
- package/corpus/core/src/agent/run-loop-with-resume.ts +190 -3
- package/corpus/core/src/agent/run-manager.ts +117 -41
- package/corpus/core/src/agent/thread-debug-history.ts +86 -0
- package/corpus/core/src/agent/types.ts +3 -1
- package/corpus/core/src/cli/create.ts +11 -1
- package/corpus/core/src/cli/templates-meta.ts +2 -2
- package/corpus/core/src/client/agent-chat-adapter.ts +91 -13
- package/corpus/core/src/client/resources/McpIntegrationDialog.tsx +11 -9
- package/corpus/core/src/client/sse-event-processor.ts +17 -3
- package/corpus/core/src/db/client.ts +57 -17
- package/corpus/core/src/guards/no-env-credentials.ts +2 -0
- package/corpus/core/src/integrations/adapters/slack.ts +8 -3
- package/corpus/core/src/localization/default-messages.ts +44 -0
- package/corpus/core/src/observability/traces.ts +78 -5
- package/corpus/core/src/scripts/call-agent.ts +294 -11
- package/corpus/core/src/scripts/describe-workspace-apps.ts +2 -2
- package/corpus/core/src/secrets/crypto.ts +156 -35
- package/corpus/core/src/secrets/storage.ts +64 -26
- package/corpus/core/src/server/agent-capabilities.ts +1 -1
- package/corpus/core/src/server/agent-chat/action-filters-a2a.ts +113 -7
- package/corpus/core/src/server/agent-chat/context-tools.ts +2 -0
- package/corpus/core/src/server/agent-chat/plugin-options.ts +34 -1
- package/corpus/core/src/server/agent-chat/prompt-resources.ts +1 -1
- package/corpus/core/src/server/agent-chat-plugin.ts +91 -59
- package/corpus/core/src/templates/default/.agents/skills/secrets/SKILL.md +19 -7
- package/corpus/core/src/templates/headless/.agents/skills/secrets/SKILL.md +19 -7
- package/corpus/core/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +18 -7
- package/corpus/core/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +15 -14
- package/corpus/core/src/templates/workspace-core/.agents/skills/secrets/SKILL.md +19 -7
- package/corpus/core/src/vite/client.ts +1 -0
- package/corpus/templates/analytics/.agents/skills/dashboard-ops/SKILL.md +5 -4
- package/corpus/templates/analytics/.agents/skills/gong/SKILL.md +6 -4
- package/corpus/templates/analytics/AGENTS.md +7 -4
- package/corpus/templates/analytics/actions/query-agent-native-analytics.ts +4 -3
- package/corpus/templates/analytics/changelog/2026-07-30-delegated-analytics-questions-now-return-a-useful-current-me.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-30-scheduled-dashboard-emails-complete-every-panel-without-pool.md +6 -0
- package/corpus/templates/analytics/scripts/emit-netlify-dashboard-report-cron.ts +28 -1
- package/corpus/templates/analytics/server/jobs/dashboard-report.ts +18 -11
- package/corpus/templates/analytics/server/lib/analytics-connector-catalog.ts +4 -4
- package/corpus/templates/analytics/server/lib/canonical-first-party-dashboard-repair.ts +9 -5
- package/corpus/templates/analytics/server/lib/dashboard-panel-query.ts +6 -2
- package/corpus/templates/analytics/server/lib/dashboard-panel-source-resolver.ts +11 -4
- package/corpus/templates/analytics/server/lib/dashboard-report-render.ts +49 -31
- package/corpus/templates/analytics/server/lib/first-party-analytics.ts +16 -8
- package/corpus/templates/analytics/server/lib/first-party-metric-catalog.ts +9 -3
- package/corpus/templates/analytics/server/lib/production-serverless-runtime.ts +11 -0
- package/corpus/templates/analytics/server/lib/real-data-actions.ts +10 -0
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +3 -2
- package/corpus/templates/analytics/server/plugins/analytics-alert-jobs.ts +2 -1
- package/corpus/templates/analytics/server/plugins/dashboard-report-jobs.ts +2 -1
- package/corpus/templates/analytics/server/plugins/uptime-monitor-jobs.ts +1 -12
- package/corpus/templates/brain/.agents/skills/brain/RUNBOOK.md +54 -6
- package/corpus/templates/brain/.agents/skills/brain/SKILL.md +20 -9
- package/corpus/templates/brain/.agents/skills/ingestion-and-connectors/SKILL.md +33 -1
- package/corpus/templates/brain/AGENTS.md +3 -1
- package/corpus/templates/brain/README.md +4 -1
- package/corpus/templates/brain/actions/_schemas.ts +30 -8
- package/corpus/templates/brain/actions/ask-brain.ts +124 -14
- package/corpus/templates/brain/actions/create-source.ts +18 -2
- package/corpus/templates/brain/actions/enqueue-captures-distillation.ts +8 -123
- package/corpus/templates/brain/actions/enqueue-distillation.ts +6 -127
- package/corpus/templates/brain/actions/import-capture.ts +17 -5
- package/corpus/templates/brain/actions/import-transcript.ts +17 -5
- package/corpus/templates/brain/actions/update-source.ts +25 -5
- package/corpus/templates/brain/app/components/layout/Sidebar.tsx +1 -1
- package/corpus/templates/brain/changelog/2026-07-30-blessed-resources-can-feed-cited-company-answers.md +6 -0
- package/corpus/templates/brain/changelog/2026-07-30-the-left-sidebar-no-longer-shows-a-blank-organization-placeh.md +6 -0
- package/corpus/templates/brain/server/lib/brain.ts +49 -19
- package/corpus/templates/brain/server/lib/distillation-queue.ts +147 -0
- package/corpus/templates/brain/server/lib/source-policy.ts +264 -0
- package/corpus/templates/brain/server/plugins/agent-chat.ts +3 -2
- package/corpus/templates/brain/server/routes/api/_agent-native/brain/ingest.post.ts +116 -19
- package/corpus/templates/clips/app/components/meetings/google-oauth-identity-notice.tsx +51 -0
- package/corpus/templates/clips/app/i18n/en-US.ts +4 -0
- package/corpus/templates/clips/app/routes/_app.meetings._index.tsx +3 -1
- package/corpus/templates/clips/changelog/2026-07-30-google-calendar-warning.md +6 -0
- package/corpus/templates/content/app/components/editor/VisualEditor.tsx +72 -8
- package/corpus/templates/content/changelog/2026-07-30-the-slash-command-hint-now-stays-on-only-the-active-empty-li.md +6 -0
- package/corpus/templates/design/.generated/bridge/editor-chrome.generated.ts +506 -11
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +148 -17
- package/corpus/templates/design/app/components/design/canvas-interactions/design-canvas-interactions.ts +357 -0
- package/corpus/templates/design/app/components/design/inspector/ScrubInput.tsx +7 -466
- package/corpus/templates/design/app/components/design/inspector/scrub-input-utils.ts +15 -311
- package/corpus/templates/design/app/components/visual-editor/CanvasCommentPins.tsx +19 -997
- package/corpus/templates/design/app/components/visual-editor/DrawOverlay.tsx +8 -1216
- package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +31 -38
- package/corpus/templates/design/package.json +0 -1
- package/corpus/templates/dispatch/AGENTS.md +8 -0
- package/corpus/templates/dispatch/DEVELOPING.md +29 -0
- package/corpus/templates/dispatch/actions/view-screen.ts +34 -2
- package/corpus/templates/dispatch/app/i18n-data.ts +457 -0
- package/corpus/templates/dispatch/changelog/2026-07-30-delegated-dispatch-work-continues-reliably-in-the-background.md +6 -0
- package/corpus/templates/dispatch/changelog/2026-07-30-find-failed-runs-across-apps.md +6 -0
- package/corpus/templates/dispatch/netlify.toml +3 -0
- package/corpus/templates/plan/actions/get-visual-plan.ts +10 -6
- package/corpus/templates/plan/actions/patch-visual-plan-source.ts +117 -1
- package/corpus/templates/plan/actions/update-visual-plan.ts +56 -14
- package/corpus/templates/plan/app/pages/PlansPage.tsx +1 -1
- package/corpus/templates/plan/changelog/2026-07-30-plan-agents-recover-with-targeted-writes.md +6 -0
- package/corpus/templates/plan/shared/plan-content.ts +35 -0
- package/corpus/templates/slides/.agents/skills/analytics-data-for-decks/SKILL.md +8 -12
- package/corpus/templates/slides/AGENTS.md +4 -4
- package/corpus/templates/slides/actions/create-deck.ts +1 -1
- package/corpus/templates/slides/actions/duplicate-deck.ts +19 -4
- package/corpus/templates/slides/app/components/deck/DeckCard.tsx +2 -10
- package/corpus/templates/slides/app/components/deck/MermaidRenderer.tsx +12 -1
- package/corpus/templates/slides/app/components/deck/SlideRenderer.tsx +30 -13
- package/corpus/templates/slides/app/components/editor/DeckEditorSkeleton.tsx +35 -0
- package/corpus/templates/slides/app/components/editor/EditorSidebar.tsx +63 -56
- package/corpus/templates/slides/app/components/editor/EditorToolbar.tsx +21 -76
- package/corpus/templates/slides/app/components/editor/SlideEditor.tsx +1110 -292
- package/corpus/templates/slides/app/components/editor/SlideOverflowWarning.tsx +53 -0
- package/corpus/templates/slides/app/components/editor/SlideStyleInspector.tsx +235 -18
- package/corpus/templates/slides/app/components/editor/SpeakerNotesPanel.tsx +4 -1
- package/corpus/templates/slides/app/components/editor/canvas-interactions/index.ts +11 -0
- package/corpus/templates/slides/app/components/editor/canvas-interactions/slides-canvas-adapter.ts +129 -0
- package/corpus/templates/slides/app/components/editor/selection-overlay-measurement.ts +70 -0
- package/corpus/templates/slides/app/components/editor/slide-object-interactions.ts +519 -65
- package/corpus/templates/slides/app/components/visual-editor/CanvasCommentPins.tsx +36 -426
- package/corpus/templates/slides/app/components/visual-editor/DrawOverlay.tsx +19 -458
- package/corpus/templates/slides/app/context/DeckContext.tsx +179 -72
- package/corpus/templates/slides/app/global.css +105 -0
- package/corpus/templates/slides/app/i18n/en-US.ts +8 -0
- package/corpus/templates/slides/app/lib/deck-editor-loading.ts +26 -0
- package/corpus/templates/slides/app/lib/mermaid-blocks.ts +27 -0
- package/corpus/templates/slides/app/pages/DeckEditor.tsx +71 -38
- package/corpus/templates/slides/app/pages/Index.tsx +98 -41
- package/corpus/templates/slides/changelog/2026-07-30-deck-loading-no-longer-flashes-an-unavailable-message.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-duplicating-a-deck-from-the-deck-list-now-opens-the-copy-imm.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-layout-overflow-warning-is-readable-and-dismissible.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-new-decks-now-start-with-an-empty-slide-list-when-no-slides-.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-shared-canvas-annotations.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-slide-objects-can-be-moved-as-a-group-copied-and-pasted-with.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-slide-text-editing-and-object-controls-now-match-google-slides.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-style-panel-now-scrolls-with-speaker-notes-open-shows-the-sl.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-30-top-toolbar-controls-now-use-consistent-sizing-with-undo-and.md +6 -0
- package/corpus/templates/slides/netlify.toml +3 -1
- package/corpus/templates/slides/package.json +0 -1
- package/corpus/templates/slides/server/lib/chat-attachments.ts +18 -0
- package/corpus/templates/slides/server/plugins/agent-chat.ts +5 -0
- package/corpus/templates/slides/vite.config.ts +0 -1
- package/corpus/toolkit/CHANGELOG.md +13 -0
- package/corpus/toolkit/README.md +19 -0
- package/corpus/toolkit/agent-native.eject.json +38 -0
- package/corpus/toolkit/package.json +29 -1
- package/corpus/toolkit/src/canvas-annotations/CanvasCommentPins.tsx +861 -0
- package/corpus/toolkit/src/canvas-annotations/DrawOverlay.tsx +1233 -0
- package/corpus/toolkit/src/canvas-annotations/index.ts +15 -0
- package/corpus/toolkit/src/canvas-annotations/types.ts +14 -0
- package/corpus/toolkit/src/canvas-interactions/canvas-interactions.ts +933 -0
- package/corpus/toolkit/src/canvas-interactions/index.ts +67 -0
- package/corpus/toolkit/src/design-tweaks/scrub-input-utils.ts +311 -0
- package/corpus/toolkit/src/design-tweaks/scrub-input.tsx +491 -0
- package/corpus/toolkit/src/design-tweaks/visual-style-controls.tsx +26 -171
- package/corpus/toolkit/src/index.ts +1 -0
- package/dist/a2a/client.d.ts +23 -0
- package/dist/a2a/client.d.ts.map +1 -1
- package/dist/a2a/client.js +309 -44
- package/dist/a2a/client.js.map +1 -1
- package/dist/a2a/correlation.d.ts +1 -0
- package/dist/a2a/correlation.d.ts.map +1 -1
- package/dist/a2a/correlation.js +27 -0
- package/dist/a2a/correlation.js.map +1 -1
- package/dist/a2a/invoke.d.ts.map +1 -1
- package/dist/a2a/invoke.js +4 -2
- package/dist/a2a/invoke.js.map +1 -1
- package/dist/a2a/types.d.ts +4 -0
- package/dist/a2a/types.d.ts.map +1 -1
- package/dist/a2a/types.js.map +1 -1
- package/dist/action.d.ts +3 -0
- package/dist/action.d.ts.map +1 -1
- package/dist/action.js.map +1 -1
- package/dist/agent/action-continuation-guidance.d.ts.map +1 -1
- package/dist/agent/action-continuation-guidance.js +2 -1
- package/dist/agent/action-continuation-guidance.js.map +1 -1
- package/dist/agent/engine/registry.d.ts.map +1 -1
- package/dist/agent/engine/registry.js +82 -8
- package/dist/agent/engine/registry.js.map +1 -1
- package/dist/agent/production-agent.d.ts +40 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +113 -15
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-loop-with-resume.d.ts +21 -0
- package/dist/agent/run-loop-with-resume.d.ts.map +1 -1
- package/dist/agent/run-loop-with-resume.js +163 -4
- package/dist/agent/run-loop-with-resume.js.map +1 -1
- package/dist/agent/run-manager.d.ts +16 -9
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +93 -42
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/thread-debug-history.d.ts +10 -0
- package/dist/agent/thread-debug-history.d.ts.map +1 -0
- package/dist/agent/thread-debug-history.js +68 -0
- package/dist/agent/thread-debug-history.js.map +1 -0
- package/dist/agent/types.d.ts +3 -1
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +6 -1
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/templates-meta.js +2 -2
- package/dist/cli/templates-meta.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +76 -13
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/resources/McpIntegrationDialog.d.ts.map +1 -1
- package/dist/client/resources/McpIntegrationDialog.js +1 -1
- package/dist/client/resources/McpIntegrationDialog.js.map +1 -1
- package/dist/client/sse-event-processor.d.ts.map +1 -1
- package/dist/client/sse-event-processor.js +12 -3
- package/dist/client/sse-event-processor.js.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/db/client.d.ts.map +1 -1
- package/dist/db/client.js +48 -17
- package/dist/db/client.js.map +1 -1
- package/dist/guards/no-env-credentials.d.ts.map +1 -1
- package/dist/guards/no-env-credentials.js +2 -0
- package/dist/guards/no-env-credentials.js.map +1 -1
- package/dist/integrations/adapters/slack.js +7 -3
- package/dist/integrations/adapters/slack.js.map +1 -1
- package/dist/localization/default-messages.d.ts +43 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +43 -0
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/observability/traces.d.ts +3 -1
- package/dist/observability/traces.d.ts.map +1 -1
- package/dist/observability/traces.js +73 -4
- package/dist/observability/traces.js.map +1 -1
- package/dist/progress/routes.d.ts +1 -1
- package/dist/provider-api/actions/custom-provider-registration.d.ts +12 -12
- package/dist/provider-api/actions/provider-api.d.ts +13 -13
- package/dist/provider-api/corpus-jobs.d.ts +2 -2
- package/dist/scripts/call-agent.d.ts.map +1 -1
- package/dist/scripts/call-agent.js +237 -12
- package/dist/scripts/call-agent.js.map +1 -1
- package/dist/scripts/describe-workspace-apps.js +2 -2
- package/dist/scripts/describe-workspace-apps.js.map +1 -1
- package/dist/secrets/crypto.d.ts +36 -21
- package/dist/secrets/crypto.d.ts.map +1 -1
- package/dist/secrets/crypto.js +134 -33
- package/dist/secrets/crypto.js.map +1 -1
- package/dist/secrets/storage.d.ts +6 -6
- package/dist/secrets/storage.d.ts.map +1 -1
- package/dist/secrets/storage.js +43 -26
- package/dist/secrets/storage.js.map +1 -1
- package/dist/server/agent-capabilities.js +1 -1
- package/dist/server/agent-capabilities.js.map +1 -1
- package/dist/server/agent-chat/action-filters-a2a.d.ts +17 -3
- package/dist/server/agent-chat/action-filters-a2a.d.ts.map +1 -1
- package/dist/server/agent-chat/action-filters-a2a.js +94 -3
- package/dist/server/agent-chat/action-filters-a2a.js.map +1 -1
- package/dist/server/agent-chat/context-tools.d.ts.map +1 -1
- package/dist/server/agent-chat/context-tools.js +2 -0
- package/dist/server/agent-chat/context-tools.js.map +1 -1
- package/dist/server/agent-chat/plugin-options.d.ts +23 -0
- package/dist/server/agent-chat/plugin-options.d.ts.map +1 -1
- package/dist/server/agent-chat/plugin-options.js +4 -1
- package/dist/server/agent-chat/plugin-options.js.map +1 -1
- package/dist/server/agent-chat/prompt-resources.js +1 -1
- package/dist/server/agent-chat/prompt-resources.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts +2 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +79 -56
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/realtime-token.d.ts +1 -1
- package/dist/templates/default/.agents/skills/secrets/SKILL.md +19 -7
- package/dist/templates/headless/.agents/skills/secrets/SKILL.md +19 -7
- package/dist/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +18 -7
- package/dist/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +15 -14
- package/dist/templates/workspace-core/.agents/skills/secrets/SKILL.md +19 -7
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +1 -0
- package/dist/vite/client.js.map +1 -1
- package/docs/content/agent-native-toolkit.mdx +13 -6
- package/docs/content/cloneable-saas.mdx +5 -5
- package/docs/content/creating-templates.mdx +9 -0
- package/docs/content/deployment.mdx +18 -12
- package/docs/content/doctor.mdx +8 -1
- package/docs/content/drop-in-agent.mdx +1 -1
- package/docs/content/extensions.mdx +18 -18
- package/docs/content/faq.mdx +4 -4
- package/docs/content/key-concepts.mdx +30 -21
- package/docs/content/security.mdx +2 -2
- package/docs/content/template-brain-developers.mdx +4 -1
- package/docs/content/template-mail-developers.mdx +4 -1
- package/docs/content/what-is-agent-native.mdx +6 -6
- package/package.json +3 -3
- package/src/a2a/client.ts +449 -66
- package/src/a2a/correlation.ts +31 -0
- package/src/a2a/invoke.ts +4 -2
- package/src/a2a/types.ts +4 -0
- package/src/action.ts +3 -0
- package/src/agent/action-continuation-guidance.ts +2 -1
- package/src/agent/engine/registry.ts +98 -6
- package/src/agent/production-agent.ts +151 -18
- package/src/agent/run-loop-with-resume.ts +190 -3
- package/src/agent/run-manager.ts +117 -41
- package/src/agent/thread-debug-history.ts +86 -0
- package/src/agent/types.ts +3 -1
- package/src/cli/create.ts +11 -1
- package/src/cli/templates-meta.ts +2 -2
- package/src/client/agent-chat-adapter.ts +91 -13
- package/src/client/resources/McpIntegrationDialog.tsx +11 -9
- package/src/client/sse-event-processor.ts +17 -3
- package/src/db/client.ts +57 -17
- package/src/guards/no-env-credentials.ts +2 -0
- package/src/integrations/adapters/slack.ts +8 -3
- package/src/localization/default-messages.ts +44 -0
- package/src/observability/traces.ts +78 -5
- package/src/scripts/call-agent.ts +294 -11
- package/src/scripts/describe-workspace-apps.ts +2 -2
- package/src/secrets/crypto.ts +156 -35
- package/src/secrets/storage.ts +64 -26
- package/src/server/agent-capabilities.ts +1 -1
- package/src/server/agent-chat/action-filters-a2a.ts +113 -7
- package/src/server/agent-chat/context-tools.ts +2 -0
- package/src/server/agent-chat/plugin-options.ts +34 -1
- package/src/server/agent-chat/prompt-resources.ts +1 -1
- package/src/server/agent-chat-plugin.ts +91 -59
- package/src/templates/default/.agents/skills/secrets/SKILL.md +19 -7
- package/src/templates/headless/.agents/skills/secrets/SKILL.md +19 -7
- package/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +18 -7
- package/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +15 -14
- package/src/templates/workspace-core/.agents/skills/secrets/SKILL.md +19 -7
- package/src/vite/client.ts +1 -0
|
@@ -322,6 +322,50 @@ const enUS = {
|
|
|
322
322
|
unknownPlatform: "unknown",
|
|
323
323
|
attemptsCount: "{{count}} attempts",
|
|
324
324
|
noErrorMessage: "(no error message)",
|
|
325
|
+
threadDebugInspectFailure: "Inspect failed run",
|
|
326
|
+
threadDebugFailureCode: "Failure code",
|
|
327
|
+
threadDebugTerminalReason: "Terminal reason",
|
|
328
|
+
threadDebugDispatchMode: "Dispatch mode",
|
|
329
|
+
threadDebugLastStage: "Last stage",
|
|
330
|
+
threadDebugDuration: "Duration",
|
|
331
|
+
threadDebugLastProgress: "Last progress",
|
|
332
|
+
threadDebugTitle: "Thread Debug",
|
|
333
|
+
threadDebugDescription:
|
|
334
|
+
"Inspect failed agent runs, persisted threads, run events, and AI internals.",
|
|
335
|
+
threadDebugFailedRuns: "Failed runs",
|
|
336
|
+
threadDebugThreads: "Threads",
|
|
337
|
+
threadDebugSource: "Source",
|
|
338
|
+
threadDebugAllSources: "All sources",
|
|
339
|
+
threadDebugOwner: "Owner email",
|
|
340
|
+
threadDebugStatus: "Status",
|
|
341
|
+
threadDebugAllStatuses: "All statuses",
|
|
342
|
+
threadDebugErrored: "Errored",
|
|
343
|
+
threadDebugAborted: "Aborted",
|
|
344
|
+
threadDebugTruncated: "Truncated",
|
|
345
|
+
threadDebugRange: "Time range",
|
|
346
|
+
threadDebugRange24h: "Last 24 hours",
|
|
347
|
+
threadDebugRange7d: "Last 7 days",
|
|
348
|
+
threadDebugRange30d: "Last 30 days",
|
|
349
|
+
threadDebugFailureResults: "failed runs",
|
|
350
|
+
threadDebugCurrentScope: "current scope",
|
|
351
|
+
threadDebugPartialResults: "Partial results",
|
|
352
|
+
threadDebugUnavailableSources: "Unavailable sources:",
|
|
353
|
+
threadDebugDisconnected: "disconnected",
|
|
354
|
+
threadDebugUnsupported: "unsupported",
|
|
355
|
+
threadDebugUnavailable: "unavailable",
|
|
356
|
+
threadDebugRefreshFailures: "Refresh failed runs",
|
|
357
|
+
threadDebugNoFailures: "No failed runs found.",
|
|
358
|
+
threadDebugCurrentDatabase: "Current Dispatch DB",
|
|
359
|
+
threadDebugSearchPlaceholder: "Search title, preview, messages, tools",
|
|
360
|
+
threadDebugSearch: "Search",
|
|
361
|
+
threadDebugLookupPlaceholder: "Paste thread or request/run ID",
|
|
362
|
+
threadDebugInspect: "Inspect",
|
|
363
|
+
threadDebugAdminScope: "admin scope",
|
|
364
|
+
threadDebugOwnScope: "own scope",
|
|
365
|
+
threadDebugResults: "results",
|
|
366
|
+
threadDebugRefreshThreads: "Refresh threads",
|
|
367
|
+
threadDebugNoThreads: "No threads found.",
|
|
368
|
+
threadDebugSelectPrompt: "Select a failed run or thread to inspect.",
|
|
325
369
|
},
|
|
326
370
|
},
|
|
327
371
|
};
|
|
@@ -721,6 +765,50 @@ export const messagesByLocale = {
|
|
|
721
765
|
unknownPlatform: "未知",
|
|
722
766
|
attemptsCount: "{{count}} 次尝试",
|
|
723
767
|
noErrorMessage: "(无错误消息)",
|
|
768
|
+
threadDebugInspectFailure: "检查失败的运行",
|
|
769
|
+
threadDebugFailureCode: "失败代码",
|
|
770
|
+
threadDebugTerminalReason: "终止原因",
|
|
771
|
+
threadDebugDispatchMode: "调度模式",
|
|
772
|
+
threadDebugLastStage: "最后阶段",
|
|
773
|
+
threadDebugDuration: "持续时间",
|
|
774
|
+
threadDebugLastProgress: "最后进度",
|
|
775
|
+
threadDebugTitle: "线程调试",
|
|
776
|
+
threadDebugDescription:
|
|
777
|
+
"检查失败的代理运行、已保存的线程、运行事件和 AI 内部数据。",
|
|
778
|
+
threadDebugFailedRuns: "失败的运行",
|
|
779
|
+
threadDebugThreads: "线程",
|
|
780
|
+
threadDebugSource: "来源",
|
|
781
|
+
threadDebugAllSources: "所有来源",
|
|
782
|
+
threadDebugOwner: "所有者邮箱",
|
|
783
|
+
threadDebugStatus: "状态",
|
|
784
|
+
threadDebugAllStatuses: "所有状态",
|
|
785
|
+
threadDebugErrored: "发生错误",
|
|
786
|
+
threadDebugAborted: "已中止",
|
|
787
|
+
threadDebugTruncated: "已截断",
|
|
788
|
+
threadDebugRange: "时间范围",
|
|
789
|
+
threadDebugRange24h: "过去 24 小时",
|
|
790
|
+
threadDebugRange7d: "过去 7 天",
|
|
791
|
+
threadDebugRange30d: "过去 30 天",
|
|
792
|
+
threadDebugFailureResults: "个失败运行",
|
|
793
|
+
threadDebugCurrentScope: "当前范围",
|
|
794
|
+
threadDebugPartialResults: "部分结果",
|
|
795
|
+
threadDebugUnavailableSources: "不可用的来源:",
|
|
796
|
+
threadDebugDisconnected: "已断开连接",
|
|
797
|
+
threadDebugUnsupported: "不支持",
|
|
798
|
+
threadDebugUnavailable: "不可用",
|
|
799
|
+
threadDebugRefreshFailures: "刷新失败运行",
|
|
800
|
+
threadDebugNoFailures: "未找到失败运行。",
|
|
801
|
+
threadDebugCurrentDatabase: "当前 Dispatch 数据库",
|
|
802
|
+
threadDebugSearchPlaceholder: "搜索标题、预览、消息和工具",
|
|
803
|
+
threadDebugSearch: "搜索",
|
|
804
|
+
threadDebugLookupPlaceholder: "粘贴线程或请求/运行 ID",
|
|
805
|
+
threadDebugInspect: "检查",
|
|
806
|
+
threadDebugAdminScope: "管理员范围",
|
|
807
|
+
threadDebugOwnScope: "自己的范围",
|
|
808
|
+
threadDebugResults: "条结果",
|
|
809
|
+
threadDebugRefreshThreads: "刷新线程",
|
|
810
|
+
threadDebugNoThreads: "未找到线程。",
|
|
811
|
+
threadDebugSelectPrompt: "选择一个失败运行或线程进行检查。",
|
|
724
812
|
},
|
|
725
813
|
},
|
|
726
814
|
}),
|
|
@@ -1065,6 +1153,53 @@ export const messagesByLocale = {
|
|
|
1065
1153
|
unknownPlatform: "desconocido",
|
|
1066
1154
|
attemptsCount: "{{count}} intentos",
|
|
1067
1155
|
noErrorMessage: "(sin mensaje de error)",
|
|
1156
|
+
threadDebugInspectFailure: "Inspeccionar ejecución fallida",
|
|
1157
|
+
threadDebugFailureCode: "Código de error",
|
|
1158
|
+
threadDebugTerminalReason: "Motivo de finalización",
|
|
1159
|
+
threadDebugDispatchMode: "Modo de despacho",
|
|
1160
|
+
threadDebugLastStage: "Última etapa",
|
|
1161
|
+
threadDebugDuration: "Duración",
|
|
1162
|
+
threadDebugLastProgress: "Último progreso",
|
|
1163
|
+
threadDebugTitle: "Depuración de hilos",
|
|
1164
|
+
threadDebugDescription:
|
|
1165
|
+
"Inspecciona ejecuciones fallidas del agente, hilos guardados, eventos de ejecución y datos internos de IA.",
|
|
1166
|
+
threadDebugFailedRuns: "Ejecuciones fallidas",
|
|
1167
|
+
threadDebugThreads: "Hilos",
|
|
1168
|
+
threadDebugSource: "Origen",
|
|
1169
|
+
threadDebugAllSources: "Todos los orígenes",
|
|
1170
|
+
threadDebugOwner: "Correo del propietario",
|
|
1171
|
+
threadDebugStatus: "Estado",
|
|
1172
|
+
threadDebugAllStatuses: "Todos los estados",
|
|
1173
|
+
threadDebugErrored: "Con error",
|
|
1174
|
+
threadDebugAborted: "Abortadas",
|
|
1175
|
+
threadDebugTruncated: "Truncadas",
|
|
1176
|
+
threadDebugRange: "Intervalo de tiempo",
|
|
1177
|
+
threadDebugRange24h: "Últimas 24 horas",
|
|
1178
|
+
threadDebugRange7d: "Últimos 7 días",
|
|
1179
|
+
threadDebugRange30d: "Últimos 30 días",
|
|
1180
|
+
threadDebugFailureResults: "ejecuciones fallidas",
|
|
1181
|
+
threadDebugCurrentScope: "ámbito actual",
|
|
1182
|
+
threadDebugPartialResults: "Resultados parciales",
|
|
1183
|
+
threadDebugUnavailableSources: "Orígenes no disponibles:",
|
|
1184
|
+
threadDebugDisconnected: "desconectado",
|
|
1185
|
+
threadDebugUnsupported: "no compatible",
|
|
1186
|
+
threadDebugUnavailable: "no disponible",
|
|
1187
|
+
threadDebugRefreshFailures: "Actualizar ejecuciones fallidas",
|
|
1188
|
+
threadDebugNoFailures: "No se encontraron ejecuciones fallidas.",
|
|
1189
|
+
threadDebugCurrentDatabase: "Base de datos actual de Dispatch",
|
|
1190
|
+
threadDebugSearchPlaceholder:
|
|
1191
|
+
"Buscar título, vista previa, mensajes y herramientas",
|
|
1192
|
+
threadDebugSearch: "Buscar",
|
|
1193
|
+
threadDebugLookupPlaceholder:
|
|
1194
|
+
"Pega un ID de hilo o de solicitud/ejecución",
|
|
1195
|
+
threadDebugInspect: "Inspeccionar",
|
|
1196
|
+
threadDebugAdminScope: "ámbito de administrador",
|
|
1197
|
+
threadDebugOwnScope: "ámbito propio",
|
|
1198
|
+
threadDebugResults: "resultados",
|
|
1199
|
+
threadDebugRefreshThreads: "Actualizar hilos",
|
|
1200
|
+
threadDebugNoThreads: "No se encontraron hilos.",
|
|
1201
|
+
threadDebugSelectPrompt:
|
|
1202
|
+
"Selecciona una ejecución fallida o un hilo para inspeccionarlo.",
|
|
1068
1203
|
},
|
|
1069
1204
|
},
|
|
1070
1205
|
}),
|
|
@@ -1410,6 +1545,53 @@ export const messagesByLocale = {
|
|
|
1410
1545
|
unknownPlatform: "inconnu",
|
|
1411
1546
|
attemptsCount: "{{count}} tentatives",
|
|
1412
1547
|
noErrorMessage: "(aucun message d’erreur)",
|
|
1548
|
+
threadDebugInspectFailure: "Inspecter l’exécution échouée",
|
|
1549
|
+
threadDebugFailureCode: "Code d’échec",
|
|
1550
|
+
threadDebugTerminalReason: "Raison de l’arrêt",
|
|
1551
|
+
threadDebugDispatchMode: "Mode de répartition",
|
|
1552
|
+
threadDebugLastStage: "Dernière étape",
|
|
1553
|
+
threadDebugDuration: "Durée",
|
|
1554
|
+
threadDebugLastProgress: "Dernière progression",
|
|
1555
|
+
threadDebugTitle: "Débogage des fils",
|
|
1556
|
+
threadDebugDescription:
|
|
1557
|
+
"Inspectez les exécutions d’agent échouées, les fils persistés, les événements d’exécution et les données internes de l’IA.",
|
|
1558
|
+
threadDebugFailedRuns: "Exécutions échouées",
|
|
1559
|
+
threadDebugThreads: "Fils",
|
|
1560
|
+
threadDebugSource: "Source",
|
|
1561
|
+
threadDebugAllSources: "Toutes les sources",
|
|
1562
|
+
threadDebugOwner: "Adresse e-mail du propriétaire",
|
|
1563
|
+
threadDebugStatus: "État",
|
|
1564
|
+
threadDebugAllStatuses: "Tous les états",
|
|
1565
|
+
threadDebugErrored: "En erreur",
|
|
1566
|
+
threadDebugAborted: "Interrompues",
|
|
1567
|
+
threadDebugTruncated: "Tronquées",
|
|
1568
|
+
threadDebugRange: "Plage de temps",
|
|
1569
|
+
threadDebugRange24h: "24 dernières heures",
|
|
1570
|
+
threadDebugRange7d: "7 derniers jours",
|
|
1571
|
+
threadDebugRange30d: "30 derniers jours",
|
|
1572
|
+
threadDebugFailureResults: "exécutions échouées",
|
|
1573
|
+
threadDebugCurrentScope: "portée actuelle",
|
|
1574
|
+
threadDebugPartialResults: "Résultats partiels",
|
|
1575
|
+
threadDebugUnavailableSources: "Sources indisponibles :",
|
|
1576
|
+
threadDebugDisconnected: "déconnecté",
|
|
1577
|
+
threadDebugUnsupported: "non pris en charge",
|
|
1578
|
+
threadDebugUnavailable: "indisponible",
|
|
1579
|
+
threadDebugRefreshFailures: "Actualiser les exécutions échouées",
|
|
1580
|
+
threadDebugNoFailures: "Aucune exécution échouée trouvée.",
|
|
1581
|
+
threadDebugCurrentDatabase: "Base de données Dispatch actuelle",
|
|
1582
|
+
threadDebugSearchPlaceholder:
|
|
1583
|
+
"Rechercher dans le titre, l’aperçu, les messages et les outils",
|
|
1584
|
+
threadDebugSearch: "Rechercher",
|
|
1585
|
+
threadDebugLookupPlaceholder:
|
|
1586
|
+
"Collez un ID de fil ou de requête/exécution",
|
|
1587
|
+
threadDebugInspect: "Inspecter",
|
|
1588
|
+
threadDebugAdminScope: "portée administrateur",
|
|
1589
|
+
threadDebugOwnScope: "portée personnelle",
|
|
1590
|
+
threadDebugResults: "résultats",
|
|
1591
|
+
threadDebugRefreshThreads: "Actualiser les fils",
|
|
1592
|
+
threadDebugNoThreads: "Aucun fil trouvé.",
|
|
1593
|
+
threadDebugSelectPrompt:
|
|
1594
|
+
"Sélectionnez une exécution échouée ou un fil à inspecter.",
|
|
1413
1595
|
},
|
|
1414
1596
|
},
|
|
1415
1597
|
}),
|
|
@@ -1742,6 +1924,52 @@ export const messagesByLocale = {
|
|
|
1742
1924
|
unknownPlatform: "unbekannt",
|
|
1743
1925
|
attemptsCount: "{{count}} Versuche",
|
|
1744
1926
|
noErrorMessage: "(keine Fehlermeldung)",
|
|
1927
|
+
threadDebugInspectFailure: "Fehlgeschlagenen Lauf untersuchen",
|
|
1928
|
+
threadDebugFailureCode: "Fehlercode",
|
|
1929
|
+
threadDebugTerminalReason: "Beendigungsgrund",
|
|
1930
|
+
threadDebugDispatchMode: "Dispatch-Modus",
|
|
1931
|
+
threadDebugLastStage: "Letzte Phase",
|
|
1932
|
+
threadDebugDuration: "Dauer",
|
|
1933
|
+
threadDebugLastProgress: "Letzter Fortschritt",
|
|
1934
|
+
threadDebugTitle: "Thread-Debugging",
|
|
1935
|
+
threadDebugDescription:
|
|
1936
|
+
"Fehlgeschlagene Agent-Läufe, gespeicherte Threads, Laufereignisse und KI-Interna untersuchen.",
|
|
1937
|
+
threadDebugFailedRuns: "Fehlgeschlagene Läufe",
|
|
1938
|
+
threadDebugThreads: "Threads",
|
|
1939
|
+
threadDebugSource: "Quelle",
|
|
1940
|
+
threadDebugAllSources: "Alle Quellen",
|
|
1941
|
+
threadDebugOwner: "E-Mail des Eigentümers",
|
|
1942
|
+
threadDebugStatus: "Status",
|
|
1943
|
+
threadDebugAllStatuses: "Alle Statuswerte",
|
|
1944
|
+
threadDebugErrored: "Fehlerhaft",
|
|
1945
|
+
threadDebugAborted: "Abgebrochen",
|
|
1946
|
+
threadDebugTruncated: "Abgeschnitten",
|
|
1947
|
+
threadDebugRange: "Zeitraum",
|
|
1948
|
+
threadDebugRange24h: "Letzte 24 Stunden",
|
|
1949
|
+
threadDebugRange7d: "Letzte 7 Tage",
|
|
1950
|
+
threadDebugRange30d: "Letzte 30 Tage",
|
|
1951
|
+
threadDebugFailureResults: "fehlgeschlagene Läufe",
|
|
1952
|
+
threadDebugCurrentScope: "aktueller Bereich",
|
|
1953
|
+
threadDebugPartialResults: "Teilergebnisse",
|
|
1954
|
+
threadDebugUnavailableSources: "Nicht verfügbare Quellen:",
|
|
1955
|
+
threadDebugDisconnected: "getrennt",
|
|
1956
|
+
threadDebugUnsupported: "nicht unterstützt",
|
|
1957
|
+
threadDebugUnavailable: "nicht verfügbar",
|
|
1958
|
+
threadDebugRefreshFailures: "Fehlgeschlagene Läufe aktualisieren",
|
|
1959
|
+
threadDebugNoFailures: "Keine fehlgeschlagenen Läufe gefunden.",
|
|
1960
|
+
threadDebugCurrentDatabase: "Aktuelle Dispatch-Datenbank",
|
|
1961
|
+
threadDebugSearchPlaceholder:
|
|
1962
|
+
"Titel, Vorschau, Nachrichten und Tools durchsuchen",
|
|
1963
|
+
threadDebugSearch: "Suchen",
|
|
1964
|
+
threadDebugLookupPlaceholder: "Thread- oder Anfrage-/Lauf-ID einfügen",
|
|
1965
|
+
threadDebugInspect: "Untersuchen",
|
|
1966
|
+
threadDebugAdminScope: "Admin-Bereich",
|
|
1967
|
+
threadDebugOwnScope: "eigener Bereich",
|
|
1968
|
+
threadDebugResults: "Ergebnisse",
|
|
1969
|
+
threadDebugRefreshThreads: "Threads aktualisieren",
|
|
1970
|
+
threadDebugNoThreads: "Keine Threads gefunden.",
|
|
1971
|
+
threadDebugSelectPrompt:
|
|
1972
|
+
"Einen fehlgeschlagenen Lauf oder Thread zum Untersuchen auswählen.",
|
|
1745
1973
|
},
|
|
1746
1974
|
},
|
|
1747
1975
|
}),
|
|
@@ -2069,6 +2297,53 @@ export const messagesByLocale = {
|
|
|
2069
2297
|
unknownPlatform: "不明",
|
|
2070
2298
|
attemptsCount: "{{count}} 回試行",
|
|
2071
2299
|
noErrorMessage: "(エラーメッセージなし)",
|
|
2300
|
+
threadDebugInspectFailure: "失敗した実行を調査",
|
|
2301
|
+
threadDebugFailureCode: "失敗コード",
|
|
2302
|
+
threadDebugTerminalReason: "終了理由",
|
|
2303
|
+
threadDebugDispatchMode: "ディスパッチモード",
|
|
2304
|
+
threadDebugLastStage: "最終ステージ",
|
|
2305
|
+
threadDebugDuration: "所要時間",
|
|
2306
|
+
threadDebugLastProgress: "最終進捗",
|
|
2307
|
+
threadDebugTitle: "スレッドデバッグ",
|
|
2308
|
+
threadDebugDescription:
|
|
2309
|
+
"失敗したエージェント実行、保存済みスレッド、実行イベント、AI 内部データを調査します。",
|
|
2310
|
+
threadDebugFailedRuns: "失敗した実行",
|
|
2311
|
+
threadDebugThreads: "スレッド",
|
|
2312
|
+
threadDebugSource: "ソース",
|
|
2313
|
+
threadDebugAllSources: "すべてのソース",
|
|
2314
|
+
threadDebugOwner: "所有者のメール",
|
|
2315
|
+
threadDebugStatus: "ステータス",
|
|
2316
|
+
threadDebugAllStatuses: "すべてのステータス",
|
|
2317
|
+
threadDebugErrored: "エラー",
|
|
2318
|
+
threadDebugAborted: "中止",
|
|
2319
|
+
threadDebugTruncated: "切り詰め",
|
|
2320
|
+
threadDebugRange: "期間",
|
|
2321
|
+
threadDebugRange24h: "過去 24 時間",
|
|
2322
|
+
threadDebugRange7d: "過去 7 日間",
|
|
2323
|
+
threadDebugRange30d: "過去 30 日間",
|
|
2324
|
+
threadDebugFailureResults: "件の失敗した実行",
|
|
2325
|
+
threadDebugCurrentScope: "現在の範囲",
|
|
2326
|
+
threadDebugPartialResults: "一部の結果",
|
|
2327
|
+
threadDebugUnavailableSources: "利用できないソース:",
|
|
2328
|
+
threadDebugDisconnected: "切断済み",
|
|
2329
|
+
threadDebugUnsupported: "未対応",
|
|
2330
|
+
threadDebugUnavailable: "利用不可",
|
|
2331
|
+
threadDebugRefreshFailures: "失敗した実行を更新",
|
|
2332
|
+
threadDebugNoFailures: "失敗した実行は見つかりませんでした。",
|
|
2333
|
+
threadDebugCurrentDatabase: "現在の Dispatch DB",
|
|
2334
|
+
threadDebugSearchPlaceholder:
|
|
2335
|
+
"タイトル、プレビュー、メッセージ、ツールを検索",
|
|
2336
|
+
threadDebugSearch: "検索",
|
|
2337
|
+
threadDebugLookupPlaceholder:
|
|
2338
|
+
"スレッド ID またはリクエスト/実行 ID を貼り付け",
|
|
2339
|
+
threadDebugInspect: "調査",
|
|
2340
|
+
threadDebugAdminScope: "管理者範囲",
|
|
2341
|
+
threadDebugOwnScope: "自分の範囲",
|
|
2342
|
+
threadDebugResults: "件の結果",
|
|
2343
|
+
threadDebugRefreshThreads: "スレッドを更新",
|
|
2344
|
+
threadDebugNoThreads: "スレッドは見つかりませんでした。",
|
|
2345
|
+
threadDebugSelectPrompt:
|
|
2346
|
+
"失敗した実行またはスレッドを選択して調査します。",
|
|
2072
2347
|
},
|
|
2073
2348
|
},
|
|
2074
2349
|
}),
|
|
@@ -2392,6 +2667,50 @@ export const messagesByLocale = {
|
|
|
2392
2667
|
unknownPlatform: "알 수 없음",
|
|
2393
2668
|
attemptsCount: "{{count}}회 시도",
|
|
2394
2669
|
noErrorMessage: "(오류 메시지 없음)",
|
|
2670
|
+
threadDebugInspectFailure: "실패한 실행 검사",
|
|
2671
|
+
threadDebugFailureCode: "실패 코드",
|
|
2672
|
+
threadDebugTerminalReason: "종료 사유",
|
|
2673
|
+
threadDebugDispatchMode: "디스패치 모드",
|
|
2674
|
+
threadDebugLastStage: "마지막 단계",
|
|
2675
|
+
threadDebugDuration: "소요 시간",
|
|
2676
|
+
threadDebugLastProgress: "마지막 진행",
|
|
2677
|
+
threadDebugTitle: "스레드 디버그",
|
|
2678
|
+
threadDebugDescription:
|
|
2679
|
+
"실패한 에이전트 실행, 저장된 스레드, 실행 이벤트, AI 내부 데이터를 검사합니다.",
|
|
2680
|
+
threadDebugFailedRuns: "실패한 실행",
|
|
2681
|
+
threadDebugThreads: "스레드",
|
|
2682
|
+
threadDebugSource: "소스",
|
|
2683
|
+
threadDebugAllSources: "모든 소스",
|
|
2684
|
+
threadDebugOwner: "소유자 이메일",
|
|
2685
|
+
threadDebugStatus: "상태",
|
|
2686
|
+
threadDebugAllStatuses: "모든 상태",
|
|
2687
|
+
threadDebugErrored: "오류",
|
|
2688
|
+
threadDebugAborted: "중단됨",
|
|
2689
|
+
threadDebugTruncated: "잘림",
|
|
2690
|
+
threadDebugRange: "시간 범위",
|
|
2691
|
+
threadDebugRange24h: "지난 24시간",
|
|
2692
|
+
threadDebugRange7d: "지난 7일",
|
|
2693
|
+
threadDebugRange30d: "지난 30일",
|
|
2694
|
+
threadDebugFailureResults: "개의 실패한 실행",
|
|
2695
|
+
threadDebugCurrentScope: "현재 범위",
|
|
2696
|
+
threadDebugPartialResults: "일부 결과",
|
|
2697
|
+
threadDebugUnavailableSources: "사용할 수 없는 소스:",
|
|
2698
|
+
threadDebugDisconnected: "연결 끊김",
|
|
2699
|
+
threadDebugUnsupported: "지원되지 않음",
|
|
2700
|
+
threadDebugUnavailable: "사용할 수 없음",
|
|
2701
|
+
threadDebugRefreshFailures: "실패한 실행 새로고침",
|
|
2702
|
+
threadDebugNoFailures: "실패한 실행을 찾을 수 없습니다.",
|
|
2703
|
+
threadDebugCurrentDatabase: "현재 Dispatch DB",
|
|
2704
|
+
threadDebugSearchPlaceholder: "제목, 미리보기, 메시지, 도구 검색",
|
|
2705
|
+
threadDebugSearch: "검색",
|
|
2706
|
+
threadDebugLookupPlaceholder: "스레드 또는 요청/실행 ID 붙여넣기",
|
|
2707
|
+
threadDebugInspect: "검사",
|
|
2708
|
+
threadDebugAdminScope: "관리자 범위",
|
|
2709
|
+
threadDebugOwnScope: "내 범위",
|
|
2710
|
+
threadDebugResults: "개 결과",
|
|
2711
|
+
threadDebugRefreshThreads: "스레드 새로고침",
|
|
2712
|
+
threadDebugNoThreads: "스레드를 찾을 수 없습니다.",
|
|
2713
|
+
threadDebugSelectPrompt: "검사할 실패한 실행 또는 스레드를 선택하세요.",
|
|
2395
2714
|
},
|
|
2396
2715
|
},
|
|
2397
2716
|
}),
|
|
@@ -2731,6 +3050,53 @@ export const messagesByLocale = {
|
|
|
2731
3050
|
unknownPlatform: "desconhecido",
|
|
2732
3051
|
attemptsCount: "{{count}} tentativas",
|
|
2733
3052
|
noErrorMessage: "(sem mensagem de erro)",
|
|
3053
|
+
threadDebugInspectFailure: "Inspecionar execução com falha",
|
|
3054
|
+
threadDebugFailureCode: "Código da falha",
|
|
3055
|
+
threadDebugTerminalReason: "Motivo do encerramento",
|
|
3056
|
+
threadDebugDispatchMode: "Modo de despacho",
|
|
3057
|
+
threadDebugLastStage: "Última etapa",
|
|
3058
|
+
threadDebugDuration: "Duração",
|
|
3059
|
+
threadDebugLastProgress: "Último progresso",
|
|
3060
|
+
threadDebugTitle: "Depuração de threads",
|
|
3061
|
+
threadDebugDescription:
|
|
3062
|
+
"Inspecione execuções de agente com falha, threads persistidas, eventos de execução e dados internos de IA.",
|
|
3063
|
+
threadDebugFailedRuns: "Execuções com falha",
|
|
3064
|
+
threadDebugThreads: "Threads",
|
|
3065
|
+
threadDebugSource: "Fonte",
|
|
3066
|
+
threadDebugAllSources: "Todas as fontes",
|
|
3067
|
+
threadDebugOwner: "E-mail do proprietário",
|
|
3068
|
+
threadDebugStatus: "Status",
|
|
3069
|
+
threadDebugAllStatuses: "Todos os status",
|
|
3070
|
+
threadDebugErrored: "Com erro",
|
|
3071
|
+
threadDebugAborted: "Abortadas",
|
|
3072
|
+
threadDebugTruncated: "Truncadas",
|
|
3073
|
+
threadDebugRange: "Intervalo de tempo",
|
|
3074
|
+
threadDebugRange24h: "Últimas 24 horas",
|
|
3075
|
+
threadDebugRange7d: "Últimos 7 dias",
|
|
3076
|
+
threadDebugRange30d: "Últimos 30 dias",
|
|
3077
|
+
threadDebugFailureResults: "execuções com falha",
|
|
3078
|
+
threadDebugCurrentScope: "escopo atual",
|
|
3079
|
+
threadDebugPartialResults: "Resultados parciais",
|
|
3080
|
+
threadDebugUnavailableSources: "Fontes indisponíveis:",
|
|
3081
|
+
threadDebugDisconnected: "desconectada",
|
|
3082
|
+
threadDebugUnsupported: "não compatível",
|
|
3083
|
+
threadDebugUnavailable: "indisponível",
|
|
3084
|
+
threadDebugRefreshFailures: "Atualizar execuções com falha",
|
|
3085
|
+
threadDebugNoFailures: "Nenhuma execução com falha encontrada.",
|
|
3086
|
+
threadDebugCurrentDatabase: "Banco de dados atual do Dispatch",
|
|
3087
|
+
threadDebugSearchPlaceholder:
|
|
3088
|
+
"Buscar título, prévia, mensagens e ferramentas",
|
|
3089
|
+
threadDebugSearch: "Buscar",
|
|
3090
|
+
threadDebugLookupPlaceholder:
|
|
3091
|
+
"Cole o ID da thread ou da solicitação/execução",
|
|
3092
|
+
threadDebugInspect: "Inspecionar",
|
|
3093
|
+
threadDebugAdminScope: "escopo de administrador",
|
|
3094
|
+
threadDebugOwnScope: "escopo próprio",
|
|
3095
|
+
threadDebugResults: "resultados",
|
|
3096
|
+
threadDebugRefreshThreads: "Atualizar threads",
|
|
3097
|
+
threadDebugNoThreads: "Nenhuma thread encontrada.",
|
|
3098
|
+
threadDebugSelectPrompt:
|
|
3099
|
+
"Selecione uma execução com falha ou uma thread para inspecionar.",
|
|
2734
3100
|
},
|
|
2735
3101
|
},
|
|
2736
3102
|
}),
|
|
@@ -3047,6 +3413,50 @@ export const messagesByLocale = {
|
|
|
3047
3413
|
unknownPlatform: "अज्ञात",
|
|
3048
3414
|
attemptsCount: "{{count}} प्रयास",
|
|
3049
3415
|
noErrorMessage: "(कोई त्रुटि संदेश नहीं)",
|
|
3416
|
+
threadDebugInspectFailure: "विफल रन की जाँच करें",
|
|
3417
|
+
threadDebugFailureCode: "विफलता कोड",
|
|
3418
|
+
threadDebugTerminalReason: "समाप्ति का कारण",
|
|
3419
|
+
threadDebugDispatchMode: "डिस्पैच मोड",
|
|
3420
|
+
threadDebugLastStage: "अंतिम चरण",
|
|
3421
|
+
threadDebugDuration: "अवधि",
|
|
3422
|
+
threadDebugLastProgress: "अंतिम प्रगति",
|
|
3423
|
+
threadDebugTitle: "थ्रेड डीबग",
|
|
3424
|
+
threadDebugDescription:
|
|
3425
|
+
"विफल एजेंट रन, सहेजे गए थ्रेड, रन इवेंट और AI की आंतरिक जानकारी की जाँच करें।",
|
|
3426
|
+
threadDebugFailedRuns: "विफल रन",
|
|
3427
|
+
threadDebugThreads: "थ्रेड",
|
|
3428
|
+
threadDebugSource: "स्रोत",
|
|
3429
|
+
threadDebugAllSources: "सभी स्रोत",
|
|
3430
|
+
threadDebugOwner: "स्वामी का ईमेल",
|
|
3431
|
+
threadDebugStatus: "स्थिति",
|
|
3432
|
+
threadDebugAllStatuses: "सभी स्थितियाँ",
|
|
3433
|
+
threadDebugErrored: "त्रुटि हुई",
|
|
3434
|
+
threadDebugAborted: "निरस्त",
|
|
3435
|
+
threadDebugTruncated: "काटा गया",
|
|
3436
|
+
threadDebugRange: "समय सीमा",
|
|
3437
|
+
threadDebugRange24h: "पिछले 24 घंटे",
|
|
3438
|
+
threadDebugRange7d: "पिछले 7 दिन",
|
|
3439
|
+
threadDebugRange30d: "पिछले 30 दिन",
|
|
3440
|
+
threadDebugFailureResults: "विफल रन",
|
|
3441
|
+
threadDebugCurrentScope: "मौजूदा दायरा",
|
|
3442
|
+
threadDebugPartialResults: "आंशिक परिणाम",
|
|
3443
|
+
threadDebugUnavailableSources: "अनुपलब्ध स्रोत:",
|
|
3444
|
+
threadDebugDisconnected: "डिस्कनेक्ट किया गया",
|
|
3445
|
+
threadDebugUnsupported: "असमर्थित",
|
|
3446
|
+
threadDebugUnavailable: "अनुपलब्ध",
|
|
3447
|
+
threadDebugRefreshFailures: "विफल रन रीफ़्रेश करें",
|
|
3448
|
+
threadDebugNoFailures: "कोई विफल रन नहीं मिला।",
|
|
3449
|
+
threadDebugCurrentDatabase: "मौजूदा Dispatch डेटाबेस",
|
|
3450
|
+
threadDebugSearchPlaceholder: "शीर्षक, पूर्वावलोकन, संदेश और टूल खोजें",
|
|
3451
|
+
threadDebugSearch: "खोजें",
|
|
3452
|
+
threadDebugLookupPlaceholder: "थ्रेड या अनुरोध/रन ID पेस्ट करें",
|
|
3453
|
+
threadDebugInspect: "जाँच करें",
|
|
3454
|
+
threadDebugAdminScope: "व्यवस्थापक दायरा",
|
|
3455
|
+
threadDebugOwnScope: "अपना दायरा",
|
|
3456
|
+
threadDebugResults: "परिणाम",
|
|
3457
|
+
threadDebugRefreshThreads: "थ्रेड रीफ़्रेश करें",
|
|
3458
|
+
threadDebugNoThreads: "कोई थ्रेड नहीं मिला।",
|
|
3459
|
+
threadDebugSelectPrompt: "जाँचने के लिए कोई विफल रन या थ्रेड चुनें।",
|
|
3050
3460
|
},
|
|
3051
3461
|
},
|
|
3052
3462
|
}),
|
|
@@ -3405,6 +3815,53 @@ export const messagesByLocale = {
|
|
|
3405
3815
|
unknownPlatform: "غير معروف",
|
|
3406
3816
|
attemptsCount: "{{count}} محاولات",
|
|
3407
3817
|
noErrorMessage: "(لا توجد رسالة خطأ)",
|
|
3818
|
+
threadDebugInspectFailure: "فحص التشغيل الفاشل",
|
|
3819
|
+
threadDebugFailureCode: "رمز الفشل",
|
|
3820
|
+
threadDebugTerminalReason: "سبب الإنهاء",
|
|
3821
|
+
threadDebugDispatchMode: "وضع التوزيع",
|
|
3822
|
+
threadDebugLastStage: "المرحلة الأخيرة",
|
|
3823
|
+
threadDebugDuration: "المدة",
|
|
3824
|
+
threadDebugLastProgress: "آخر تقدم",
|
|
3825
|
+
threadDebugTitle: "تصحيح أخطاء سلاسل المحادثات",
|
|
3826
|
+
threadDebugDescription:
|
|
3827
|
+
"افحص عمليات الوكيل الفاشلة وسلاسل المحادثات المحفوظة وأحداث التشغيل وبيانات الذكاء الاصطناعي الداخلية.",
|
|
3828
|
+
threadDebugFailedRuns: "عمليات التشغيل الفاشلة",
|
|
3829
|
+
threadDebugThreads: "سلاسل المحادثات",
|
|
3830
|
+
threadDebugSource: "المصدر",
|
|
3831
|
+
threadDebugAllSources: "كل المصادر",
|
|
3832
|
+
threadDebugOwner: "البريد الإلكتروني للمالك",
|
|
3833
|
+
threadDebugStatus: "الحالة",
|
|
3834
|
+
threadDebugAllStatuses: "كل الحالات",
|
|
3835
|
+
threadDebugErrored: "حدث خطأ",
|
|
3836
|
+
threadDebugAborted: "تم الإجهاض",
|
|
3837
|
+
threadDebugTruncated: "مقتطع",
|
|
3838
|
+
threadDebugRange: "النطاق الزمني",
|
|
3839
|
+
threadDebugRange24h: "آخر 24 ساعة",
|
|
3840
|
+
threadDebugRange7d: "آخر 7 أيام",
|
|
3841
|
+
threadDebugRange30d: "آخر 30 يومًا",
|
|
3842
|
+
threadDebugFailureResults: "عمليات تشغيل فاشلة",
|
|
3843
|
+
threadDebugCurrentScope: "النطاق الحالي",
|
|
3844
|
+
threadDebugPartialResults: "نتائج جزئية",
|
|
3845
|
+
threadDebugUnavailableSources: "مصادر غير متاحة:",
|
|
3846
|
+
threadDebugDisconnected: "غير متصل",
|
|
3847
|
+
threadDebugUnsupported: "غير مدعوم",
|
|
3848
|
+
threadDebugUnavailable: "غير متاح",
|
|
3849
|
+
threadDebugRefreshFailures: "تحديث عمليات التشغيل الفاشلة",
|
|
3850
|
+
threadDebugNoFailures: "لم يتم العثور على عمليات تشغيل فاشلة.",
|
|
3851
|
+
threadDebugCurrentDatabase: "قاعدة بيانات Dispatch الحالية",
|
|
3852
|
+
threadDebugSearchPlaceholder:
|
|
3853
|
+
"البحث في العنوان والمعاينة والرسائل والأدوات",
|
|
3854
|
+
threadDebugSearch: "بحث",
|
|
3855
|
+
threadDebugLookupPlaceholder:
|
|
3856
|
+
"الصق معرّف سلسلة محادثات أو معرّف طلب/تشغيل",
|
|
3857
|
+
threadDebugInspect: "فحص",
|
|
3858
|
+
threadDebugAdminScope: "نطاق المسؤول",
|
|
3859
|
+
threadDebugOwnScope: "نطاقي",
|
|
3860
|
+
threadDebugResults: "نتائج",
|
|
3861
|
+
threadDebugRefreshThreads: "تحديث سلاسل المحادثات",
|
|
3862
|
+
threadDebugNoThreads: "لم يتم العثور على سلاسل محادثات.",
|
|
3863
|
+
threadDebugSelectPrompt:
|
|
3864
|
+
"اختر عملية تشغيل فاشلة أو سلسلة محادثات لفحصها.",
|
|
3408
3865
|
},
|
|
3409
3866
|
},
|
|
3410
3867
|
}),
|
|
@@ -9,6 +9,9 @@ GA_MEASUREMENT_ID = "G-ESF7FYXGN9"
|
|
|
9
9
|
GTM_CONTAINER_ID = "GTM-N3WSTXZ"
|
|
10
10
|
NITRO_PRESET = "netlify"
|
|
11
11
|
NPM_CONFIG_PRODUCTION = "false"
|
|
12
|
+
# Dispatch receives organization-admin A2A work that can outlast a foreground
|
|
13
|
+
# function, including workspace-resource updates delegated by sibling apps.
|
|
14
|
+
AGENT_CHAT_DURABLE_BACKGROUND = "true"
|
|
12
15
|
|
|
13
16
|
# A2A delegation calls run a full agent loop (LLM + tool calls + DB queries).
|
|
14
17
|
# The framework does not impose a default agent-run timeout; if a template sets
|
|
@@ -39,13 +39,13 @@ export default defineAction({
|
|
|
39
39
|
.boolean()
|
|
40
40
|
.optional()
|
|
41
41
|
.describe(
|
|
42
|
-
"Include the exported MDX folder in the response. Defaults to
|
|
42
|
+
"Include the exported MDX folder in the response. Defaults to false for agent reads; set true for an explicit source-control workflow.",
|
|
43
43
|
),
|
|
44
44
|
html: z
|
|
45
45
|
.boolean()
|
|
46
46
|
.optional()
|
|
47
47
|
.describe(
|
|
48
|
-
"Include the exported HTML bundle in the response. Defaults to
|
|
48
|
+
"Include the exported HTML bundle in the response. Defaults to false for agent reads; set true when you explicitly need the rendered legacy artifact.",
|
|
49
49
|
),
|
|
50
50
|
})
|
|
51
51
|
.optional()
|
|
@@ -80,10 +80,14 @@ export default defineAction({
|
|
|
80
80
|
// for their iframe.
|
|
81
81
|
const isFrontend = ctx?.caller === "frontend";
|
|
82
82
|
const isModern = Boolean(bundle.plan.content);
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
83
|
+
const isAgentCaller =
|
|
84
|
+
ctx?.caller === "tool" || ctx?.caller === "mcp" || ctx?.caller === "a2a";
|
|
85
|
+
// Agent reads default to the structured model only; source-control and
|
|
86
|
+
// legacy-rendered exports remain opt-in so they do not inflate the next
|
|
87
|
+
// tool turn.
|
|
88
|
+
const wantMdx = args.includeMdx ?? args.include?.mdx ?? !isAgentCaller;
|
|
89
|
+
const wantHtml = args.includeHtml ?? args.include?.html ?? !isAgentCaller;
|
|
90
|
+
const includeStoredPlanExportFields = wantHtml || wantMdx;
|
|
87
91
|
return {
|
|
88
92
|
...bundle,
|
|
89
93
|
planId: bundle.plan.id,
|