@agent-native/core 0.132.1 → 0.133.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +198 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/a2a/correlation.ts +11 -1
- package/corpus/core/src/a2a/types.ts +11 -3
- package/corpus/core/src/agent/engine/ai-sdk-engine.ts +33 -46
- package/corpus/core/src/agent/engine/builder-engine.ts +22 -10
- package/corpus/core/src/agent/engine/error-detail.ts +184 -3
- package/corpus/core/src/agent/engine/failure-taxonomy.ts +123 -0
- package/corpus/core/src/agent/engine/index.ts +8 -0
- package/corpus/core/src/agent/engine/registry.ts +92 -8
- package/corpus/core/src/agent/engine/translate-ai-sdk.ts +17 -2
- package/corpus/core/src/agent/production-agent.ts +13 -33
- package/corpus/core/src/agent/run-loop-with-resume.ts +1 -1
- package/corpus/core/src/agent/run-manager.ts +43 -14
- package/corpus/core/src/agent/run-store.ts +30 -3
- package/corpus/core/src/agent/thread-data-builder.ts +36 -4
- package/corpus/core/src/chat-threads/store.ts +42 -0
- package/corpus/core/src/cli/templates-meta.ts +13 -0
- package/corpus/core/src/cli/workspace-dev.ts +1 -0
- package/corpus/core/src/client/error-format.ts +12 -0
- package/corpus/core/src/client/use-chat-threads.ts +76 -16
- package/corpus/core/src/credentials/index.ts +51 -12
- package/corpus/core/src/extensions/url-safety.ts +46 -12
- package/corpus/core/src/integrations/adapters/slack.ts +32 -10
- package/corpus/core/src/integrations/google-docs-poller.ts +12 -1
- package/corpus/core/src/integrations/installations-store.ts +30 -0
- package/corpus/core/src/integrations/plugin.ts +5 -5
- package/corpus/core/src/integrations/types.ts +7 -0
- package/corpus/core/src/integrations/webhook-handler.ts +24 -1
- package/corpus/core/src/jobs/background-automation-runner.ts +38 -1
- package/corpus/core/src/provider-api/index.ts +8 -2
- package/corpus/core/src/scripts/call-agent.ts +6 -0
- package/corpus/core/src/server/agent-chat-plugin.ts +46 -10
- package/corpus/core/src/server/agent-discovery.ts +2 -0
- package/corpus/core/src/server/builder-design-systems.ts +21 -0
- package/corpus/core/src/server/credential-provider.ts +51 -12
- package/corpus/core/src/server/index.ts +1 -0
- package/corpus/core/src/server/onboarding-html.ts +37 -2
- package/corpus/core/src/shared/reasoning-effort.ts +1 -1
- package/corpus/core/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +11 -0
- package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +6 -2
- package/corpus/templates/assets/app/components/layout/Sidebar.tsx +39 -19
- package/corpus/templates/assets/changelog/2026-07-31-the-agent-native-logo-stays-visible-when-the-sidebar-is-coll.md +6 -0
- package/corpus/templates/brain/app/components/layout/Sidebar.tsx +30 -3
- package/corpus/templates/brain/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/corpus/templates/calendar/app/components/layout/AppLayout.tsx +1 -1
- package/corpus/templates/calendar/app/components/layout/Sidebar.tsx +54 -25
- package/corpus/templates/calendar/changelog/2026-07-31-the-agent-native-logo-stays-visible-when-the-sidebar-is-coll.md +6 -0
- package/corpus/templates/chat/app/components/layout/Sidebar.tsx +30 -3
- package/corpus/templates/chat/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/corpus/templates/clips/app/components/library/library-layout.tsx +37 -21
- package/corpus/templates/clips/changelog/2026-07-30-meeting-microphone-transcription-works-reliably-from-the-fir.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-31-the-agent-native-logo-stays-visible-when-the-sidebar-is-coll.md +6 -0
- package/corpus/templates/clips/desktop/src/hooks/useMediaDevices.ts +1 -1
- package/corpus/templates/clips/desktop/src/lib/media-capture-constraints.ts +1 -1
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen/custom_capture.rs +13 -0
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +2 -0
- package/corpus/templates/clips/desktop/src-tauri/src/system_audio.rs +25 -132
- package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +34 -17
- package/corpus/templates/content/changelog/2026-07-31-the-agent-native-logo-stays-visible-when-the-sidebar-is-coll.md +6 -0
- package/corpus/templates/design/.agents/skills/design-systems/SKILL.md +6 -2
- package/corpus/templates/design/.generated/bridge/editor-chrome.generated.ts +5 -0
- package/corpus/templates/design/actions/create-design-system.ts +1 -0
- package/corpus/templates/design/actions/set-default-design-system.ts +34 -26
- package/corpus/templates/design/app/components/design/KeyboardShortcutsPanel.tsx +5 -3
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +23 -0
- package/corpus/templates/design/app/components/design/keyboard-shortcuts.ts +3 -0
- package/corpus/templates/design/app/components/layout/Sidebar.tsx +21 -4
- package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +11 -7
- package/corpus/templates/design/app/i18n-data.ts +39 -0
- package/corpus/templates/design/app/pages/DesignSystemSetup.tsx +229 -12
- package/corpus/templates/design/app/pages/DesignSystems.tsx +10 -4
- package/corpus/templates/design/changelog/2026-07-30-fixed-the-keyboard-shortcuts-panel-not-opening-with-ctrl-shi.md +6 -0
- package/corpus/templates/design/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/corpus/templates/design/changelog/2026-07-31-design-system-indexing-keeps-your-chosen-name-when-you-uploa.md +6 -0
- package/corpus/templates/design/server/lib/builder-design-system-proxy.ts +19 -4
- package/corpus/templates/dispatch/AGENTS.md +4 -0
- package/corpus/templates/factory/.agents/skills/actions/SKILL.md +562 -0
- package/corpus/templates/factory/.agents/skills/adding-a-feature/SKILL.md +198 -0
- package/corpus/templates/factory/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/factory/.agents/skills/agent-native-toolkit/SKILL.md +182 -0
- package/corpus/templates/factory/.agents/skills/capture-learnings/SKILL.md +89 -0
- package/corpus/templates/factory/.agents/skills/create-skill/SKILL.md +221 -0
- package/corpus/templates/factory/.agents/skills/customizing-agent-native/SKILL.md +220 -0
- package/corpus/templates/factory/.agents/skills/delegate-to-agent/SKILL.md +263 -0
- package/corpus/templates/factory/.agents/skills/factory-graphs/SKILL.md +52 -0
- package/corpus/templates/factory/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/factory/.agents/skills/frontend-design/SKILL.md +174 -0
- package/corpus/templates/factory/.agents/skills/real-time-sync/SKILL.md +232 -0
- package/corpus/templates/factory/.agents/skills/security/SKILL.md +324 -0
- package/corpus/templates/factory/.agents/skills/self-modifying-code/SKILL.md +119 -0
- package/corpus/templates/factory/.agents/skills/shadcn-ui/SKILL.md +123 -0
- package/corpus/templates/factory/.agents/skills/sharing/SKILL.md +232 -0
- package/corpus/templates/factory/.agents/skills/storing-data/SKILL.md +178 -0
- package/corpus/templates/factory/.agents/skills/upgrade-agent-native/SKILL.md +122 -0
- package/corpus/templates/factory/.env.example +24 -0
- package/corpus/templates/factory/.ignore +0 -0
- package/corpus/templates/factory/.oxfmtrc.json +8 -0
- package/corpus/templates/factory/AGENTS.md +90 -0
- package/corpus/templates/factory/CHANGELOG.md +10 -0
- package/corpus/templates/factory/DEVELOPING.md +185 -0
- package/corpus/templates/factory/README.md +64 -0
- package/corpus/templates/factory/_gitignore +42 -0
- package/corpus/templates/factory/actions/add-factory-comment.ts +55 -0
- package/corpus/templates/factory/actions/approve-factory-item.ts +214 -0
- package/corpus/templates/factory/actions/babysit-pull-request.ts +126 -0
- package/corpus/templates/factory/actions/evaluate-triage-item.ts +172 -0
- package/corpus/templates/factory/actions/get-factory-graph.ts +62 -0
- package/corpus/templates/factory/actions/get-triage-config.ts +42 -0
- package/corpus/templates/factory/actions/get-triage-item.ts +74 -0
- package/corpus/templates/factory/actions/hello.ts +13 -0
- package/corpus/templates/factory/actions/ingest-github-observation.ts +100 -0
- package/corpus/templates/factory/actions/list-factories.ts +40 -0
- package/corpus/templates/factory/actions/list-factory-comments.ts +40 -0
- package/corpus/templates/factory/actions/list-triage-items.ts +85 -0
- package/corpus/templates/factory/actions/list-triage-rules.ts +44 -0
- package/corpus/templates/factory/actions/navigate.ts +41 -0
- package/corpus/templates/factory/actions/poll-slack-channel.ts +118 -0
- package/corpus/templates/factory/actions/reconcile-triage-run.ts +179 -0
- package/corpus/templates/factory/actions/record-triage-feedback.ts +58 -0
- package/corpus/templates/factory/actions/run.ts +2 -0
- package/corpus/templates/factory/actions/save-factory-graph.ts +129 -0
- package/corpus/templates/factory/actions/save-triage-config.ts +67 -0
- package/corpus/templates/factory/actions/save-triage-rule.ts +89 -0
- package/corpus/templates/factory/actions/suggest-factory-rules.ts +70 -0
- package/corpus/templates/factory/actions/view-screen.ts +73 -0
- package/corpus/templates/factory/app/components/factory/FactoryCanvas.tsx +441 -0
- package/corpus/templates/factory/app/components/factory/FactoryInspector.tsx +388 -0
- package/corpus/templates/factory/app/components/layout/Header.tsx +60 -0
- package/corpus/templates/factory/app/components/layout/Layout.tsx +190 -0
- package/corpus/templates/factory/app/components/layout/Sidebar.tsx +538 -0
- package/corpus/templates/factory/app/components/triage/triage-status-pill.tsx +28 -0
- package/corpus/templates/factory/app/components/ui/button.tsx +1 -0
- package/corpus/templates/factory/app/components/ui/card.tsx +1 -0
- package/corpus/templates/factory/app/components/ui/dropdown-menu.tsx +1 -0
- package/corpus/templates/factory/app/components/ui/input.tsx +1 -0
- package/corpus/templates/factory/app/components/ui/label.tsx +1 -0
- package/corpus/templates/factory/app/components/ui/sheet.tsx +1 -0
- package/corpus/templates/factory/app/components/ui/textarea.tsx +1 -0
- package/corpus/templates/factory/app/components/ui/toolkit-provider.tsx +17 -0
- package/corpus/templates/factory/app/components/ui/tooltip.tsx +1 -0
- package/corpus/templates/factory/app/design-system.ts +3 -0
- package/corpus/templates/factory/app/entry.client.tsx +22 -0
- package/corpus/templates/factory/app/entry.server.tsx +10 -0
- package/corpus/templates/factory/app/global.css +93 -0
- package/corpus/templates/factory/app/hooks/use-navigation-state.ts +113 -0
- package/corpus/templates/factory/app/i18n/en-US.ts +211 -0
- package/corpus/templates/factory/app/i18n/index.ts +34 -0
- package/corpus/templates/factory/app/i18n-data.ts +556 -0
- package/corpus/templates/factory/app/lib/agent-page.tsx +49 -0
- package/corpus/templates/factory/app/lib/app-config.ts +11 -0
- package/corpus/templates/factory/app/lib/tab-id.ts +1 -0
- package/corpus/templates/factory/app/lib/utils.ts +1 -0
- package/corpus/templates/factory/app/root.tsx +175 -0
- package/corpus/templates/factory/app/routes/_index.tsx +94 -0
- package/corpus/templates/factory/app/routes/agent.tsx +24 -0
- package/corpus/templates/factory/app/routes/chat.$threadId.tsx +1 -0
- package/corpus/templates/factory/app/routes/database.tsx +17 -0
- package/corpus/templates/factory/app/routes/extensions.$id.$slug.tsx +2 -0
- package/corpus/templates/factory/app/routes/extensions.$id.tsx +11 -0
- package/corpus/templates/factory/app/routes/extensions._index.tsx +11 -0
- package/corpus/templates/factory/app/routes/extensions.tsx +5 -0
- package/corpus/templates/factory/app/routes/factory.tsx +1003 -0
- package/corpus/templates/factory/app/routes/observability.tsx +19 -0
- package/corpus/templates/factory/app/routes/settings.tsx +89 -0
- package/corpus/templates/factory/app/routes/team.tsx +11 -0
- package/corpus/templates/factory/app/routes.ts +4 -0
- package/corpus/templates/factory/app/vite-env.d.ts +6 -0
- package/corpus/templates/factory/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +6 -0
- package/corpus/templates/factory/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +6 -0
- package/corpus/templates/factory/changelog/2026-06-27-traditional-chinese-copy-uses-taiwan-terminology.md +6 -0
- package/corpus/templates/factory/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
- package/corpus/templates/factory/changelog/2026-06-29-chat-layouts-adapt-when-the-agent-sidebar-is-open.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-08-settings-are-cleaner-and-searchable.md +5 -0
- package/corpus/templates/factory/changelog/2026-07-10-chat-now-makes-ai-connection-setup-clear-without-shifting-th.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-13-a-full-agent-page-now-brings-context-files-connections-jobs-.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-14-chat-opens-reliably-on-hosted-deployments-instead-of-failing.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-14-fixed-chat-template-startup-with-older-core-versions.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-15-chat-navigation-focuses-on-chat-and-agent.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-17-the-agent-chat-sidebar-stays-closed-until-you-open-it-or-sta.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-22-manage-agent-navigation-now-uses-the-connected-nodes-icon.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-22-recent-chats-are-easier-to-scan-and-expand.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-23-full-page-chat-is-better-centered-with-quieter-chat-history-.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-24-borderless-secondary-surfaces.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-24-sidebar-footer-controls-follow-a-consistent-order.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-25-settings-navigation-now-keeps-manage-agent-as-a-dedicated-li.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-29-sidebar-footers-now-keep-feedback-search-and-collapse-togeth.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-31-added-an-inspectable-observe-only-factory-queue-for-slack-.md +6 -0
- package/corpus/templates/factory/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/corpus/templates/factory/components.json +20 -0
- package/corpus/templates/factory/data/sync-config.json +1 -0
- package/corpus/templates/factory/learnings.defaults.md +5 -0
- package/corpus/templates/factory/netlify.toml +10 -0
- package/corpus/templates/factory/package.json +105 -0
- package/corpus/templates/factory/public/agent-native-icon-dark.svg +10 -0
- package/corpus/templates/factory/public/agent-native-icon-light.svg +10 -0
- package/corpus/templates/factory/public/agent-native-logo-dark.svg +21 -0
- package/corpus/templates/factory/public/agent-native-logo-light.svg +21 -0
- package/corpus/templates/factory/public/favicon.svg +1 -0
- package/corpus/templates/factory/public/icon-180.svg +1 -0
- package/corpus/templates/factory/public/icon-192.svg +1 -0
- package/corpus/templates/factory/public/icon-512.svg +1 -0
- package/corpus/templates/factory/public/manifest.json +21 -0
- package/corpus/templates/factory/react-router.config.ts +7 -0
- package/corpus/templates/factory/server/connectors/credentials.ts +129 -0
- package/corpus/templates/factory/server/connectors/slack.ts +129 -0
- package/corpus/templates/factory/server/db/index.ts +6 -0
- package/corpus/templates/factory/server/db/schema.ts +193 -0
- package/corpus/templates/factory/server/factory-graph/contracts.ts +212 -0
- package/corpus/templates/factory/server/factory-graph/store.ts +121 -0
- package/corpus/templates/factory/server/lib/require-workspace-member.ts +55 -0
- package/corpus/templates/factory/server/middleware/auth.ts +15 -0
- package/corpus/templates/factory/server/plugins/agent-chat.ts +58 -0
- package/corpus/templates/factory/server/plugins/auth.ts +14 -0
- package/corpus/templates/factory/server/plugins/factory-migrations.ts +247 -0
- package/corpus/templates/factory/server/plugins/factory-scheduler-job.ts +116 -0
- package/corpus/templates/factory/server/plugins/integrations.ts +46 -0
- package/corpus/templates/factory/server/routes/[...page].get.ts +5 -0
- package/corpus/templates/factory/server/routes/_agent-native/factory/builder-callback.post.ts +116 -0
- package/corpus/templates/factory/server/triage/ai-services-git.ts +197 -0
- package/corpus/templates/factory/server/triage/builder-executor.ts +118 -0
- package/corpus/templates/factory/server/triage/contracts.ts +164 -0
- package/corpus/templates/factory/server/triage/github-ingestion.ts +35 -0
- package/corpus/templates/factory/server/triage/guards.ts +121 -0
- package/corpus/templates/factory/server/triage/ids.ts +27 -0
- package/corpus/templates/factory/server/triage/pr-babysit.ts +100 -0
- package/corpus/templates/factory/server/triage/pr-monitor.ts +220 -0
- package/corpus/templates/factory/server/triage/slack-client.ts +55 -0
- package/corpus/templates/factory/server/triage/slack-poller.ts +152 -0
- package/corpus/templates/factory/ssr-entry.ts +15 -0
- package/corpus/templates/factory/tsconfig.json +21 -0
- package/corpus/templates/factory/vite.config.ts +19 -0
- package/corpus/templates/forms/app/components/layout/Sidebar.tsx +55 -5
- package/corpus/templates/forms/changelog/2026-07-31-the-agent-native-logo-stays-visible-when-the-sidebar-is-coll.md +6 -0
- package/corpus/templates/macros/app/components/layout/AppLayout.tsx +6 -2
- package/corpus/templates/plan/app/components/layout/Sidebar.tsx +21 -6
- package/corpus/templates/plan/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/corpus/templates/slides/.agents/skills/create-deck/SKILL.md +12 -0
- package/corpus/templates/slides/.agents/skills/design-systems/SKILL.md +9 -0
- package/corpus/templates/slides/.agents/skills/slide-editing/SKILL.md +11 -0
- package/corpus/templates/slides/AGENTS.md +5 -6
- package/corpus/templates/slides/actions/_await-fit-check.ts +20 -10
- package/corpus/templates/slides/actions/add-slide.ts +17 -4
- package/corpus/templates/slides/actions/create-design-system.ts +16 -4
- package/corpus/templates/slides/actions/delete-design-system.ts +18 -2
- package/corpus/templates/slides/actions/get-layout-overflows.ts +88 -0
- package/corpus/templates/slides/actions/import-file.ts +1 -0
- package/corpus/templates/slides/actions/index-design-system-with-builder.ts +8 -0
- package/corpus/templates/slides/actions/patch-deck.ts +48 -16
- package/corpus/templates/slides/actions/set-default-design-system.ts +49 -19
- package/corpus/templates/slides/actions/update-slide.ts +13 -3
- package/corpus/templates/slides/actions/view-screen.ts +87 -10
- package/corpus/templates/slides/app/components/deck/SlideRenderer.tsx +155 -28
- package/corpus/templates/slides/app/components/design-system/DesignSystemCard.tsx +21 -17
- package/corpus/templates/slides/app/components/design-system/DesignSystemSetup.tsx +849 -341
- package/corpus/templates/slides/app/components/editor/EditorSidebar.tsx +102 -2
- package/corpus/templates/slides/app/components/editor/PromptDialog.tsx +13 -16
- package/corpus/templates/slides/app/components/editor/SlideEditor.tsx +60 -12
- package/corpus/templates/slides/app/components/editor/SlideOverflowWarning.tsx +11 -1
- package/corpus/templates/slides/app/components/layout/Sidebar.tsx +66 -19
- package/corpus/templates/slides/app/i18n/en-US.ts +23 -0
- package/corpus/templates/slides/app/lib/normalize-slide-padding.ts +8 -15
- package/corpus/templates/slides/app/pages/DeckEditor.tsx +4 -3
- package/corpus/templates/slides/app/pages/DesignSystems.tsx +4 -3
- package/corpus/templates/slides/app/pages/Index.tsx +1 -1
- package/corpus/templates/slides/changelog/2026-07-31-design-system-details-now-show-their-source-and-indexing-sta.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-31-design-system-indexing-keeps-your-chosen-name-when-you-uploa.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-31-design-system-setup-keeps-focus-rings-visible-and-uses-a-sim.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-31-skip-prompt-is-now-available-in-the-new-deck-prompt-header.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-31-slides-now-detect-real-text-and-box-overflow-across-the-deck.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-31-the-agent-native-logo-stays-visible-when-the-sidebar-is-coll.md +6 -0
- package/corpus/templates/slides/server/handlers/design-systems.ts +1 -0
- package/corpus/templates/slides/server/handlers/index-design-system-sources.ts +1 -0
- package/corpus/templates/slides/server/lib/builder-design-system-proxy.ts +23 -4
- package/corpus/templates/slides/server/plugins/agent-chat.ts +5 -0
- package/corpus/templates/slides/server/plugins/creative-context.ts +16 -3
- package/corpus/templates/slides/server/workspace-defaults.ts +5 -1
- package/corpus/templates/slides/shared/slide-fit.ts +26 -0
- package/corpus/templates/tasks/app/components/layout/Sidebar.tsx +30 -3
- package/corpus/templates/tasks/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/dist/a2a/correlation.d.ts +4 -1
- package/dist/a2a/correlation.d.ts.map +1 -1
- package/dist/a2a/correlation.js +8 -1
- package/dist/a2a/correlation.js.map +1 -1
- package/dist/a2a/types.d.ts +11 -3
- package/dist/a2a/types.d.ts.map +1 -1
- package/dist/a2a/types.js.map +1 -1
- package/dist/agent/engine/ai-sdk-engine.d.ts.map +1 -1
- package/dist/agent/engine/ai-sdk-engine.js +27 -41
- package/dist/agent/engine/ai-sdk-engine.js.map +1 -1
- package/dist/agent/engine/builder-engine.d.ts.map +1 -1
- package/dist/agent/engine/builder-engine.js +18 -8
- package/dist/agent/engine/builder-engine.js.map +1 -1
- package/dist/agent/engine/error-detail.d.ts +61 -0
- package/dist/agent/engine/error-detail.d.ts.map +1 -1
- package/dist/agent/engine/error-detail.js +145 -3
- package/dist/agent/engine/error-detail.js.map +1 -1
- package/dist/agent/engine/failure-taxonomy.d.ts +24 -0
- package/dist/agent/engine/failure-taxonomy.d.ts.map +1 -0
- package/dist/agent/engine/failure-taxonomy.js +88 -0
- package/dist/agent/engine/failure-taxonomy.js.map +1 -0
- package/dist/agent/engine/index.d.ts +2 -1
- package/dist/agent/engine/index.d.ts.map +1 -1
- package/dist/agent/engine/index.js +2 -1
- package/dist/agent/engine/index.js.map +1 -1
- package/dist/agent/engine/registry.d.ts +16 -0
- package/dist/agent/engine/registry.d.ts.map +1 -1
- package/dist/agent/engine/registry.js +71 -6
- package/dist/agent/engine/registry.js.map +1 -1
- package/dist/agent/engine/translate-ai-sdk.d.ts.map +1 -1
- package/dist/agent/engine/translate-ai-sdk.js +14 -2
- package/dist/agent/engine/translate-ai-sdk.js.map +1 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +13 -24
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-loop-with-resume.js +1 -1
- package/dist/agent/run-loop-with-resume.js.map +1 -1
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +39 -10
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/run-store.d.ts +10 -0
- package/dist/agent/run-store.d.ts.map +1 -1
- package/dist/agent/run-store.js +20 -3
- package/dist/agent/run-store.js.map +1 -1
- package/dist/agent/thread-data-builder.d.ts.map +1 -1
- package/dist/agent/thread-data-builder.js +28 -4
- package/dist/agent/thread-data-builder.js.map +1 -1
- package/dist/chat-threads/store.d.ts +13 -0
- package/dist/chat-threads/store.d.ts.map +1 -1
- package/dist/chat-threads/store.js +35 -0
- package/dist/chat-threads/store.js.map +1 -1
- package/dist/cli/templates-meta.d.ts.map +1 -1
- package/dist/cli/templates-meta.js +13 -0
- package/dist/cli/templates-meta.js.map +1 -1
- package/dist/cli/workspace-dev.d.ts.map +1 -1
- package/dist/cli/workspace-dev.js +1 -0
- package/dist/cli/workspace-dev.js.map +1 -1
- package/dist/client/error-format.d.ts.map +1 -1
- package/dist/client/error-format.js +10 -0
- package/dist/client/error-format.js.map +1 -1
- package/dist/client/use-chat-threads.d.ts.map +1 -1
- package/dist/client/use-chat-threads.js +66 -16
- package/dist/client/use-chat-threads.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/credentials/index.d.ts +9 -2
- package/dist/credentials/index.d.ts.map +1 -1
- package/dist/credentials/index.js +50 -8
- package/dist/credentials/index.js.map +1 -1
- package/dist/extensions/url-safety.d.ts.map +1 -1
- package/dist/extensions/url-safety.js +38 -12
- package/dist/extensions/url-safety.js.map +1 -1
- package/dist/integrations/adapters/slack.d.ts.map +1 -1
- package/dist/integrations/adapters/slack.js +25 -8
- package/dist/integrations/adapters/slack.js.map +1 -1
- package/dist/integrations/google-docs-poller.d.ts.map +1 -1
- package/dist/integrations/google-docs-poller.js +13 -1
- package/dist/integrations/google-docs-poller.js.map +1 -1
- package/dist/integrations/installations-store.d.ts +10 -0
- package/dist/integrations/installations-store.d.ts.map +1 -1
- package/dist/integrations/installations-store.js +24 -0
- package/dist/integrations/installations-store.js.map +1 -1
- package/dist/integrations/plugin.d.ts.map +1 -1
- package/dist/integrations/plugin.js +6 -5
- package/dist/integrations/plugin.js.map +1 -1
- package/dist/integrations/types.d.ts +7 -0
- package/dist/integrations/types.d.ts.map +1 -1
- package/dist/integrations/types.js.map +1 -1
- package/dist/integrations/webhook-handler.d.ts.map +1 -1
- package/dist/integrations/webhook-handler.js +16 -1
- package/dist/integrations/webhook-handler.js.map +1 -1
- package/dist/jobs/background-automation-runner.d.ts.map +1 -1
- package/dist/jobs/background-automation-runner.js +35 -2
- package/dist/jobs/background-automation-runner.js.map +1 -1
- package/dist/notifications/routes.d.ts +6 -6
- package/dist/observability/routes.d.ts +3 -3
- package/dist/provider-api/actions/custom-provider-registration.d.ts +14 -14
- package/dist/provider-api/actions/provider-api.d.ts +8 -8
- package/dist/provider-api/index.js +7 -3
- package/dist/provider-api/index.js.map +1 -1
- package/dist/scripts/call-agent.d.ts.map +1 -1
- package/dist/scripts/call-agent.js +6 -1
- package/dist/scripts/call-agent.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +38 -9
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-discovery.d.ts +2 -0
- package/dist/server/agent-discovery.d.ts.map +1 -1
- package/dist/server/agent-discovery.js.map +1 -1
- package/dist/server/builder-design-systems.d.ts +4 -1
- package/dist/server/builder-design-systems.d.ts.map +1 -1
- package/dist/server/builder-design-systems.js +11 -1
- package/dist/server/builder-design-systems.js.map +1 -1
- package/dist/server/credential-provider.d.ts.map +1 -1
- package/dist/server/credential-provider.js +49 -12
- package/dist/server/credential-provider.js.map +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/onboarding-html.d.ts.map +1 -1
- package/dist/server/onboarding-html.js +37 -2
- package/dist/server/onboarding-html.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/shared/reasoning-effort.d.ts +1 -0
- package/dist/shared/reasoning-effort.d.ts.map +1 -1
- package/dist/shared/reasoning-effort.js +1 -1
- package/dist/shared/reasoning-effort.js.map +1 -1
- package/dist/templates/chat/app/components/layout/Sidebar.tsx +30 -3
- package/dist/templates/chat/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/dist/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +11 -0
- package/package.json +1 -1
- package/src/a2a/correlation.ts +11 -1
- package/src/a2a/types.ts +11 -3
- package/src/agent/engine/ai-sdk-engine.ts +33 -46
- package/src/agent/engine/builder-engine.ts +22 -10
- package/src/agent/engine/error-detail.ts +184 -3
- package/src/agent/engine/failure-taxonomy.ts +123 -0
- package/src/agent/engine/index.ts +8 -0
- package/src/agent/engine/registry.ts +92 -8
- package/src/agent/engine/translate-ai-sdk.ts +17 -2
- package/src/agent/production-agent.ts +13 -33
- package/src/agent/run-loop-with-resume.ts +1 -1
- package/src/agent/run-manager.ts +43 -14
- package/src/agent/run-store.ts +30 -3
- package/src/agent/thread-data-builder.ts +36 -4
- package/src/chat-threads/store.ts +42 -0
- package/src/cli/templates-meta.ts +13 -0
- package/src/cli/workspace-dev.ts +1 -0
- package/src/client/error-format.ts +12 -0
- package/src/client/use-chat-threads.ts +76 -16
- package/src/credentials/index.ts +51 -12
- package/src/extensions/url-safety.ts +46 -12
- package/src/integrations/adapters/slack.ts +32 -10
- package/src/integrations/google-docs-poller.ts +12 -1
- package/src/integrations/installations-store.ts +30 -0
- package/src/integrations/plugin.ts +5 -5
- package/src/integrations/types.ts +7 -0
- package/src/integrations/webhook-handler.ts +24 -1
- package/src/jobs/background-automation-runner.ts +38 -1
- package/src/provider-api/index.ts +8 -2
- package/src/scripts/call-agent.ts +6 -0
- package/src/server/agent-chat-plugin.ts +46 -10
- package/src/server/agent-discovery.ts +2 -0
- package/src/server/builder-design-systems.ts +21 -0
- package/src/server/credential-provider.ts +51 -12
- package/src/server/index.ts +1 -0
- package/src/server/onboarding-html.ts +37 -2
- package/src/shared/reasoning-effort.ts +1 -1
- package/src/templates/chat/app/components/layout/Sidebar.tsx +30 -3
- package/src/templates/chat/changelog/2026-07-31-clicking-the-agent-native-logo-now-toggles-the-app-sidebar.md +6 -0
- package/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +11 -0
- package/corpus/templates/clips/desktop/src/lib/media-device-selection.ts +0 -157
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useT } from "@agent-native/core/client/i18n";
|
|
2
|
+
import { ObservabilityDashboard } from "@agent-native/core/client/observability";
|
|
3
|
+
import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
|
|
4
|
+
|
|
5
|
+
import enUS from "@/i18n/en-US";
|
|
6
|
+
|
|
7
|
+
export function meta() {
|
|
8
|
+
return [{ title: enUS.pages.observabilityPageTitle }];
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export default function ObservabilityPage() {
|
|
12
|
+
const t = useT();
|
|
13
|
+
useSetPageTitle(t("pages.observabilityPageTitle"));
|
|
14
|
+
return (
|
|
15
|
+
<div className="p-6">
|
|
16
|
+
<ObservabilityDashboard />
|
|
17
|
+
</div>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { ChangelogSettingsCard } from "@agent-native/core/client/changelog";
|
|
2
|
+
import { LanguagePicker, useT } from "@agent-native/core/client/i18n";
|
|
3
|
+
import { TeamPage } from "@agent-native/core/client/org";
|
|
4
|
+
import {
|
|
5
|
+
AccountSettingsCard,
|
|
6
|
+
SettingsTabsPage,
|
|
7
|
+
useAgentSettingsTabs,
|
|
8
|
+
type SettingsSearchEntry,
|
|
9
|
+
} from "@agent-native/core/client/settings";
|
|
10
|
+
import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
|
|
11
|
+
import { useMemo } from "react";
|
|
12
|
+
|
|
13
|
+
import {
|
|
14
|
+
Card,
|
|
15
|
+
CardContent,
|
|
16
|
+
CardDescription,
|
|
17
|
+
CardHeader,
|
|
18
|
+
CardTitle,
|
|
19
|
+
} from "@/components/ui/card";
|
|
20
|
+
import { Label } from "@/components/ui/label";
|
|
21
|
+
import { APP_TITLE } from "@/lib/app-config";
|
|
22
|
+
|
|
23
|
+
import changelog from "../../CHANGELOG.md?raw";
|
|
24
|
+
|
|
25
|
+
export function meta() {
|
|
26
|
+
return [{ title: `Settings - ${APP_TITLE}` }];
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export default function SettingsRoute() {
|
|
30
|
+
const t = useT();
|
|
31
|
+
const agentSettingsTabs = useAgentSettingsTabs();
|
|
32
|
+
useSetPageTitle(t("settings.title"));
|
|
33
|
+
|
|
34
|
+
const generalSearchEntries = useMemo<SettingsSearchEntry[]>(
|
|
35
|
+
() => [
|
|
36
|
+
{
|
|
37
|
+
id: "chat-language",
|
|
38
|
+
label: t("settings.languageTitle"),
|
|
39
|
+
keywords: "language locale translation i18n",
|
|
40
|
+
hash: "language",
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
[t],
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
return (
|
|
47
|
+
<SettingsTabsPage
|
|
48
|
+
account={<AccountSettingsCard />}
|
|
49
|
+
teamLabel={t("navigation.team")}
|
|
50
|
+
extraTabs={agentSettingsTabs}
|
|
51
|
+
generalSearchEntries={generalSearchEntries}
|
|
52
|
+
general={
|
|
53
|
+
<div className="mx-auto w-full max-w-2xl space-y-6">
|
|
54
|
+
<p className="text-sm leading-6 text-muted-foreground">
|
|
55
|
+
{t("settings.description")}
|
|
56
|
+
</p>
|
|
57
|
+
|
|
58
|
+
<Card id="language" className="scroll-mt-16">
|
|
59
|
+
<CardHeader>
|
|
60
|
+
<CardTitle className="text-base">
|
|
61
|
+
{t("settings.languageTitle")}
|
|
62
|
+
</CardTitle>
|
|
63
|
+
<CardDescription>
|
|
64
|
+
{t("settings.languageDescription")}
|
|
65
|
+
</CardDescription>
|
|
66
|
+
</CardHeader>
|
|
67
|
+
<CardContent className="max-w-xs space-y-1.5">
|
|
68
|
+
<Label>{t("settings.languageLabel")}</Label>
|
|
69
|
+
<LanguagePicker label={t("settings.languageLabel")} />
|
|
70
|
+
</CardContent>
|
|
71
|
+
</Card>
|
|
72
|
+
</div>
|
|
73
|
+
}
|
|
74
|
+
team={
|
|
75
|
+
<div className="mx-auto w-full max-w-3xl">
|
|
76
|
+
<TeamPage
|
|
77
|
+
showTitle={false}
|
|
78
|
+
createOrgDescription={t("pages.teamCreateOrgDescription")}
|
|
79
|
+
/>
|
|
80
|
+
</div>
|
|
81
|
+
}
|
|
82
|
+
whatsNew={
|
|
83
|
+
<div className="mx-auto w-full max-w-2xl">
|
|
84
|
+
<ChangelogSettingsCard markdown={changelog} />
|
|
85
|
+
</div>
|
|
86
|
+
}
|
|
87
|
+
/>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Navigate } from "react-router";
|
|
2
|
+
|
|
3
|
+
import { APP_TITLE } from "@/lib/app-config";
|
|
4
|
+
|
|
5
|
+
export function meta() {
|
|
6
|
+
return [{ title: `Team — ${APP_TITLE}` }];
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export default function TeamRoute() {
|
|
10
|
+
return <Navigate to="/settings#organization" replace />;
|
|
11
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema.json",
|
|
3
|
+
"style": "default",
|
|
4
|
+
"rsc": false,
|
|
5
|
+
"tsx": true,
|
|
6
|
+
"tailwind": {
|
|
7
|
+
"config": "",
|
|
8
|
+
"css": "app/global.css",
|
|
9
|
+
"baseColor": "slate",
|
|
10
|
+
"cssVariables": true,
|
|
11
|
+
"prefix": ""
|
|
12
|
+
},
|
|
13
|
+
"aliases": {
|
|
14
|
+
"components": "@/components",
|
|
15
|
+
"utils": "@/lib/utils",
|
|
16
|
+
"ui": "@/components/ui",
|
|
17
|
+
"lib": "@/lib",
|
|
18
|
+
"hooks": "@/hooks"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "patterns": ["data/**/*.json"] }
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Learnings
|
|
2
|
+
|
|
3
|
+
<!-- This file is your app's memory. The AI reads it at the start of every conversation and updates it when it learns something new. -->
|
|
4
|
+
<!-- Your personal learnings.md is gitignored so preferences and private info stay local. -->
|
|
5
|
+
<!-- This defaults file is what new checkouts start with. -->
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
[build]
|
|
2
|
+
command = "NITRO_PRESET=netlify pnpm --filter factory build"
|
|
3
|
+
publish = "templates/factory/dist"
|
|
4
|
+
functions = "templates/factory/.netlify/functions-internal"
|
|
5
|
+
|
|
6
|
+
[build.environment]
|
|
7
|
+
GA_MEASUREMENT_ID = "G-ESF7FYXGN9"
|
|
8
|
+
GTM_CONTAINER_ID = "GTM-N3WSTXZ"
|
|
9
|
+
NITRO_PRESET = "netlify"
|
|
10
|
+
NPM_CONFIG_PRODUCTION = "false"
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "factory",
|
|
3
|
+
"displayName": "Factory",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "Build agent factories: work in one end, shipped changes out the other, with gates you control.",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "agent-native dev --open",
|
|
9
|
+
"build": "agent-native build",
|
|
10
|
+
"start": "agent-native start",
|
|
11
|
+
"typecheck": "agent-native typecheck",
|
|
12
|
+
"action": "agent-native action",
|
|
13
|
+
"script": "agent-native script",
|
|
14
|
+
"test": "vitest --run --passWithNoTests"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@agent-native/core": "workspace:*",
|
|
18
|
+
"@agent-native/toolkit": "workspace:*",
|
|
19
|
+
"@fontsource-variable/inter": "^5.2.8",
|
|
20
|
+
"@libsql/client": "^0.15.8",
|
|
21
|
+
"@react-router/dev": "^8.1.0",
|
|
22
|
+
"@react-router/fs-routes": "^8.1.0",
|
|
23
|
+
"@tabler/icons-react": "catalog:",
|
|
24
|
+
"drizzle-orm": "^0.45.2",
|
|
25
|
+
"h3": "catalog:",
|
|
26
|
+
"isbot": "^5",
|
|
27
|
+
"node-pty": "^1.1.0",
|
|
28
|
+
"postgres": "^3.4.9",
|
|
29
|
+
"react-router": "^8.1.0",
|
|
30
|
+
"vite": "catalog:",
|
|
31
|
+
"zod": "^4.4.3"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@assistant-ui/store": ">=0.2.9 <0.2.14",
|
|
35
|
+
"@assistant-ui/tap": "^0.5.14",
|
|
36
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
37
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
38
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
39
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
40
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
41
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
42
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
43
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
44
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
45
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
46
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
47
|
+
"@radix-ui/react-menubar": "^1.1.16",
|
|
48
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
49
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
50
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
51
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
52
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
53
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
54
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
55
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
56
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
57
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
58
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
59
|
+
"@radix-ui/react-toast": "^1.2.15",
|
|
60
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
61
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
62
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
63
|
+
"@tailwindcss/typography": "^0.5.20",
|
|
64
|
+
"@tailwindcss/vite": "catalog:",
|
|
65
|
+
"@tanstack/react-query": "^5.99.2",
|
|
66
|
+
"@types/node": "^24.2.1",
|
|
67
|
+
"@types/react": "catalog:",
|
|
68
|
+
"@types/react-dom": "catalog:",
|
|
69
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
70
|
+
"@xterm/addon-web-links": "^0.12.0",
|
|
71
|
+
"@xterm/xterm": "^6.0.0",
|
|
72
|
+
"class-variance-authority": "^0.7.1",
|
|
73
|
+
"clsx": "^2.1.1",
|
|
74
|
+
"cmdk": "^1.1.1",
|
|
75
|
+
"embla-carousel-react": "^8.6.0",
|
|
76
|
+
"input-otp": "^1.4.2",
|
|
77
|
+
"next-themes": "^0.4.6",
|
|
78
|
+
"oxfmt": "catalog:",
|
|
79
|
+
"react": "catalog:",
|
|
80
|
+
"react-day-picker": "^9.14.0",
|
|
81
|
+
"react-dom": "catalog:",
|
|
82
|
+
"react-hook-form": "^7.71.2",
|
|
83
|
+
"react-resizable-panels": "^4.10.0",
|
|
84
|
+
"recharts": "^3.8.1",
|
|
85
|
+
"sonner": "^2.0.7",
|
|
86
|
+
"tailwind-merge": "^3.5.0",
|
|
87
|
+
"tailwindcss": "catalog:",
|
|
88
|
+
"tsx": "^4.20.3",
|
|
89
|
+
"typescript": "^6.0.3",
|
|
90
|
+
"vaul": "^1.1.2",
|
|
91
|
+
"vitest": "catalog:"
|
|
92
|
+
},
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": ">=22.22.0"
|
|
95
|
+
},
|
|
96
|
+
"agent-native": {
|
|
97
|
+
"scaffold": {
|
|
98
|
+
"template": "chat",
|
|
99
|
+
"frameworkSkills": "default",
|
|
100
|
+
"templateRef": "chat",
|
|
101
|
+
"templateSource": "framework",
|
|
102
|
+
"shape": "template"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="114" height="66" viewBox="0 0 114 66" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M24.5537 65.7695H0L15.0859 39.4619L37.708 0L60.4912 39.4619H39.6396L24.5537 65.7695Z" fill="white"/>
|
|
3
|
+
<path d="M89.446 0H114L76.2921 65.7704H51.7383L89.446 0Z" fill="url(#paint0_linear_3201_29)"/>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient id="paint0_linear_3201_29" x1="101.702" y1="67.4791" x2="113.672" y2="-37.4275" gradientUnits="userSpaceOnUse">
|
|
6
|
+
<stop stop-color="#00B5FF"/>
|
|
7
|
+
<stop offset="1" stop-color="#48FFE4"/>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="135" height="78" viewBox="0 0 135 78" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M29.0771 77.8838H0L17.8652 46.7305L44.6533 0L71.6328 46.7305H46.9414L29.0771 77.8838Z" fill="black"/>
|
|
3
|
+
<path d="M105.927 0H135.004L90.3501 77.8853H61.2734L105.927 0Z" fill="url(#paint0_linear_3201_52)"/>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient id="paint0_linear_3201_52" x1="120.44" y1="79.9088" x2="134.616" y2="-44.3217" gradientUnits="userSpaceOnUse">
|
|
6
|
+
<stop stop-color="#00B5FF"/>
|
|
7
|
+
<stop offset="1" stop-color="#48FFE4"/>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg width="1023" height="120" viewBox="0 0 1023 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M965.191 22H1021.24V38.7284H986.075V51.408H1019.96V68.0299H986.075V80.9225H1022.09V97.6509H965.191V22Z" fill="white"/>
|
|
3
|
+
<path d="M877.281 22H898.591L916.492 73.9967L934.392 22H955.702L928.212 97.6509H904.558L877.281 22Z" fill="white"/>
|
|
4
|
+
<path d="M846.885 22H867.769V97.6509H846.885V22Z" fill="white"/>
|
|
5
|
+
<path d="M794.249 38.7284H772.193V22H837.296V38.7284H815.24V97.6509H794.249V38.7284Z" fill="white"/>
|
|
6
|
+
<path d="M726.212 22H749.973L777.25 97.6509H755.94L751.678 85.1845H724.401L720.139 97.6509H698.936L726.212 22ZM746.244 68.9888L738.146 45.0149L729.942 68.9888H746.244Z" fill="white"/>
|
|
7
|
+
<path d="M622.232 22H643.329L668.582 64.6202V22H689.466V97.6509H668.369L643.116 57.1617V97.6509H622.232V22Z" fill="white"/>
|
|
8
|
+
<path d="M546.81 38.7284H524.754V22H589.856V38.7284H567.8V97.6509H546.81V38.7284Z" fill="white"/>
|
|
9
|
+
<path d="M447.838 22H468.935L494.187 64.6202V22H515.071V97.6509H493.974L468.722 57.1617V97.6509H447.838V22Z" fill="white"/>
|
|
10
|
+
<path d="M380.621 22H436.667V38.7284H401.505V51.408H435.388V68.0299H401.505V80.9225H437.519V97.6509H380.621V22Z" fill="white"/>
|
|
11
|
+
<path d="M333.109 99.0606C325.792 99.0606 319.435 97.4268 314.036 94.1592C308.708 90.8917 304.588 86.31 301.676 80.4142C298.835 74.4474 297.414 67.5216 297.414 59.6368C297.414 52.0362 298.906 45.2525 301.889 39.2857C304.873 33.2478 309.135 28.524 314.675 25.1144C320.287 21.7048 326.929 20 334.6 20C344.687 20 352.536 22.3441 358.148 27.0323C363.831 31.7206 367.631 38.5753 369.549 47.5966L347.919 48.449C347.28 44.6132 345.895 41.7008 343.764 39.7119C341.633 37.7229 338.649 36.7284 334.813 36.7284C329.77 36.7284 325.828 38.8239 322.986 43.0149C320.216 47.1349 318.831 52.6755 318.831 59.6368C318.831 66.7402 320.18 72.3163 322.88 76.3653C325.65 80.3432 329.77 82.3321 335.24 82.3321C339.146 82.3321 342.236 81.3732 344.509 79.4552C346.854 77.4663 348.31 74.696 348.878 71.1443H334.707V57.2927H369.762V97.3558H357.615L356.976 87.6596C354.916 91.2113 351.755 94.0172 347.493 96.0771C343.302 98.0661 338.507 99.0606 333.109 99.0606Z" fill="white"/>
|
|
12
|
+
<path d="M245.277 22H269.038L296.315 97.6509H275.005L270.743 85.1845H243.466L239.204 97.6509H218L245.277 22ZM265.308 68.9888L257.211 45.0149L249.006 68.9888H265.308Z" fill="white"/>
|
|
13
|
+
<path d="M44.7998 120H0L27.5254 72L68.7998 0L110.369 72H72.3262L44.7998 120Z" fill="white"/>
|
|
14
|
+
<path d="M163.2 0H208L139.2 120.002H94.4004L163.2 0Z" fill="url(#paint0_linear_3229_44)"/>
|
|
15
|
+
<defs>
|
|
16
|
+
<linearGradient id="paint0_linear_3229_44" x1="185.562" y1="123.12" x2="207.403" y2="-68.2888" gradientUnits="userSpaceOnUse">
|
|
17
|
+
<stop stop-color="#00B5FF"/>
|
|
18
|
+
<stop offset="1" stop-color="#48FFE4"/>
|
|
19
|
+
</linearGradient>
|
|
20
|
+
</defs>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg width="1023" height="120" viewBox="0 0 1023 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M965.191 22H1021.24V38.7284H986.075V51.408H1019.96V68.0299H986.075V80.9225H1022.09V97.6509H965.191V22Z" fill="black"/>
|
|
3
|
+
<path d="M877.281 22H898.591L916.492 73.9967L934.392 22H955.702L928.212 97.6509H904.558L877.281 22Z" fill="black"/>
|
|
4
|
+
<path d="M846.885 22H867.769V97.6509H846.885V22Z" fill="black"/>
|
|
5
|
+
<path d="M794.249 38.7284H772.193V22H837.296V38.7284H815.24V97.6509H794.249V38.7284Z" fill="black"/>
|
|
6
|
+
<path d="M726.212 22H749.973L777.25 97.6509H755.94L751.678 85.1845H724.401L720.139 97.6509H698.936L726.212 22ZM746.244 68.9888L738.146 45.0149L729.942 68.9888H746.244Z" fill="black"/>
|
|
7
|
+
<path d="M622.232 22H643.329L668.582 64.6202V22H689.466V97.6509H668.369L643.116 57.1617V97.6509H622.232V22Z" fill="black"/>
|
|
8
|
+
<path d="M546.81 38.7284H524.754V22H589.856V38.7284H567.8V97.6509H546.81V38.7284Z" fill="black"/>
|
|
9
|
+
<path d="M447.838 22H468.935L494.187 64.6202V22H515.071V97.6509H493.974L468.722 57.1617V97.6509H447.838V22Z" fill="black"/>
|
|
10
|
+
<path d="M380.621 22H436.667V38.7284H401.505V51.408H435.388V68.0299H401.505V80.9225H437.519V97.6509H380.621V22Z" fill="black"/>
|
|
11
|
+
<path d="M333.109 99.0606C325.792 99.0606 319.435 97.4268 314.036 94.1592C308.708 90.8917 304.588 86.31 301.676 80.4142C298.835 74.4474 297.414 67.5216 297.414 59.6368C297.414 52.0362 298.906 45.2525 301.889 39.2857C304.873 33.2478 309.135 28.524 314.675 25.1144C320.287 21.7048 326.929 20 334.6 20C344.687 20 352.536 22.3441 358.148 27.0323C363.831 31.7206 367.631 38.5753 369.549 47.5966L347.919 48.449C347.28 44.6132 345.895 41.7008 343.764 39.7119C341.633 37.7229 338.649 36.7284 334.813 36.7284C329.77 36.7284 325.828 38.8239 322.986 43.0149C320.216 47.1349 318.831 52.6755 318.831 59.6368C318.831 66.7402 320.18 72.3163 322.88 76.3653C325.65 80.3432 329.77 82.3321 335.24 82.3321C339.146 82.3321 342.236 81.3732 344.509 79.4552C346.854 77.4663 348.31 74.696 348.878 71.1443H334.707V57.2927H369.762V97.3558H357.615L356.976 87.6596C354.916 91.2113 351.755 94.0172 347.493 96.0771C343.302 98.0661 338.507 99.0606 333.109 99.0606Z" fill="black"/>
|
|
12
|
+
<path d="M245.277 22H269.038L296.315 97.6509H275.005L270.743 85.1845H243.466L239.204 97.6509H218L245.277 22ZM265.308 68.9888L257.211 45.0149L249.006 68.9888H265.308Z" fill="black"/>
|
|
13
|
+
<path d="M44.7998 120H0L27.5254 72L68.7998 0L110.369 72H72.3262L44.7998 120Z" fill="black"/>
|
|
14
|
+
<path d="M163.2 0H208L139.2 120.002H94.4004L163.2 0Z" fill="url(#paint0_linear_3229_42)"/>
|
|
15
|
+
<defs>
|
|
16
|
+
<linearGradient id="paint0_linear_3229_42" x1="185.562" y1="123.12" x2="207.403" y2="-68.2888" gradientUnits="userSpaceOnUse">
|
|
17
|
+
<stop stop-color="#00B5FF"/>
|
|
18
|
+
<stop offset="1" stop-color="#48FFE4"/>
|
|
19
|
+
</linearGradient>
|
|
20
|
+
</defs>
|
|
21
|
+
</svg>
|