@agent-native/core 0.14.8 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/agent/engine/builder-engine.d.ts.map +1 -1
- package/dist/agent/engine/builder-engine.js +30 -9
- package/dist/agent/engine/builder-engine.js.map +1 -1
- package/dist/agent/engine/registry.d.ts.map +1 -1
- package/dist/agent/engine/registry.js +14 -4
- package/dist/agent/engine/registry.js.map +1 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +71 -4
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/types.d.ts +9 -0
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/appearance/actions/change-appearance.d.ts +3 -0
- package/dist/appearance/actions/change-appearance.d.ts.map +1 -0
- package/dist/appearance/actions/change-appearance.js +29 -0
- package/dist/appearance/actions/change-appearance.js.map +1 -0
- package/dist/chat-threads/store.d.ts +53 -2
- package/dist/chat-threads/store.d.ts.map +1 -1
- package/dist/chat-threads/store.js +172 -12
- package/dist/chat-threads/store.js.map +1 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +114 -37
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/index.js +30 -4
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/workspace-dev.d.ts +25 -1
- package/dist/cli/workspace-dev.d.ts.map +1 -1
- package/dist/cli/workspace-dev.js +275 -49
- package/dist/cli/workspace-dev.js.map +1 -1
- package/dist/client/AgentPanel.d.ts +23 -4
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +276 -53
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/AppearancePicker.d.ts +11 -0
- package/dist/client/AppearancePicker.d.ts.map +1 -0
- package/dist/client/AppearancePicker.js +16 -0
- package/dist/client/AppearancePicker.js.map +1 -0
- package/dist/client/AssistantChat.d.ts +35 -0
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +315 -32
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/ConnectBuilderCard.d.ts.map +1 -1
- package/dist/client/ConnectBuilderCard.js +5 -2
- package/dist/client/ConnectBuilderCard.js.map +1 -1
- package/dist/client/ErrorBoundary.d.ts.map +1 -1
- package/dist/client/ErrorBoundary.js +8 -10
- package/dist/client/ErrorBoundary.js.map +1 -1
- package/dist/client/FeedbackButton.d.ts.map +1 -1
- package/dist/client/FeedbackButton.js +1 -1
- package/dist/client/FeedbackButton.js.map +1 -1
- package/dist/client/MultiTabAssistantChat.d.ts +13 -1
- package/dist/client/MultiTabAssistantChat.d.ts.map +1 -1
- package/dist/client/MultiTabAssistantChat.js +217 -38
- package/dist/client/MultiTabAssistantChat.js.map +1 -1
- package/dist/client/NewWorkspaceAppFlow.d.ts.map +1 -1
- package/dist/client/NewWorkspaceAppFlow.js +37 -14
- package/dist/client/NewWorkspaceAppFlow.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts +5 -0
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +4 -0
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/agent-sidebar-state.d.ts +12 -0
- package/dist/client/agent-sidebar-state.d.ts.map +1 -1
- package/dist/client/agent-sidebar-state.js +8 -0
- package/dist/client/agent-sidebar-state.js.map +1 -1
- package/dist/client/analytics.d.ts.map +1 -1
- package/dist/client/analytics.js +175 -3
- package/dist/client/analytics.js.map +1 -1
- package/dist/client/appearance.d.ts +40 -0
- package/dist/client/appearance.d.ts.map +1 -0
- package/dist/client/appearance.js +114 -0
- package/dist/client/appearance.js.map +1 -0
- package/dist/client/builder-frame.d.ts +1 -0
- package/dist/client/builder-frame.d.ts.map +1 -1
- package/dist/client/builder-frame.js +19 -9
- package/dist/client/builder-frame.js.map +1 -1
- package/dist/client/components/CodeRequiredDialog.d.ts.map +1 -1
- package/dist/client/components/CodeRequiredDialog.js +10 -2
- package/dist/client/components/CodeRequiredDialog.js.map +1 -1
- package/dist/client/components/ui/dropdown-menu.js +2 -2
- package/dist/client/components/ui/dropdown-menu.js.map +1 -1
- package/dist/client/components/ui/hover-card.js +1 -1
- package/dist/client/components/ui/hover-card.js.map +1 -1
- package/dist/client/components/ui/popover.js +1 -1
- package/dist/client/components/ui/popover.js.map +1 -1
- package/dist/client/composer/PromptComposer.d.ts +7 -0
- package/dist/client/composer/PromptComposer.d.ts.map +1 -1
- package/dist/client/composer/PromptComposer.js +63 -32
- package/dist/client/composer/PromptComposer.js.map +1 -1
- package/dist/client/composer/TiptapComposer.d.ts +5 -0
- package/dist/client/composer/TiptapComposer.d.ts.map +1 -1
- package/dist/client/composer/TiptapComposer.js +36 -6
- package/dist/client/composer/TiptapComposer.js.map +1 -1
- package/dist/client/composer/useVoiceDictation.d.ts.map +1 -1
- package/dist/client/composer/useVoiceDictation.js +13 -1
- package/dist/client/composer/useVoiceDictation.js.map +1 -1
- package/dist/client/error-format.d.ts +3 -2
- package/dist/client/error-format.d.ts.map +1 -1
- package/dist/client/error-format.js +9 -2
- package/dist/client/error-format.js.map +1 -1
- package/dist/client/extensions/ExtensionViewer.d.ts.map +1 -1
- package/dist/client/extensions/ExtensionViewer.js +24 -2
- package/dist/client/extensions/ExtensionViewer.js.map +1 -1
- package/dist/client/index.d.ts +8 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +7 -0
- package/dist/client/index.js.map +1 -1
- package/dist/client/onboarding/OnboardingPanel.js +1 -0
- package/dist/client/onboarding/OnboardingPanel.js.map +1 -1
- package/dist/client/org/InvitationBanner.d.ts.map +1 -1
- package/dist/client/org/InvitationBanner.js +23 -2
- package/dist/client/org/InvitationBanner.js.map +1 -1
- package/dist/client/org/OrgSwitcher.d.ts +5 -4
- package/dist/client/org/OrgSwitcher.d.ts.map +1 -1
- package/dist/client/org/OrgSwitcher.js +57 -9
- package/dist/client/org/OrgSwitcher.js.map +1 -1
- package/dist/client/org/hooks.d.ts.map +1 -1
- package/dist/client/org/hooks.js +10 -6
- package/dist/client/org/hooks.js.map +1 -1
- package/dist/client/org/workspace-app-links.d.ts +31 -0
- package/dist/client/org/workspace-app-links.d.ts.map +1 -0
- package/dist/client/org/workspace-app-links.js +268 -0
- package/dist/client/org/workspace-app-links.js.map +1 -0
- package/dist/client/resources/ResourcesPanel.d.ts.map +1 -1
- package/dist/client/resources/ResourcesPanel.js +18 -5
- package/dist/client/resources/ResourcesPanel.js.map +1 -1
- package/dist/client/resources/use-resources.d.ts +18 -13
- package/dist/client/resources/use-resources.d.ts.map +1 -1
- package/dist/client/resources/use-resources.js +24 -6
- package/dist/client/resources/use-resources.js.map +1 -1
- package/dist/client/settings/BackgroundAgentSection.d.ts.map +1 -1
- package/dist/client/settings/BackgroundAgentSection.js +9 -1
- package/dist/client/settings/BackgroundAgentSection.js.map +1 -1
- package/dist/client/settings/BrowserSection.d.ts.map +1 -1
- package/dist/client/settings/BrowserSection.js +16 -1
- package/dist/client/settings/BrowserSection.js.map +1 -1
- package/dist/client/settings/SettingsPanel.d.ts.map +1 -1
- package/dist/client/settings/SettingsPanel.js +4 -1
- package/dist/client/settings/SettingsPanel.js.map +1 -1
- package/dist/client/settings/VoiceTranscriptionSection.d.ts.map +1 -1
- package/dist/client/settings/VoiceTranscriptionSection.js +5 -5
- package/dist/client/settings/VoiceTranscriptionSection.js.map +1 -1
- package/dist/client/settings/useBuilderStatus.d.ts +8 -0
- package/dist/client/settings/useBuilderStatus.d.ts.map +1 -1
- package/dist/client/settings/useBuilderStatus.js +50 -13
- package/dist/client/settings/useBuilderStatus.js.map +1 -1
- package/dist/client/settings/useBuilderStatus.spec.d.ts +2 -0
- package/dist/client/settings/useBuilderStatus.spec.d.ts.map +1 -0
- package/dist/client/settings/useBuilderStatus.spec.js +64 -0
- package/dist/client/settings/useBuilderStatus.spec.js.map +1 -0
- package/dist/client/sharing/ShareButton.d.ts +5 -0
- package/dist/client/sharing/ShareButton.d.ts.map +1 -1
- package/dist/client/sharing/ShareButton.js +60 -6
- package/dist/client/sharing/ShareButton.js.map +1 -1
- package/dist/client/theme.js +1 -1
- package/dist/client/theme.js.map +1 -1
- package/dist/client/transcription/BuilderTranscriptionCta.d.ts.map +1 -1
- package/dist/client/transcription/BuilderTranscriptionCta.js +2 -3
- package/dist/client/transcription/BuilderTranscriptionCta.js.map +1 -1
- package/dist/client/use-change-version.d.ts +46 -0
- package/dist/client/use-change-version.d.ts.map +1 -0
- package/dist/client/use-change-version.js +135 -0
- package/dist/client/use-change-version.js.map +1 -0
- package/dist/client/use-chat-threads.d.ts +16 -2
- package/dist/client/use-chat-threads.d.ts.map +1 -1
- package/dist/client/use-chat-threads.js +87 -12
- package/dist/client/use-chat-threads.js.map +1 -1
- package/dist/client/use-chat-threads.spec.d.ts +2 -0
- package/dist/client/use-chat-threads.spec.d.ts.map +1 -0
- package/dist/client/use-chat-threads.spec.js +85 -0
- package/dist/client/use-chat-threads.spec.js.map +1 -0
- package/dist/client/use-db-sync.d.ts +5 -2
- package/dist/client/use-db-sync.d.ts.map +1 -1
- package/dist/client/use-db-sync.js +41 -16
- package/dist/client/use-db-sync.js.map +1 -1
- package/dist/client/use-pinch-zoom.d.ts +35 -0
- package/dist/client/use-pinch-zoom.d.ts.map +1 -0
- package/dist/client/use-pinch-zoom.js +105 -0
- package/dist/client/use-pinch-zoom.js.map +1 -0
- package/dist/deploy/workspace-deploy.d.ts.map +1 -1
- package/dist/deploy/workspace-deploy.js +99 -5
- package/dist/deploy/workspace-deploy.js.map +1 -1
- package/dist/extensions/actions.d.ts.map +1 -1
- package/dist/extensions/actions.js +3 -0
- package/dist/extensions/actions.js.map +1 -1
- package/dist/extensions/store.d.ts +5 -0
- package/dist/extensions/store.d.ts.map +1 -1
- package/dist/extensions/store.js +16 -1
- package/dist/extensions/store.js.map +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +3 -0
- package/dist/file-upload/actions/upload-image.d.ts.map +1 -0
- package/dist/file-upload/actions/upload-image.js +145 -0
- package/dist/file-upload/actions/upload-image.js.map +1 -0
- package/dist/file-upload/builder.d.ts.map +1 -1
- package/dist/file-upload/builder.js +31 -11
- package/dist/file-upload/builder.js.map +1 -1
- package/dist/file-upload/index.d.ts +1 -0
- package/dist/file-upload/index.d.ts.map +1 -1
- package/dist/file-upload/index.js +1 -0
- package/dist/file-upload/index.js.map +1 -1
- package/dist/file-upload/pre-upload-attachments.d.ts +39 -0
- package/dist/file-upload/pre-upload-attachments.d.ts.map +1 -0
- package/dist/file-upload/pre-upload-attachments.js +110 -0
- package/dist/file-upload/pre-upload-attachments.js.map +1 -0
- package/dist/file-upload/registry.d.ts.map +1 -1
- package/dist/file-upload/registry.js +8 -7
- package/dist/file-upload/registry.js.map +1 -1
- package/dist/onboarding/default-steps.js +1 -1
- package/dist/onboarding/default-steps.js.map +1 -1
- package/dist/org/context.d.ts +15 -1
- package/dist/org/context.d.ts.map +1 -1
- package/dist/org/context.js +25 -0
- package/dist/org/context.js.map +1 -1
- package/dist/org/handlers.d.ts +2 -2
- package/dist/org/handlers.d.ts.map +1 -1
- package/dist/org/handlers.js +3 -17
- package/dist/org/handlers.js.map +1 -1
- package/dist/org/index.d.ts +1 -1
- package/dist/org/index.d.ts.map +1 -1
- package/dist/org/index.js +1 -1
- package/dist/org/index.js.map +1 -1
- package/dist/resources/handlers.d.ts +6 -0
- package/dist/resources/handlers.d.ts.map +1 -1
- package/dist/resources/handlers.js +30 -6
- package/dist/resources/handlers.js.map +1 -1
- package/dist/resources/script-helpers.d.ts +11 -2
- package/dist/resources/script-helpers.d.ts.map +1 -1
- package/dist/resources/script-helpers.js +20 -3
- package/dist/resources/script-helpers.js.map +1 -1
- package/dist/resources/store.d.ts +28 -3
- package/dist/resources/store.d.ts.map +1 -1
- package/dist/resources/store.js +170 -20
- package/dist/resources/store.js.map +1 -1
- package/dist/scripts/resources/list.d.ts +1 -1
- package/dist/scripts/resources/list.d.ts.map +1 -1
- package/dist/scripts/resources/list.js +16 -4
- package/dist/scripts/resources/list.js.map +1 -1
- package/dist/scripts/resources/write.d.ts +1 -1
- package/dist/scripts/resources/write.d.ts.map +1 -1
- package/dist/scripts/resources/write.js +47 -3
- package/dist/scripts/resources/write.js.map +1 -1
- package/dist/server/action-discovery.d.ts.map +1 -1
- package/dist/server/action-discovery.js +8 -3
- package/dist/server/action-discovery.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +214 -25
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-discovery.d.ts +35 -0
- package/dist/server/agent-discovery.d.ts.map +1 -1
- package/dist/server/agent-discovery.js +139 -8
- package/dist/server/agent-discovery.js.map +1 -1
- package/dist/server/app-url.d.ts +12 -6
- package/dist/server/app-url.d.ts.map +1 -1
- package/dist/server/app-url.js +58 -11
- package/dist/server/app-url.js.map +1 -1
- package/dist/server/auth.d.ts +22 -0
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +272 -59
- package/dist/server/auth.js.map +1 -1
- package/dist/server/better-auth-instance.d.ts +0 -4
- package/dist/server/better-auth-instance.d.ts.map +1 -1
- package/dist/server/better-auth-instance.js +0 -3
- package/dist/server/better-auth-instance.js.map +1 -1
- package/dist/server/builder-browser.d.ts.map +1 -1
- package/dist/server/builder-browser.js +23 -0
- package/dist/server/builder-browser.js.map +1 -1
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +29 -14
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/credential-provider.d.ts +14 -0
- package/dist/server/credential-provider.d.ts.map +1 -1
- package/dist/server/credential-provider.js +88 -11
- package/dist/server/credential-provider.js.map +1 -1
- package/dist/server/google-auth-plugin.d.ts.map +1 -1
- package/dist/server/google-auth-plugin.js +53 -13
- package/dist/server/google-auth-plugin.js.map +1 -1
- package/dist/server/google-oauth.d.ts.map +1 -1
- package/dist/server/google-oauth.js +47 -17
- package/dist/server/google-oauth.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 +1 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/oauth-public-origin.d.ts.map +1 -1
- package/dist/server/oauth-public-origin.js +19 -1
- package/dist/server/oauth-public-origin.js.map +1 -1
- package/dist/server/onboarding-html.d.ts.map +1 -1
- package/dist/server/onboarding-html.js +62 -15
- package/dist/server/onboarding-html.js.map +1 -1
- package/dist/server/poll.d.ts.map +1 -1
- package/dist/server/poll.js +20 -5
- package/dist/server/poll.js.map +1 -1
- package/dist/server/request-context.d.ts +8 -0
- package/dist/server/request-context.d.ts.map +1 -1
- package/dist/server/request-context.js.map +1 -1
- package/dist/shared/index.d.ts +2 -0
- package/dist/shared/index.d.ts.map +1 -1
- package/dist/shared/index.js +2 -0
- package/dist/shared/index.js.map +1 -1
- package/dist/shared/llm-connection.d.ts +10 -0
- package/dist/shared/llm-connection.d.ts.map +1 -0
- package/dist/shared/llm-connection.js +29 -0
- package/dist/shared/llm-connection.js.map +1 -0
- package/dist/shared/workspace-app-audience.d.ts +25 -0
- package/dist/shared/workspace-app-audience.d.ts.map +1 -0
- package/dist/shared/workspace-app-audience.js +126 -0
- package/dist/shared/workspace-app-audience.js.map +1 -0
- package/dist/shared/workspace-app-id.d.ts +1 -1
- package/dist/shared/workspace-app-id.d.ts.map +1 -1
- package/dist/shared/workspace-app-id.js +1 -0
- package/dist/shared/workspace-app-id.js.map +1 -1
- package/dist/sharing/access.d.ts.map +1 -1
- package/dist/sharing/access.js +46 -5
- package/dist/sharing/access.js.map +1 -1
- package/dist/sharing/actions/list-resource-shares.d.ts.map +1 -1
- package/dist/sharing/actions/list-resource-shares.js +8 -1
- package/dist/sharing/actions/list-resource-shares.js.map +1 -1
- package/dist/sharing/actions/set-resource-visibility.d.ts.map +1 -1
- package/dist/sharing/actions/set-resource-visibility.js +12 -3
- package/dist/sharing/actions/set-resource-visibility.js.map +1 -1
- package/dist/sharing/actions/share-resource.d.ts.map +1 -1
- package/dist/sharing/actions/share-resource.js +50 -1
- package/dist/sharing/actions/share-resource.js.map +1 -1
- package/dist/sharing/registry.d.ts +26 -0
- package/dist/sharing/registry.d.ts.map +1 -1
- package/dist/sharing/registry.js.map +1 -1
- package/dist/styles/agent-native.css +91 -0
- package/dist/templates/default/.agents/skills/adding-a-feature/SKILL.md +72 -0
- package/dist/templates/default/.agents/skills/frontend-design/SKILL.md +60 -37
- package/dist/templates/default/.agents/skills/real-time-sync/SKILL.md +28 -17
- package/dist/templates/default/.agents/skills/shadcn-ui/SKILL.md +79 -0
- package/dist/templates/default/AGENTS.md +22 -19
- package/dist/templates/default/actions/navigate.ts +3 -0
- package/dist/templates/default/app/hooks/use-navigation-state.ts +29 -5
- package/dist/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +251 -0
- package/dist/templates/workspace-core/.agents/skills/actions/SKILL.md +264 -0
- package/dist/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +130 -0
- package/dist/templates/workspace-core/.agents/skills/address-feedback/SKILL.md +112 -0
- package/dist/templates/workspace-core/.agents/skills/authentication/SKILL.md +88 -0
- package/dist/templates/workspace-core/.agents/skills/automations/SKILL.md +191 -0
- package/dist/templates/workspace-core/.agents/skills/capture-learnings/SKILL.md +74 -0
- package/dist/templates/workspace-core/.agents/skills/client-side-routing/SKILL.md +75 -0
- package/dist/templates/workspace-core/.agents/skills/context-awareness/SKILL.md +190 -0
- package/dist/templates/workspace-core/.agents/skills/create-skill/SKILL.md +168 -0
- package/dist/templates/workspace-core/.agents/skills/delegate-to-agent/SKILL.md +163 -0
- package/dist/templates/workspace-core/.agents/skills/extension-points/SKILL.md +205 -0
- package/dist/templates/workspace-core/.agents/skills/extensions/SKILL.md +720 -0
- package/dist/templates/workspace-core/.agents/skills/frontend-design/SKILL.md +92 -0
- package/dist/templates/workspace-core/.agents/skills/integration-webhooks/SKILL.md +285 -0
- package/dist/templates/workspace-core/.agents/skills/observability/SKILL.md +192 -0
- package/dist/templates/workspace-core/.agents/skills/onboarding/SKILL.md +43 -0
- package/dist/templates/workspace-core/.agents/skills/portability/SKILL.md +84 -0
- package/dist/templates/workspace-core/.agents/skills/qa/SKILL.md +313 -0
- package/dist/templates/workspace-core/.agents/skills/real-time-collab/SKILL.md +112 -0
- package/dist/templates/workspace-core/.agents/skills/real-time-sync/SKILL.md +165 -0
- package/dist/templates/workspace-core/.agents/skills/recurring-jobs/SKILL.md +41 -0
- package/dist/templates/workspace-core/.agents/skills/secrets/SKILL.md +239 -0
- package/dist/templates/workspace-core/.agents/skills/security/SKILL.md +191 -0
- package/dist/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +79 -0
- package/dist/templates/workspace-core/.agents/skills/server-plugins/SKILL.md +73 -0
- package/dist/templates/workspace-core/.agents/skills/shadcn-ui/SKILL.md +79 -0
- package/dist/templates/workspace-core/.agents/skills/sharing/SKILL.md +217 -0
- package/dist/templates/workspace-core/.agents/skills/storing-data/SKILL.md +132 -0
- package/dist/templates/workspace-core/.agents/skills/tracking/SKILL.md +150 -0
- package/dist/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +124 -0
- package/dist/templates/workspace-core/AGENTS.md +16 -1
- package/dist/templates/workspace-root/AGENTS.md +35 -0
- package/dist/templates/workspace-root/README.md +7 -0
- package/dist/vite/action-types-plugin.d.ts.map +1 -1
- package/dist/vite/action-types-plugin.js +4 -0
- package/dist/vite/action-types-plugin.js.map +1 -1
- package/docs/content/authentication.md +36 -0
- package/docs/content/creating-templates.md +15 -0
- package/docs/content/dispatch.md +3 -3
- package/docs/content/multi-app-workspace.md +5 -0
- package/docs/content/tracking.md +12 -0
- package/docs/content/workspace-management.md +39 -4
- package/package.json +15 -12
- package/src/templates/default/.agents/skills/adding-a-feature/SKILL.md +72 -0
- package/src/templates/default/.agents/skills/frontend-design/SKILL.md +60 -37
- package/src/templates/default/.agents/skills/real-time-sync/SKILL.md +28 -17
- package/src/templates/default/.agents/skills/shadcn-ui/SKILL.md +79 -0
- package/src/templates/default/AGENTS.md +22 -19
- package/src/templates/default/actions/navigate.ts +3 -0
- package/src/templates/default/app/hooks/use-navigation-state.ts +29 -5
- package/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +251 -0
- package/src/templates/workspace-core/.agents/skills/actions/SKILL.md +264 -0
- package/src/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +130 -0
- package/src/templates/workspace-core/.agents/skills/address-feedback/SKILL.md +112 -0
- package/src/templates/workspace-core/.agents/skills/authentication/SKILL.md +88 -0
- package/src/templates/workspace-core/.agents/skills/automations/SKILL.md +191 -0
- package/src/templates/workspace-core/.agents/skills/capture-learnings/SKILL.md +74 -0
- package/src/templates/workspace-core/.agents/skills/client-side-routing/SKILL.md +75 -0
- package/src/templates/workspace-core/.agents/skills/context-awareness/SKILL.md +190 -0
- package/src/templates/workspace-core/.agents/skills/create-skill/SKILL.md +168 -0
- package/src/templates/workspace-core/.agents/skills/delegate-to-agent/SKILL.md +163 -0
- package/src/templates/workspace-core/.agents/skills/extension-points/SKILL.md +205 -0
- package/src/templates/workspace-core/.agents/skills/extensions/SKILL.md +720 -0
- package/src/templates/workspace-core/.agents/skills/frontend-design/SKILL.md +92 -0
- package/src/templates/workspace-core/.agents/skills/integration-webhooks/SKILL.md +285 -0
- package/src/templates/workspace-core/.agents/skills/observability/SKILL.md +192 -0
- package/src/templates/workspace-core/.agents/skills/onboarding/SKILL.md +43 -0
- package/src/templates/workspace-core/.agents/skills/portability/SKILL.md +84 -0
- package/src/templates/workspace-core/.agents/skills/qa/SKILL.md +313 -0
- package/src/templates/workspace-core/.agents/skills/real-time-collab/SKILL.md +112 -0
- package/src/templates/workspace-core/.agents/skills/real-time-sync/SKILL.md +165 -0
- package/src/templates/workspace-core/.agents/skills/recurring-jobs/SKILL.md +41 -0
- package/src/templates/workspace-core/.agents/skills/secrets/SKILL.md +239 -0
- package/src/templates/workspace-core/.agents/skills/security/SKILL.md +191 -0
- package/src/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +79 -0
- package/src/templates/workspace-core/.agents/skills/server-plugins/SKILL.md +73 -0
- package/src/templates/workspace-core/.agents/skills/shadcn-ui/SKILL.md +79 -0
- package/src/templates/workspace-core/.agents/skills/sharing/SKILL.md +217 -0
- package/src/templates/workspace-core/.agents/skills/storing-data/SKILL.md +132 -0
- package/src/templates/workspace-core/.agents/skills/tracking/SKILL.md +150 -0
- package/src/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +124 -0
- package/src/templates/workspace-core/AGENTS.md +16 -1
- package/src/templates/workspace-root/AGENTS.md +35 -0
- package/src/templates/workspace-root/README.md +7 -0
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: a2a-protocol
|
|
3
|
+
description: >-
|
|
4
|
+
How agents call other agents via the A2A (agent-to-agent) JSON-RPC protocol.
|
|
5
|
+
Use when enabling inter-agent communication, exposing agent skills to other
|
|
6
|
+
agents, or calling external agents from scripts.
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# A2A Protocol (Agent-to-Agent)
|
|
10
|
+
|
|
11
|
+
## Rule
|
|
12
|
+
|
|
13
|
+
Agents can call other agents using the A2A protocol. This is a JSON-RPC-based protocol for agent discovery and communication. Use it when work should go to a different agent entirely — not the local agent chat.
|
|
14
|
+
|
|
15
|
+
## Why
|
|
16
|
+
|
|
17
|
+
Agent-native apps don't exist in isolation. A mail agent might need analytics data. A calendar agent might need to search issues. A2A lets agents discover each other, send messages, and receive structured results — all over HTTP with bearer token auth.
|
|
18
|
+
|
|
19
|
+
## How to Enable A2A (Server Side)
|
|
20
|
+
|
|
21
|
+
Add `mountA2A()` to a server plugin:
|
|
22
|
+
|
|
23
|
+
```ts
|
|
24
|
+
// server/plugins/a2a.ts
|
|
25
|
+
import { mountA2A } from "@agent-native/core/a2a";
|
|
26
|
+
|
|
27
|
+
export default defineNitroPlugin((nitro) => {
|
|
28
|
+
const app = nitro.h3App;
|
|
29
|
+
|
|
30
|
+
mountA2A(app, {
|
|
31
|
+
name: "Analytics Agent",
|
|
32
|
+
description: "Queries analytics data across providers",
|
|
33
|
+
version: "1.0.0",
|
|
34
|
+
skills: [
|
|
35
|
+
{
|
|
36
|
+
id: "query-data",
|
|
37
|
+
name: "Query Data",
|
|
38
|
+
description: "Run analytics queries across connected data sources",
|
|
39
|
+
tags: ["analytics", "data"],
|
|
40
|
+
examples: ["What were last week's signups?", "Show conversion rates"],
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
apiKeyEnv: "A2A_API_KEY", // env var holding the bearer token
|
|
44
|
+
streaming: true, // enable message/stream method
|
|
45
|
+
});
|
|
46
|
+
});
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
This mounts the agent-native A2A endpoints:
|
|
50
|
+
|
|
51
|
+
- `GET /.well-known/agent-card.json` — public agent discovery (no auth required)
|
|
52
|
+
- `POST /_agent-native/a2a` — primary JSON-RPC endpoint (bearer token auth required)
|
|
53
|
+
|
|
54
|
+
The client may fall back to `POST /a2a` for external or legacy peers that only
|
|
55
|
+
expose that simple path. New agent-native apps should document and call the
|
|
56
|
+
`/_agent-native/a2a` endpoint.
|
|
57
|
+
|
|
58
|
+
## The Config Object
|
|
59
|
+
|
|
60
|
+
```ts
|
|
61
|
+
interface A2AConfig {
|
|
62
|
+
name: string; // agent display name
|
|
63
|
+
description: string; // what this agent does
|
|
64
|
+
version?: string; // semver version (default: "1.0.0")
|
|
65
|
+
skills: AgentSkill[]; // capabilities this agent exposes
|
|
66
|
+
handler?: A2AHandler; // custom message handler
|
|
67
|
+
apiKeyEnv?: string; // env var name for bearer token auth
|
|
68
|
+
streaming?: boolean; // enable streaming responses
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
interface AgentSkill {
|
|
72
|
+
id: string; // unique skill identifier
|
|
73
|
+
name: string; // human-readable name
|
|
74
|
+
description: string; // what this skill does
|
|
75
|
+
tags?: string[]; // categorization tags
|
|
76
|
+
examples?: string[]; // example prompts
|
|
77
|
+
}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Agent Card
|
|
81
|
+
|
|
82
|
+
The agent card is auto-generated at `GET /.well-known/agent-card.json`. Other agents fetch this to discover what skills are available:
|
|
83
|
+
|
|
84
|
+
```json
|
|
85
|
+
{
|
|
86
|
+
"name": "Analytics Agent",
|
|
87
|
+
"description": "Queries analytics data across providers",
|
|
88
|
+
"url": "https://analytics.example.com",
|
|
89
|
+
"version": "1.0.0",
|
|
90
|
+
"protocolVersion": "0.3",
|
|
91
|
+
"capabilities": { "streaming": true },
|
|
92
|
+
"skills": [
|
|
93
|
+
{
|
|
94
|
+
"id": "query-data",
|
|
95
|
+
"name": "Query Data",
|
|
96
|
+
"description": "Run analytics queries across connected data sources"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Calling Another Agent
|
|
103
|
+
|
|
104
|
+
### Simple: `callAgent()` (text in, text out)
|
|
105
|
+
|
|
106
|
+
```ts
|
|
107
|
+
import { callAgent } from "@agent-native/core/a2a";
|
|
108
|
+
|
|
109
|
+
const answer = await callAgent(
|
|
110
|
+
"https://analytics.example.com",
|
|
111
|
+
"What were last week's signups?",
|
|
112
|
+
{ apiKey: process.env.ANALYTICS_A2A_KEY },
|
|
113
|
+
);
|
|
114
|
+
// answer is a plain string
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### Advanced: `A2AClient` (full control)
|
|
118
|
+
|
|
119
|
+
```ts
|
|
120
|
+
import { A2AClient } from "@agent-native/core/a2a";
|
|
121
|
+
|
|
122
|
+
const client = new A2AClient(
|
|
123
|
+
"https://analytics.example.com",
|
|
124
|
+
process.env.ANALYTICS_A2A_KEY,
|
|
125
|
+
);
|
|
126
|
+
|
|
127
|
+
// Discover agent capabilities
|
|
128
|
+
const card = await client.getAgentCard();
|
|
129
|
+
|
|
130
|
+
// Send a message and get a task back
|
|
131
|
+
const task = await client.send({
|
|
132
|
+
role: "user",
|
|
133
|
+
parts: [{ type: "text", text: "What were last week's signups?" }],
|
|
134
|
+
});
|
|
135
|
+
// task.status.state === "completed"
|
|
136
|
+
// task.status.message.parts[0].text === "Last week: 1,247 signups..."
|
|
137
|
+
|
|
138
|
+
// Stream responses
|
|
139
|
+
for await (const update of client.stream({
|
|
140
|
+
role: "user",
|
|
141
|
+
parts: [{ type: "text", text: "Detailed breakdown by day" }],
|
|
142
|
+
})) {
|
|
143
|
+
console.log(update.status.state, update.status.message);
|
|
144
|
+
}
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
## JSON-RPC Methods
|
|
148
|
+
|
|
149
|
+
| Method | Purpose | Auth required |
|
|
150
|
+
| ---------------- | -------------------------------- | ------------- |
|
|
151
|
+
| `message/send` | Send a message, get a task back | Yes |
|
|
152
|
+
| `message/stream` | Send a message, stream responses | Yes |
|
|
153
|
+
| `tasks/get` | Get task status by ID | Yes |
|
|
154
|
+
| `tasks/cancel` | Cancel a running task | Yes |
|
|
155
|
+
|
|
156
|
+
## Task Lifecycle
|
|
157
|
+
|
|
158
|
+
Tasks go through these states:
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
submitted → working → completed
|
|
162
|
+
→ failed
|
|
163
|
+
→ canceled
|
|
164
|
+
→ input-required
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
- **submitted** — message received, not yet processing
|
|
168
|
+
- **working** — agent is processing the request
|
|
169
|
+
- **completed** — agent finished, result in `status.message`
|
|
170
|
+
- **failed** — agent encountered an error
|
|
171
|
+
- **canceled** — task was canceled via `tasks/cancel`
|
|
172
|
+
- **input-required** — agent needs more information from the caller
|
|
173
|
+
|
|
174
|
+
## Security
|
|
175
|
+
|
|
176
|
+
A2A uses bearer token auth. The server reads the token from the environment variable specified by `apiKeyEnv`:
|
|
177
|
+
|
|
178
|
+
- Set `A2A_API_KEY=my-secret-token` in the server's environment
|
|
179
|
+
- Callers pass it as `Authorization: Bearer my-secret-token`
|
|
180
|
+
- The agent card endpoint (`/.well-known/agent-card.json`) is public — no auth needed for discovery
|
|
181
|
+
|
|
182
|
+
## Message Parts
|
|
183
|
+
|
|
184
|
+
Messages contain typed parts:
|
|
185
|
+
|
|
186
|
+
| Part type | Fields | Use for |
|
|
187
|
+
| --------- | ----------------------------------- | -------------------------- |
|
|
188
|
+
| `text` | `{ type: "text", text: "..." }` | Natural language messages |
|
|
189
|
+
| `file` | `{ type: "file", file: { ... } }` | Files (bytes or URI) |
|
|
190
|
+
| `data` | `{ type: "data", data: { ... } }` | Structured JSON data |
|
|
191
|
+
|
|
192
|
+
## Example: Cross-Agent Workflow
|
|
193
|
+
|
|
194
|
+
A mail agent calls an analytics agent to include data in an email draft:
|
|
195
|
+
|
|
196
|
+
```ts
|
|
197
|
+
// actions/draft-with-analytics.ts
|
|
198
|
+
import { callAgent } from "@agent-native/core/a2a";
|
|
199
|
+
import { writeAppState } from "@agent-native/core/application-state";
|
|
200
|
+
|
|
201
|
+
export default async function (args: string[]) {
|
|
202
|
+
// Ask the analytics agent for data
|
|
203
|
+
const stats = await callAgent(
|
|
204
|
+
process.env.ANALYTICS_AGENT_URL!,
|
|
205
|
+
"Summarize last week's key metrics in 3 bullet points",
|
|
206
|
+
{ apiKey: process.env.ANALYTICS_A2A_KEY },
|
|
207
|
+
);
|
|
208
|
+
|
|
209
|
+
// Create a draft with the analytics data
|
|
210
|
+
await writeAppState("compose-analytics-report", {
|
|
211
|
+
id: "analytics-report",
|
|
212
|
+
to: "team@example.com",
|
|
213
|
+
subject: "Weekly Analytics Summary",
|
|
214
|
+
body: `Hi team,\n\nHere are last week's numbers:\n\n${stats}\n\nBest`,
|
|
215
|
+
mode: "compose",
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
## All Types
|
|
221
|
+
|
|
222
|
+
All types are exported from `@agent-native/core/a2a`:
|
|
223
|
+
|
|
224
|
+
```ts
|
|
225
|
+
import type {
|
|
226
|
+
A2AConfig,
|
|
227
|
+
A2AHandler,
|
|
228
|
+
A2AHandlerContext,
|
|
229
|
+
A2AHandlerResult,
|
|
230
|
+
AgentCard,
|
|
231
|
+
AgentSkill,
|
|
232
|
+
AgentCapabilities,
|
|
233
|
+
Task,
|
|
234
|
+
TaskState,
|
|
235
|
+
TaskStatus,
|
|
236
|
+
Message,
|
|
237
|
+
Part,
|
|
238
|
+
TextPart,
|
|
239
|
+
FilePart,
|
|
240
|
+
DataPart,
|
|
241
|
+
Artifact,
|
|
242
|
+
JsonRpcRequest,
|
|
243
|
+
JsonRpcResponse,
|
|
244
|
+
} from "@agent-native/core/a2a";
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
## Related Skills
|
|
248
|
+
|
|
249
|
+
- **delegate-to-agent** — For work the local agent handles. Use A2A when the work goes to a different agent.
|
|
250
|
+
- **scripts** — A2A calls typically happen in scripts
|
|
251
|
+
- **storing-data** — Results from A2A calls are stored in SQL like any other data
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: actions
|
|
3
|
+
description: >-
|
|
4
|
+
How to create and run agent actions. Actions are the single source of truth
|
|
5
|
+
for app operations — the agent calls them as tools, the frontend calls them
|
|
6
|
+
as HTTP endpoints. Use when creating a new action, adding an API integration,
|
|
7
|
+
or wiring up frontend data fetching.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Agent Actions
|
|
11
|
+
|
|
12
|
+
## Rule
|
|
13
|
+
|
|
14
|
+
Actions in `actions/` are the **single source of truth** for app operations. The agent calls them as tools, and the framework auto-exposes them as HTTP endpoints at `/_agent-native/actions/:name`. The frontend calls those endpoints using React Query hooks. No duplicate `/api/` routes needed.
|
|
15
|
+
|
|
16
|
+
## Why
|
|
17
|
+
|
|
18
|
+
Actions give the agent callable tools with structured input/output, AND they give the frontend type-safe HTTP endpoints automatically. One implementation serves both the agent and the UI. They keep the agent's chat context clean, they're reusable, and they can be tested independently.
|
|
19
|
+
|
|
20
|
+
## How to Create an Action
|
|
21
|
+
|
|
22
|
+
Use `defineAction` with a Zod schema (required for new actions):
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
// actions/list-meals.ts
|
|
26
|
+
import { z } from "zod";
|
|
27
|
+
import { defineAction } from "@agent-native/core";
|
|
28
|
+
import { getDb } from "../server/db/index.js";
|
|
29
|
+
import { meals } from "../server/db/schema.js";
|
|
30
|
+
|
|
31
|
+
export default defineAction({
|
|
32
|
+
description: "List all meals",
|
|
33
|
+
schema: z.object({
|
|
34
|
+
date: z.string().describe("Filter by date (YYYY-MM-DD)"),
|
|
35
|
+
}),
|
|
36
|
+
http: { method: "GET" },
|
|
37
|
+
run: async (args) => {
|
|
38
|
+
// args is fully typed: { date: string }
|
|
39
|
+
const db = getDb();
|
|
40
|
+
const rows = await db.select().from(meals);
|
|
41
|
+
return rows; // Return objects/arrays, NOT JSON.stringify()
|
|
42
|
+
},
|
|
43
|
+
});
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
The `schema` field accepts a Zod schema (or any Standard Schema-compatible library). It provides runtime validation with clear error messages (400 for HTTP, error result for agent), full TypeScript type inference for `run()` args, and auto-generated JSON Schema for the agent's tool definition. `zod` is a dependency of all templates.
|
|
47
|
+
|
|
48
|
+
Tips:
|
|
49
|
+
- Use `.describe()` for parameter descriptions
|
|
50
|
+
- Use `.optional()` for optional params
|
|
51
|
+
- Use `z.coerce.number()` / `z.coerce.boolean()` for params that arrive as strings from HTTP
|
|
52
|
+
- Use `z.enum(["draft", "published"])` for constrained values
|
|
53
|
+
|
|
54
|
+
The legacy `parameters` field (plain JSON Schema object) still works as a fallback but does not provide runtime validation or type inference.
|
|
55
|
+
|
|
56
|
+
### The `http` Option
|
|
57
|
+
|
|
58
|
+
Controls how the action is exposed as an HTTP endpoint:
|
|
59
|
+
|
|
60
|
+
| Value | Behavior | Use for |
|
|
61
|
+
| ------------------------- | ----------------------------------------------------------- | -------------------------------- |
|
|
62
|
+
| _(omitted)_ | Auto-exposed as `POST /_agent-native/actions/:name` | Write operations (default) |
|
|
63
|
+
| `{ method: "GET" }` | Auto-exposed as `GET /_agent-native/actions/:name` | Read-only queries |
|
|
64
|
+
| `{ method: "PUT" }` | Auto-exposed as `PUT /_agent-native/actions/:name` | Update operations |
|
|
65
|
+
| `{ method: "DELETE" }` | Auto-exposed as `DELETE /_agent-native/actions/:name` | Delete operations |
|
|
66
|
+
| `{ method: "GET", path: "custom" }` | Auto-exposed as `GET /_agent-native/actions/custom` | Custom route path |
|
|
67
|
+
| `false` | Agent-only, never exposed as HTTP | `navigate`, `view-screen`, internal actions |
|
|
68
|
+
|
|
69
|
+
### Screen Refresh (automatic)
|
|
70
|
+
|
|
71
|
+
The framework auto-refreshes the UI after any successful mutating action. On completion of a non-`GET` action, the server emits a poll event that the client's `useDbSync` picks up and uses to invalidate `["action"]` React Query keys — so `list-*` / `get-*` hooks refetch without a full page reload.
|
|
72
|
+
|
|
73
|
+
Rules:
|
|
74
|
+
|
|
75
|
+
- `http: { method: "GET" }` → read-only, does NOT trigger a refresh (inferred automatically).
|
|
76
|
+
- Any other action (default `POST`, `PUT`, `DELETE`, or `http: false`) → treated as mutating, triggers a refresh on success.
|
|
77
|
+
- To override the inference on an unusual action (e.g. a `POST` that only reads), pass `readOnly: true` on the action definition.
|
|
78
|
+
- To let a mutating action run concurrently with other same-turn tool calls, pass `parallelSafe: true`. Only do this when the action is internally concurrency-safe and order-independent (for example, it uses an app-level lock or idempotent upsert semantics). Mutating actions remain serialized by default.
|
|
79
|
+
|
|
80
|
+
Agents do NOT need to call `refresh-screen` after a normal action — it's already handled. `refresh-screen` is only needed when the agent mutates data via a path the framework can't see (e.g. writing to an external system the app mirrors) or when the agent wants to pass a `scope` hint for narrower invalidation.
|
|
81
|
+
|
|
82
|
+
### Return Values
|
|
83
|
+
|
|
84
|
+
Actions should return **structured data** (objects, arrays) — not `JSON.stringify()`. The framework serializes the response automatically. If you return a string, the framework tries to parse it as JSON for a clean response.
|
|
85
|
+
|
|
86
|
+
```ts
|
|
87
|
+
// Good — return structured data
|
|
88
|
+
run: async (args) => {
|
|
89
|
+
const events = await fetchEvents(args.from, args.to);
|
|
90
|
+
return events;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// Bad — don't stringify
|
|
94
|
+
run: async (args) => {
|
|
95
|
+
const events = await fetchEvents(args.from, args.to);
|
|
96
|
+
return JSON.stringify(events, null, 2);
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## Frontend Hooks
|
|
101
|
+
|
|
102
|
+
The frontend calls action endpoints using React Query hooks from `@agent-native/core/client`:
|
|
103
|
+
|
|
104
|
+
### `useActionQuery` — for GET actions
|
|
105
|
+
|
|
106
|
+
```ts
|
|
107
|
+
import { useActionQuery } from "@agent-native/core/client";
|
|
108
|
+
|
|
109
|
+
function MealList() {
|
|
110
|
+
// Types are auto-inferred from the action's schema + return type — no manual generic needed
|
|
111
|
+
const { data: meals } = useActionQuery("list-meals", {
|
|
112
|
+
date: "2025-01-01",
|
|
113
|
+
});
|
|
114
|
+
return <ul>{meals?.map((m) => <li key={m.id}>{m.name}</li>)}</ul>;
|
|
115
|
+
}
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### `useActionMutation` — for POST/PUT/DELETE actions
|
|
119
|
+
|
|
120
|
+
```ts
|
|
121
|
+
import { useActionMutation } from "@agent-native/core/client";
|
|
122
|
+
|
|
123
|
+
function AddMealButton() {
|
|
124
|
+
// Types are auto-inferred — no manual generic needed
|
|
125
|
+
const { mutate } = useActionMutation("log-meal");
|
|
126
|
+
return (
|
|
127
|
+
<button onClick={() => mutate({ name: "Salad", calories: 350 })}>
|
|
128
|
+
Log Meal
|
|
129
|
+
</button>
|
|
130
|
+
);
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
**Do NOT use manual type generics** like `useActionQuery<Meal[]>(...)`. Types are inferred automatically from `.generated/action-types.d.ts`, which is auto-generated by a Vite plugin.
|
|
135
|
+
|
|
136
|
+
Mutations automatically invalidate all `["action"]` query keys on success, so GET queries refetch.
|
|
137
|
+
|
|
138
|
+
## How to Run (Agent)
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
pnpm action my-action --input data/source.json --output data/result.json
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
## Action Dispatcher
|
|
145
|
+
|
|
146
|
+
The default template uses core's `runScript()` in `actions/run.ts`:
|
|
147
|
+
|
|
148
|
+
```ts
|
|
149
|
+
import { runScript } from "@agent-native/core";
|
|
150
|
+
runScript();
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
This is the canonical approach for new apps. Action names must be lowercase with hyphens only (e.g., `my-action`).
|
|
154
|
+
|
|
155
|
+
## When You Still Need Custom `/api/` Routes
|
|
156
|
+
|
|
157
|
+
Most operations should be actions. You only need custom routes in `server/routes/api/` for:
|
|
158
|
+
|
|
159
|
+
- **File uploads** — actions receive JSON params, not multipart form data
|
|
160
|
+
- **Streaming responses** — SSE or chunked responses that need direct H3 control
|
|
161
|
+
- **Webhooks** — external services POST to a specific URL
|
|
162
|
+
- **OAuth callbacks** — redirect-based flows that need specific URL patterns
|
|
163
|
+
|
|
164
|
+
If it's a standard CRUD operation or data query, use an action instead.
|
|
165
|
+
|
|
166
|
+
## Legacy Pattern (bare export)
|
|
167
|
+
|
|
168
|
+
Older actions use a bare async function export with `parseArgs`:
|
|
169
|
+
|
|
170
|
+
```ts
|
|
171
|
+
import { parseArgs, loadEnv, fail } from "@agent-native/core";
|
|
172
|
+
|
|
173
|
+
export default async function myAction(args: string[]) {
|
|
174
|
+
loadEnv();
|
|
175
|
+
const parsed = parseArgs(args);
|
|
176
|
+
// ...
|
|
177
|
+
}
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
This still works but is not auto-exposed as HTTP. Prefer `defineAction` for all new actions.
|
|
181
|
+
|
|
182
|
+
## Guidelines
|
|
183
|
+
|
|
184
|
+
- **One action, one job.** Keep actions focused on a single operation. The agent composes multiple action calls for complex operations.
|
|
185
|
+
- **Return structured data.** Return objects/arrays, not `JSON.stringify()`.
|
|
186
|
+
- **Use `http: { method: "GET" }`** for read-only actions. Default is POST.
|
|
187
|
+
- **Use `http: false`** for agent-only actions (`navigate`, `view-screen`).
|
|
188
|
+
- **Use `loadEnv()`** if the action needs environment variables (API keys, etc.).
|
|
189
|
+
- **Use `fail()`** for user-friendly error messages (exits with message, no stack trace).
|
|
190
|
+
- **Import from `@agent-native/core`** — Don't redefine `parseArgs()` or other utilities locally.
|
|
191
|
+
|
|
192
|
+
## Common Patterns
|
|
193
|
+
|
|
194
|
+
**Read action (GET):**
|
|
195
|
+
|
|
196
|
+
```ts
|
|
197
|
+
import { z } from "zod";
|
|
198
|
+
import { defineAction } from "@agent-native/core";
|
|
199
|
+
|
|
200
|
+
export default defineAction({
|
|
201
|
+
description: "List calendar events",
|
|
202
|
+
schema: z.object({
|
|
203
|
+
from: z.string().describe("Start date"),
|
|
204
|
+
to: z.string().describe("End date"),
|
|
205
|
+
}),
|
|
206
|
+
http: { method: "GET" },
|
|
207
|
+
run: async (args) => {
|
|
208
|
+
return await fetchEvents(args.from, args.to);
|
|
209
|
+
},
|
|
210
|
+
});
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
**Write action (POST, default):**
|
|
214
|
+
|
|
215
|
+
```ts
|
|
216
|
+
import { z } from "zod";
|
|
217
|
+
import { defineAction } from "@agent-native/core";
|
|
218
|
+
|
|
219
|
+
export default defineAction({
|
|
220
|
+
description: "Log a meal",
|
|
221
|
+
schema: z.object({
|
|
222
|
+
name: z.string().describe("Meal name"),
|
|
223
|
+
calories: z.coerce.number().describe("Calorie count"),
|
|
224
|
+
}),
|
|
225
|
+
run: async (args) => {
|
|
226
|
+
// args.calories is a number — z.coerce.number() handles string-to-number conversion from HTTP
|
|
227
|
+
const meal = await insertMeal(args);
|
|
228
|
+
return meal;
|
|
229
|
+
},
|
|
230
|
+
});
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
**Agent-only action:**
|
|
234
|
+
|
|
235
|
+
```ts
|
|
236
|
+
import { z } from "zod";
|
|
237
|
+
import { defineAction } from "@agent-native/core";
|
|
238
|
+
|
|
239
|
+
export default defineAction({
|
|
240
|
+
description: "Navigate the UI to a view",
|
|
241
|
+
schema: z.object({
|
|
242
|
+
view: z.string().describe("Target view"),
|
|
243
|
+
}),
|
|
244
|
+
http: false,
|
|
245
|
+
run: async (args) => {
|
|
246
|
+
await writeAppState("navigate", { command: "go", view: args.view });
|
|
247
|
+
return "Navigated";
|
|
248
|
+
},
|
|
249
|
+
});
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
## Troubleshooting
|
|
253
|
+
|
|
254
|
+
- **Action not found** — Check that the filename matches the command name exactly. `pnpm action foo-bar` looks for `actions/foo-bar.ts`.
|
|
255
|
+
- **Args not parsing** — Ensure args use `--key value` or `--key=value` format. Boolean flags use `--flag` (sets value to `"true"`).
|
|
256
|
+
- **Frontend getting 405** — The action's `http.method` doesn't match the hook. Use `useActionQuery` for GET actions, `useActionMutation` for POST/PUT/DELETE.
|
|
257
|
+
- **Frontend getting undefined** — Make sure the action returns structured data, not `JSON.stringify()`.
|
|
258
|
+
|
|
259
|
+
## Related Skills
|
|
260
|
+
|
|
261
|
+
- **storing-data** — Actions read/write data in SQL
|
|
262
|
+
- **delegate-to-agent** — The agent invokes actions via `pnpm action <name>`
|
|
263
|
+
- **real-time-sync** — Database writes from actions trigger poll events to update the UI
|
|
264
|
+
- **adding-a-feature** — Actions are area 2 of the four-area checklist
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: adding-a-feature
|
|
3
|
+
description: >-
|
|
4
|
+
The four-area checklist every new feature must complete. Use when adding any
|
|
5
|
+
feature, integration, or capability to ensure the agent and UI stay in parity.
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Adding a Feature — The Four-Area Checklist
|
|
9
|
+
|
|
10
|
+
## Rule
|
|
11
|
+
|
|
12
|
+
Every new feature MUST update all four areas. Skipping any one breaks the agent-native contract — the agent and UI must always be equal partners.
|
|
13
|
+
|
|
14
|
+
## Why
|
|
15
|
+
|
|
16
|
+
Agent-native apps are defined by parity: everything the UI can do, the agent can do, and vice versa. A feature that only has UI is invisible to the agent. A feature that only has scripts is invisible to the user. A feature without app-state sync means the agent is blind to what the user is doing.
|
|
17
|
+
|
|
18
|
+
## The Checklist
|
|
19
|
+
|
|
20
|
+
When you add a new feature, work through these four areas in order:
|
|
21
|
+
|
|
22
|
+
### 1. UI Component
|
|
23
|
+
|
|
24
|
+
Build the user-facing interface — a page, component, dialog, or route. Use `useActionQuery` and `useActionMutation` from `@agent-native/core/client` to call actions for data fetching and mutations — you rarely need custom `/api/` routes.
|
|
25
|
+
|
|
26
|
+
**Auto-refresh on agent writes is non-negotiable** — when the agent mutates data, the UI must reflect the change without a manual refresh. There are two paths, and you must pick the right one:
|
|
27
|
+
|
|
28
|
+
- **`useActionQuery` / `useActionMutation`** — covered automatically. The framework's `useDbSync` invalidates `["action"]` on every change event, so every `useActionQuery` hook refetches on agent activity. No extra wiring required. **Prefer this path.**
|
|
29
|
+
- **Raw `useQuery` with custom keys** — needs explicit wiring. Fold `useChangeVersions([<source>, "action"])` from `@agent-native/core/client` into the `queryKey` and set `placeholderData: (prev) => prev`. The `action` source is the reliable signal (the agent runner emits it after every successful tool call); the resource-specific source (`"dashboards"`, `"analyses"`, `"settings"`, etc.) is bonus when emitted. Without this wiring, agent writes will be invisible until manual refresh — that breaks the framework's #1 promise.
|
|
30
|
+
|
|
31
|
+
```tsx
|
|
32
|
+
import { useChangeVersions } from "@agent-native/core/client";
|
|
33
|
+
import { useQuery } from "@tanstack/react-query";
|
|
34
|
+
|
|
35
|
+
const v = useChangeVersions(["dashboards", "action"]);
|
|
36
|
+
useQuery({
|
|
37
|
+
queryKey: ["dashboard", id, v],
|
|
38
|
+
queryFn: () => fetchDashboard(id),
|
|
39
|
+
placeholderData: (prev) => prev, // no flicker on refetch
|
|
40
|
+
});
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
See the `real-time-sync` skill for the full pattern and source catalog.
|
|
44
|
+
|
|
45
|
+
### 2. Action
|
|
46
|
+
|
|
47
|
+
Create an action in `actions/` using `defineAction`. This serves double duty: the agent calls it as a tool, and the framework auto-exposes it as an HTTP endpoint at `/_agent-native/actions/:name` for the UI to call. Set `http: { method: "GET" }` for read actions, leave default for writes, or set `http: false` for agent-only actions like `navigate` and `view-screen`.
|
|
48
|
+
|
|
49
|
+
### 3. Skills / Instructions
|
|
50
|
+
|
|
51
|
+
Update `AGENTS.md` and/or create a skill in `.agents/skills/` if the feature introduces patterns the agent needs to know. At minimum, add the new actions to the action table in the template's `AGENTS.md`.
|
|
52
|
+
|
|
53
|
+
### 4. Application State Sync
|
|
54
|
+
|
|
55
|
+
Expose navigation and selection state so the agent knows what the user is looking at. Write to the `navigation` app-state key on route changes. Update the `view-screen` action to fetch relevant data for the new feature. Add a `navigate` command if the agent needs to open the new view.
|
|
56
|
+
|
|
57
|
+
## Examples
|
|
58
|
+
|
|
59
|
+
### Adding "compose email" to a mail app
|
|
60
|
+
|
|
61
|
+
| Area | What to build |
|
|
62
|
+
| --------------- | ---------------------------------------------------------------------------------------- |
|
|
63
|
+
| UI | Compose panel with tabs, to/cc/bcc fields, body editor. Use `useActionQuery`/`useActionMutation` for data. |
|
|
64
|
+
| Action | `manage-draft` action (create/update/delete drafts), `send-email` action |
|
|
65
|
+
| Skills/AGENTS | Document compose state shape, draft lifecycle, action args in AGENTS.md |
|
|
66
|
+
| App-state sync | `compose-{id}` keys for each draft tab, `navigation` includes compose state |
|
|
67
|
+
|
|
68
|
+
### Adding "create form" to a forms app
|
|
69
|
+
|
|
70
|
+
| Area | What to build |
|
|
71
|
+
| --------------- | ---------------------------------------------------------------------------------------- |
|
|
72
|
+
| UI | Form builder page with drag-and-drop fields, preview, settings. Use `useActionQuery` for lists. |
|
|
73
|
+
| Action | `create-form` action, `update-form` action, `list-forms` action (GET) |
|
|
74
|
+
| Skills/AGENTS | Document form schema shape, field types, validation rules in AGENTS.md |
|
|
75
|
+
| App-state sync | `navigation` includes `{ view: "form-builder", formId: "..." }`, `view-screen` fetches form data |
|
|
76
|
+
|
|
77
|
+
### Adding "chart type" to an analytics app
|
|
78
|
+
|
|
79
|
+
| Area | What to build |
|
|
80
|
+
| --------------- | ---------------------------------------------------------------------------------------- |
|
|
81
|
+
| UI | New chart component, chart type selector in dashboard |
|
|
82
|
+
| Action | `create-chart` or `update-dashboard` action that sets chart type and config |
|
|
83
|
+
| Skills/AGENTS | Document supported chart types, config options, data requirements |
|
|
84
|
+
| App-state sync | `navigation` includes selected chart/dashboard, `view-screen` returns chart config |
|
|
85
|
+
|
|
86
|
+
## Adding a new route
|
|
87
|
+
|
|
88
|
+
Templates are single-page apps with client-side routing. The app shell (AgentSidebar + top-level nav) MUST persist across navigation — it is mounted once, either in `root.tsx` around `<Outlet />` or via a pathless `_app.tsx` layout route that all authed routes nest under.
|
|
89
|
+
|
|
90
|
+
**Never wrap each new route in its own `<AppLayout>` / `<Layout>`.** That causes React to unmount the entire app shell on every navigation, reloading the agent sidebar and destroying in-progress work.
|
|
91
|
+
|
|
92
|
+
- If the template has `<AppLayout>` in `root.tsx` — just render page content in your new route file, nothing else.
|
|
93
|
+
- If the template has `app/routes/_app.tsx` (pathless layout) — name your new route `_app.<segment>.tsx` to inherit the shell, or bare `<segment>.tsx` for public routes that should NOT have the shell.
|
|
94
|
+
- If a page needs per-route data (e.g. highlighting the active item in the sidebar), read it in the layout from `useParams()` / `useLocation()`. Don't pass it as a prop through every route file.
|
|
95
|
+
|
|
96
|
+
See the "Client-Side Routing" section in the root `CLAUDE.md` for full details.
|
|
97
|
+
|
|
98
|
+
## Anti-Patterns
|
|
99
|
+
|
|
100
|
+
- **Per-route `<AppLayout>` wrappers** — Every route file wraps its content in `<AppLayout>` or `<Layout>`. React sees a different component at the outlet on each nav and unmounts the whole shell, causing the agent sidebar to reload on every click. Mount the shell once above `<Outlet />` (root.tsx or `_app.tsx` pathless layout).
|
|
101
|
+
- **UI without actions** — The user can create forms but the agent cannot. The agent says "I don't have access to that" when it should be able to do it.
|
|
102
|
+
- **Actions without AGENTS.md** — The actions exist but the agent doesn't know about them because they're not documented. The agent reinvents solutions instead of using the actions.
|
|
103
|
+
- **Duplicate API routes** — Creating `/api/` routes for operations that actions already handle. Actions are auto-exposed as HTTP endpoints — use `useActionQuery`/`useActionMutation` instead.
|
|
104
|
+
- **Features without app-state** — The agent cannot see that the user is looking at a specific form, email, or chart. It asks "which one?" instead of acting on the current selection.
|
|
105
|
+
- **Actions without UI** — The agent can do something the user cannot. This is less common but still breaks parity.
|
|
106
|
+
|
|
107
|
+
## Verification
|
|
108
|
+
|
|
109
|
+
After completing all four areas, verify:
|
|
110
|
+
|
|
111
|
+
1. Can the user perform the operation from the UI?
|
|
112
|
+
2. Can the agent perform the same operation via actions?
|
|
113
|
+
3. Does `pnpm action view-screen` show the relevant state when the user is using the feature?
|
|
114
|
+
4. Can the agent navigate to the feature view via the `navigate` action?
|
|
115
|
+
5. Is the feature documented in AGENTS.md with action names and args?
|
|
116
|
+
|
|
117
|
+
## One more area — sharing
|
|
118
|
+
|
|
119
|
+
If the feature stores **user-authored resources** (documents, dashboards, forms, decks, etc.), make them ownable so they get private-by-default semantics and a share dialog for free. See the `sharing` skill.
|
|
120
|
+
|
|
121
|
+
TL;DR: spread `ownableColumns()` into the resource table, pair it with `createSharesTable(...)`, call `registerShareableResource(...)`, wrap list/read queries with `accessFilter`, guard writes with `assertAccess`, and drop `<ShareButton>` in the resource header. The `share-resource`, `unshare-resource`, `list-resource-shares`, and `set-resource-visibility` actions are auto-mounted framework-wide.
|
|
122
|
+
|
|
123
|
+
## Related Skills
|
|
124
|
+
|
|
125
|
+
- **sharing** — How to make a new resource ownable (private by default, share with users/orgs/public)
|
|
126
|
+
- **context-awareness** — How to expose UI state to the agent (area 4 in detail)
|
|
127
|
+
- **actions** — How to create actions with `defineAction` and the `http` option (area 2 in detail)
|
|
128
|
+
- **create-skill** — How to create skills for new patterns (area 3 in detail)
|
|
129
|
+
- **storing-data** — Where to store the feature's data
|
|
130
|
+
- **real-time-sync** — How the UI stays in sync when the agent writes data
|