@agent-native/core 0.92.12 → 0.93.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 +39 -0
- package/corpus/core/docs/content/automation-connectors.mdx +80 -0
- package/corpus/core/docs/content/extensions.mdx +8 -0
- package/corpus/core/docs/content/locales/ar-SA/extensions.mdx +8 -0
- package/corpus/core/docs/content/locales/ar-SA/messaging.mdx +84 -15
- package/corpus/core/docs/content/locales/ar-SA/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/ar-SA/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/de-DE/extensions.mdx +10 -0
- package/corpus/core/docs/content/locales/de-DE/messaging.mdx +92 -15
- package/corpus/core/docs/content/locales/de-DE/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/de-DE/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/es-ES/extensions.mdx +10 -0
- package/corpus/core/docs/content/locales/es-ES/messaging.mdx +91 -15
- package/corpus/core/docs/content/locales/es-ES/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/es-ES/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/fr-FR/extensions.mdx +10 -0
- package/corpus/core/docs/content/locales/fr-FR/messaging.mdx +91 -15
- package/corpus/core/docs/content/locales/fr-FR/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/fr-FR/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/hi-IN/extensions.mdx +8 -0
- package/corpus/core/docs/content/locales/hi-IN/messaging.mdx +81 -15
- package/corpus/core/docs/content/locales/hi-IN/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/hi-IN/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/ja-JP/extensions.mdx +9 -0
- package/corpus/core/docs/content/locales/ja-JP/messaging.mdx +81 -15
- package/corpus/core/docs/content/locales/ja-JP/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/ja-JP/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/ko-KR/extensions.mdx +8 -0
- package/corpus/core/docs/content/locales/ko-KR/messaging.mdx +80 -15
- package/corpus/core/docs/content/locales/ko-KR/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/ko-KR/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/pt-BR/extensions.mdx +9 -0
- package/corpus/core/docs/content/locales/pt-BR/messaging.mdx +88 -15
- package/corpus/core/docs/content/locales/pt-BR/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/pt-BR/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/zh-CN/extensions.mdx +6 -0
- package/corpus/core/docs/content/locales/zh-CN/messaging.mdx +78 -15
- package/corpus/core/docs/content/locales/zh-CN/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/zh-CN/template-design.mdx +1 -0
- package/corpus/core/docs/content/locales/zh-TW/extensions.mdx +6 -0
- package/corpus/core/docs/content/locales/zh-TW/messaging.mdx +78 -15
- package/corpus/core/docs/content/locales/zh-TW/template-clips.mdx +1 -0
- package/corpus/core/docs/content/locales/zh-TW/template-design.mdx +1 -0
- package/corpus/core/docs/content/messaging.mdx +227 -45
- package/corpus/core/docs/content/template-clips.mdx +3 -0
- package/corpus/core/docs/content/template-design.mdx +4 -0
- package/corpus/core/package.json +5 -1
- package/corpus/core/src/a2a/artifact-response.ts +131 -2
- package/corpus/core/src/a2a/client.ts +10 -0
- package/corpus/core/src/a2a/handlers.ts +40 -76
- package/corpus/core/src/a2a/types.ts +2 -0
- package/corpus/core/src/agent/durable-background.ts +24 -0
- package/corpus/core/src/agent/production-agent.ts +15 -3
- package/corpus/core/src/agent/run-manager.ts +130 -10
- package/corpus/core/src/agent/run-store.ts +225 -15
- package/corpus/core/src/agent/types.ts +23 -0
- package/corpus/core/src/audit/record.ts +31 -0
- package/corpus/core/src/audit/store.ts +69 -3
- package/corpus/core/src/audit/types.ts +13 -0
- package/corpus/core/src/automation/index.ts +802 -0
- package/corpus/core/src/cli/create.ts +12 -5
- package/corpus/core/src/cli/design-connect.ts +596 -36
- package/corpus/core/src/client/AgentPanel.tsx +51 -6
- package/corpus/core/src/client/AssistantChat.tsx +274 -147
- package/corpus/core/src/client/MultiTabAssistantChat.tsx +3 -0
- package/corpus/core/src/client/RunStuckBanner.tsx +69 -20
- package/corpus/core/src/client/agent-chat-adapter.ts +54 -5
- package/corpus/core/src/client/automation.ts +22 -0
- package/corpus/core/src/client/chat/run-recovery.tsx +67 -50
- package/corpus/core/src/client/composer/TiptapComposer.tsx +8 -0
- package/corpus/core/src/client/index.ts +30 -0
- package/corpus/core/src/client/integrations/api.ts +295 -0
- package/corpus/core/src/client/integrations/index.ts +26 -0
- package/corpus/core/src/client/transcription/use-live-transcription.ts +68 -5
- package/corpus/core/src/client/use-run-stuck-detection.ts +41 -3
- package/corpus/core/src/deploy/build.ts +59 -3
- package/corpus/core/src/deploy/workspace-deploy.ts +37 -2
- package/corpus/core/src/file-upload/types.ts +2 -0
- package/corpus/core/src/index.ts +37 -0
- package/corpus/core/src/integrations/a2a-continuations-store.ts +6 -4
- package/corpus/core/src/integrations/adapters/discord.ts +362 -0
- package/corpus/core/src/integrations/adapters/index.ts +29 -0
- package/corpus/core/src/integrations/adapters/microsoft-teams.ts +411 -0
- package/corpus/core/src/integrations/adapters/slack.ts +861 -27
- package/corpus/core/src/integrations/adapters/telegram.ts +54 -15
- package/corpus/core/src/integrations/adapters/whatsapp.ts +41 -17
- package/corpus/core/src/integrations/catalog.ts +571 -0
- package/corpus/core/src/integrations/controls-store.ts +187 -0
- package/corpus/core/src/integrations/index.ts +100 -0
- package/corpus/core/src/integrations/installations-store.ts +677 -0
- package/corpus/core/src/integrations/integration-memory.ts +187 -0
- package/corpus/core/src/integrations/pending-tasks-retry-job.ts +6 -6
- package/corpus/core/src/integrations/pending-tasks-store.ts +83 -5
- package/corpus/core/src/integrations/plugin.ts +685 -47
- package/corpus/core/src/integrations/scope-store.ts +498 -0
- package/corpus/core/src/integrations/slack-manifest.ts +78 -0
- package/corpus/core/src/integrations/slack-oauth.ts +343 -0
- package/corpus/core/src/integrations/types.ts +179 -0
- package/corpus/core/src/integrations/usage-budget-store.ts +906 -0
- package/corpus/core/src/integrations/webhook-handler.ts +562 -51
- package/corpus/core/src/jobs/scheduler.ts +100 -2
- package/corpus/core/src/jobs/tools.ts +45 -9
- package/corpus/core/src/provider-api/index.ts +72 -1
- package/corpus/core/src/resources/handlers.ts +88 -14
- package/corpus/core/src/resources/script-helpers.ts +36 -7
- package/corpus/core/src/resources/store.ts +59 -52
- package/corpus/core/src/scripts/call-agent.ts +107 -1
- package/corpus/core/src/server/agent-chat-plugin.ts +294 -119
- package/corpus/core/src/server/auth.ts +10 -14
- package/corpus/core/src/server/builder-design-systems.ts +16 -1
- package/corpus/core/src/server/edge.ts +18 -0
- package/corpus/core/src/server/index.ts +26 -0
- package/corpus/core/src/server/request-context.ts +18 -0
- package/corpus/core/src/server/social-og-image.ts +3 -2
- package/corpus/core/src/styles/agent-native.css +62 -44
- package/corpus/core/src/templates/default/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/core/src/templates/default/AGENTS.md +7 -3
- package/corpus/core/src/templates/workspace-core/.agents/skills/authentication/SKILL.md +1 -1
- package/corpus/core/src/templates/workspace-core/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/core/src/templates/workspace-core/.agents/skills/extension-points/SKILL.md +6 -3
- package/corpus/core/src/templates/workspace-core/.agents/skills/extensions/SKILL.md +25 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/integration-webhooks/SKILL.md +15 -0
- package/corpus/core/src/templates/workspace-core/AGENTS.md +3 -2
- package/corpus/core/src/usage/store.ts +37 -2
- package/corpus/templates/analytics/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/analytics/.agents/skills/provider-api/SKILL.md +23 -0
- package/corpus/templates/analytics/.builder/skills/provider-api/SKILL.md +15 -0
- package/corpus/templates/analytics/actions/save-monitor.ts +25 -2
- package/corpus/templates/analytics/app/lib/data-sources.ts +28 -0
- package/corpus/templates/analytics/changelog/2026-07-10-agent-created-uptime-monitors-now-return-a-direct-link-to-th.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-10-dashboard-email-reports-still-arrive-when-screenshot-capture-temporarily-fails.md +6 -0
- package/corpus/templates/analytics/server/jobs/dashboard-report.ts +3 -7
- package/corpus/templates/analytics/server/lib/credential-keys.ts +12 -0
- package/corpus/templates/analytics/server/lib/dashboard-report.ts +5 -1
- package/corpus/templates/analytics/server/lib/provider-credentials.ts +2 -0
- package/corpus/templates/analytics/server/routes/api/test-connection.post.ts +16 -0
- package/corpus/templates/assets/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/brain/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/calendar/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/calendar/app/components/calendar/CommandPalette.tsx +98 -108
- package/corpus/templates/calendar/app/components/calendar/EventAttendeesSection.tsx +97 -90
- package/corpus/templates/calendar/changelog/2026-07-10-event-guest-details-and-option-menus-now-use-valid-accessibl.md +6 -0
- package/corpus/templates/calendar/changelog/2026-07-10-natural-language-event-phrases-stay-available-as-quick-creat.md +6 -0
- package/corpus/templates/chat/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/chat/changelog/2026-07-10-chat-now-makes-ai-connection-setup-clear-without-shifting-th.md +6 -0
- package/corpus/templates/clips/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/clips/.agents/skills/recording/SKILL.md +17 -1
- package/corpus/templates/clips/.agents/skills/video-sharing/SKILL.md +8 -0
- package/corpus/templates/clips/AGENTS.md +8 -3
- package/corpus/templates/clips/actions/finalize-recording.ts +63 -23
- package/corpus/templates/clips/actions/get-recording-player-data.ts +6 -2
- package/corpus/templates/clips/actions/lib/ensure-seekable-video.ts +72 -9
- package/corpus/templates/clips/actions/list-recordings.ts +19 -3
- package/corpus/templates/clips/actions/navigate.ts +2 -0
- package/corpus/templates/clips/actions/reprocess-recording.ts +20 -6
- package/corpus/templates/clips/actions/request-transcript.ts +16 -31
- package/corpus/templates/clips/actions/view-screen.ts +57 -5
- package/corpus/templates/clips/app/components/layout/Header.tsx +1 -0
- package/corpus/templates/clips/app/components/library/empty-state.tsx +2 -0
- package/corpus/templates/clips/app/components/library/library-grid.tsx +69 -42
- package/corpus/templates/clips/app/components/library/library-layout.tsx +15 -1
- package/corpus/templates/clips/app/components/library/recording-card.tsx +81 -68
- package/corpus/templates/clips/app/components/library/search-bar.tsx +4 -3
- package/corpus/templates/clips/app/components/player/delete-recording-menu.tsx +9 -3
- package/corpus/templates/clips/app/components/player/share-dialog.tsx +1 -1
- package/corpus/templates/clips/app/hooks/use-library.ts +1 -1
- package/corpus/templates/clips/app/hooks/use-navigation-state.ts +10 -2
- package/corpus/templates/clips/app/i18n/ar-SA.ts +7 -1
- package/corpus/templates/clips/app/i18n/de-DE.ts +7 -1
- package/corpus/templates/clips/app/i18n/en-US.ts +7 -1
- package/corpus/templates/clips/app/i18n/es-ES.ts +7 -1
- package/corpus/templates/clips/app/i18n/fr-FR.ts +7 -1
- package/corpus/templates/clips/app/i18n/hi-IN.ts +7 -1
- package/corpus/templates/clips/app/i18n/ja-JP.ts +7 -1
- package/corpus/templates/clips/app/i18n/ko-KR.ts +7 -1
- package/corpus/templates/clips/app/i18n/pt-BR.ts +7 -1
- package/corpus/templates/clips/app/i18n/zh-CN.ts +8 -1
- package/corpus/templates/clips/app/i18n/zh-TW.ts +8 -1
- package/corpus/templates/clips/app/lib/recording-visibility.ts +70 -0
- package/corpus/templates/clips/app/routes/_app.shared.tsx +20 -0
- package/corpus/templates/clips/app/routes/download.tsx +24 -8
- package/corpus/templates/clips/app/routes/r.$recordingId.tsx +115 -2
- package/corpus/templates/clips/app/routes/record.tsx +62 -0
- package/corpus/templates/clips/app/routes/share.$shareId.tsx +25 -16
- package/corpus/templates/clips/changelog/2026-07-10-clips-desktop-is-now-available-for-linux-with-appimage-debia.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-clips-downloads-updates-sooner-in-the-background-and-offers-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-clips-shared-with-you-now-appear-in-a-searchable-shared-with.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-clips-with-missing-mobile-video-frames-can-be-repaired-witho.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-mobile-camera-recordings-pause-while-backgrounded.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-mp4-downloads-now-show-progress-immediately-after-the-option.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-recording-pages-now-open-as-soon-as-you-stop-with-a-share-li.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-recordings-now-seek-smoothly-downloads-use-the-correct-file-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-10-s3-compatible-storage-now-saves-hosted-recordings-without-re.md +6 -0
- package/corpus/templates/clips/desktop/README.md +22 -6
- package/corpus/templates/clips/desktop/package.json +1 -1
- package/corpus/templates/clips/desktop/src/app.tsx +32 -19
- package/corpus/templates/clips/desktop/src/components/ReadinessPanel.tsx +15 -9
- package/corpus/templates/clips/desktop/src/lib/finalization-guard.ts +22 -0
- package/corpus/templates/clips/desktop/src/lib/permissions.ts +3 -1
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +97 -120
- package/corpus/templates/clips/desktop/src/lib/updater.ts +26 -4
- package/corpus/templates/clips/desktop/src/overlays/finalizing.tsx +4 -8
- package/corpus/templates/clips/desktop/src-tauri/Cargo.toml +1 -1
- package/corpus/templates/clips/desktop/src-tauri/src/clips/mod.rs +2 -2
- package/corpus/templates/clips/desktop/src-tauri/src/permission_status.rs +11 -7
- package/corpus/templates/clips/desktop/src-tauri/tauri.linux.conf.json +11 -0
- package/corpus/templates/clips/netlify.toml +3 -0
- package/corpus/templates/clips/server/lib/post-finalize-dispatch.ts +106 -0
- package/corpus/templates/clips/server/lib/public-agent-context.ts +9 -1
- package/corpus/templates/clips/server/lib/resumable-upload-provider.ts +52 -0
- package/corpus/templates/clips/server/lib/s3-upload-provider.ts +433 -85
- package/corpus/templates/clips/server/lib/video-remux.ts +114 -0
- package/corpus/templates/clips/server/routes/api/_agent-native-background/post-finalize-worker.post.ts +109 -0
- package/corpus/templates/clips/server/routes/api/clips-updater.json.get.ts +22 -11
- package/corpus/templates/clips/server/routes/api/public-recording.get.ts +4 -2
- package/corpus/templates/clips/server/routes/api/uploads/[recordingId]/abort.post.ts +47 -5
- package/corpus/templates/clips/server/routes/api/uploads/[recordingId]/chunk.post.ts +10 -2
- package/corpus/templates/clips/shared/share-loader-response.ts +12 -0
- package/corpus/templates/clips/shared/transcript-status.ts +40 -0
- package/corpus/templates/content/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/content/.agents/skills/content/SKILL.md +57 -5
- package/corpus/templates/content/AGENTS.md +65 -55
- package/corpus/templates/content/actions/_builder-cms-read-client.ts +10 -16
- package/corpus/templates/content/actions/_database-source-utils.ts +58 -11
- package/corpus/templates/content/actions/_property-utils.ts +30 -2
- package/corpus/templates/content/actions/add-content-database-source-field-property.ts +312 -114
- package/corpus/templates/content/actions/submit-content-database-form.ts +497 -0
- package/corpus/templates/content/actions/update-content-database-view.ts +8 -1
- package/corpus/templates/content/actions/view-screen.ts +4 -1
- package/corpus/templates/content/agent-native.app-skill.json +1 -1
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +250 -64
- package/corpus/templates/content/app/components/editor/database/FormView.tsx +460 -0
- package/corpus/templates/content/app/components/editor/database/navigation-state.ts +3 -0
- package/corpus/templates/content/app/components/editor/database/settings.tsx +30 -37
- package/corpus/templates/content/app/components/editor/database/shared.tsx +2 -0
- package/corpus/templates/content/app/components/editor/database/view-config.ts +29 -1
- package/corpus/templates/content/app/components/ui/textarea.tsx +1 -0
- package/corpus/templates/content/app/hooks/use-content-database.ts +22 -0
- package/corpus/templates/content/app/i18n/zh-TW.ts +21 -0
- package/corpus/templates/content/app/i18n-data.ts +225 -0
- package/corpus/templates/content/changelog/2026-07-10-builder-backed-properties-now-load-current-source-values-as-.md +6 -0
- package/corpus/templates/content/changelog/2026-07-10-builder-database-refreshes-now-stay-explicit-and-accurate.md +6 -0
- package/corpus/templates/content/changelog/2026-07-10-database-form-views-now-collect-ordered-required-answers-and.md +6 -0
- package/corpus/templates/content/changelog/2026-07-10-database-tables-now-use-a-quieter-more-compact-layout-with-c.md +6 -0
- package/corpus/templates/content/changelog/2026-07-10-slack-intake-routes-to-content-database-forms.md +6 -0
- package/corpus/templates/content/parity/matrix.md +1 -0
- package/corpus/templates/content/parity/matrix.ts +18 -0
- package/corpus/templates/content/shared/api.ts +27 -1
- package/corpus/templates/content/shared/database-form.ts +53 -0
- package/corpus/templates/design/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/design/.agents/skills/design-generation/SKILL.md +26 -0
- package/corpus/templates/design/.agents/skills/design-systems/SKILL.md +85 -12
- package/corpus/templates/design/AGENTS.md +72 -18
- package/corpus/templates/design/DESIGN.md +1 -1
- package/corpus/templates/design/DEVELOPING.md +1 -1
- package/corpus/templates/design/FIGMA_INTEROPERABILITY.md +116 -0
- package/corpus/templates/design/actions/create-design-from-template.ts +220 -0
- package/corpus/templates/design/actions/create-design-system.ts +92 -16
- package/corpus/templates/design/actions/delete-design-template.ts +28 -0
- package/corpus/templates/design/actions/delete-file.ts +7 -0
- package/corpus/templates/design/actions/edit-design.ts +3 -0
- package/corpus/templates/design/actions/export-design-as-figma-svg.ts +137 -5
- package/corpus/templates/design/actions/export-pdf.ts +1 -1
- package/corpus/templates/design/actions/generate-design.ts +3 -0
- package/corpus/templates/design/actions/get-design-snapshot.ts +9 -0
- package/corpus/templates/design/actions/get-figma-connection-status.ts +26 -0
- package/corpus/templates/design/actions/get-figma-design-context.ts +138 -0
- package/corpus/templates/design/actions/get-figma-styles.ts +2 -2
- package/corpus/templates/design/actions/import-figma-clipboard.ts +112 -16
- package/corpus/templates/design/actions/import-figma-frame.ts +15 -4
- package/corpus/templates/design/actions/index-design-system-with-builder.ts +4 -0
- package/corpus/templates/design/actions/list-design-templates.ts +118 -0
- package/corpus/templates/design/actions/navigate.ts +16 -2
- package/corpus/templates/design/actions/provider-api-request.ts +11 -1
- package/corpus/templates/design/actions/save-design-as-template.ts +156 -0
- package/corpus/templates/design/actions/set-active-breakpoint.ts +13 -4
- package/corpus/templates/design/actions/take-design-screenshot.ts +73 -3
- package/corpus/templates/design/actions/update-file.ts +39 -22
- package/corpus/templates/design/actions/view-screen.ts +36 -1
- package/corpus/templates/design/actions/write-local-file.ts +50 -38
- package/corpus/templates/design/app/components/design/AutoLayoutSuggestionDialog.tsx +151 -0
- package/corpus/templates/design/app/components/design/CanvasContextMenu.tsx +20 -0
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +251 -22
- package/corpus/templates/design/app/components/design/DesignEditorSkeleton.tsx +3 -3
- package/corpus/templates/design/app/components/design/DesignImportPanel.tsx +384 -9
- package/corpus/templates/design/app/components/design/EditPanel.tsx +105 -32
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +58 -28
- package/corpus/templates/design/app/components/design/TweaksPanel.tsx +6 -0
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +539 -53
- package/corpus/templates/design/app/components/design/bridge/embedded-wheel.bridge.ts +40 -0
- package/corpus/templates/design/app/components/design/code-workbench/CodeWorkbench.tsx +1 -0
- package/corpus/templates/design/app/components/design/code-workbench/explorer/ExplorerView.tsx +1 -0
- package/corpus/templates/design/app/components/design/code-workbench/explorer/FileTree.tsx +5 -1
- package/corpus/templates/design/app/components/design/code-workbench/workspace/create-providers.ts +2 -0
- package/corpus/templates/design/app/components/design/code-workbench/workspace/localhost-provider.ts +3 -1
- package/corpus/templates/design/app/components/design/code-workbench/workspace/types.ts +2 -0
- package/corpus/templates/design/app/components/design/edit-panel/element-identity.ts +19 -0
- package/corpus/templates/design/app/components/design/edit-panel/frame-presets-panel.tsx +1 -0
- package/corpus/templates/design/app/components/design/edit-panel/interaction-state-helpers.ts +27 -0
- package/corpus/templates/design/app/components/design/inspector/InteractionStatePanel.tsx +137 -81
- package/corpus/templates/design/app/components/design/inspector/frame-size-presets.ts +25 -5
- package/corpus/templates/design/app/components/design/multi-screen/chrome-transitions.ts +1 -1
- package/corpus/templates/design/app/components/design/multi-screen/frame-geometry.ts +220 -3
- package/corpus/templates/design/app/components/design/multi-screen/overview-layout.ts +13 -0
- package/corpus/templates/design/app/components/design/multi-screen/types.ts +22 -1
- package/corpus/templates/design/app/components/design/types.ts +4 -0
- package/corpus/templates/design/app/components/design-system/ProductionDesignSystemShowcase.tsx +208 -0
- package/corpus/templates/design/app/components/editor/FigmaLinkComposerBubble.tsx +321 -0
- package/corpus/templates/design/app/components/editor/PromptDialog.tsx +24 -4
- package/corpus/templates/design/app/components/layout/Layout.tsx +16 -2
- package/corpus/templates/design/app/components/layout/Sidebar.tsx +2 -0
- package/corpus/templates/design/app/components/templates/TemplatePreview.tsx +72 -0
- package/corpus/templates/design/app/global.css +2 -35
- package/corpus/templates/design/app/hooks/use-navigation-state.ts +10 -0
- package/corpus/templates/design/app/i18n/zh-TW.ts +127 -5
- package/corpus/templates/design/app/i18n-breakpoints.ts +209 -0
- package/corpus/templates/design/app/i18n-data.ts +1317 -59
- package/corpus/templates/design/app/i18n-template-feature.ts +458 -0
- package/corpus/templates/design/app/lib/design-clipboard.ts +202 -0
- package/corpus/templates/design/app/lib/design-file-upload.ts +87 -0
- package/corpus/templates/design/app/lib/design-import.ts +168 -11
- package/corpus/templates/design/app/lib/desktop-design-preview.ts +423 -0
- package/corpus/templates/design/app/lib/figma-clipboard.ts +74 -8
- package/corpus/templates/design/app/lib/figma-connection.ts +161 -0
- package/corpus/templates/design/app/lib/figma-svg-copy.ts +814 -22
- package/corpus/templates/design/app/lib/figma-url.ts +77 -0
- package/corpus/templates/design/app/lib/pending-generation.ts +35 -0
- package/corpus/templates/design/app/pages/DesignSystems.tsx +236 -177
- package/corpus/templates/design/app/pages/Index.tsx +38 -0
- package/corpus/templates/design/app/pages/Templates.tsx +498 -0
- package/corpus/templates/design/app/pages/design-editor/auto-layout-suggestion.ts +328 -0
- package/corpus/templates/design/app/pages/design-editor/clone-idrefs.ts +113 -0
- package/corpus/templates/design/app/pages/design-editor/created-screen-navigation.ts +55 -0
- package/corpus/templates/design/app/pages/design-editor/editor-session.ts +32 -0
- package/corpus/templates/design/app/pages/design-editor/editor-state.ts +49 -2
- package/corpus/templates/design/app/pages/design-editor/export-capture.ts +296 -0
- package/corpus/templates/design/app/pages/design-editor/history.ts +101 -2
- package/corpus/templates/design/app/pages/design-editor/layout-operations.ts +28 -1
- package/corpus/templates/design/app/pages/design-editor/overview-camera.ts +34 -0
- package/corpus/templates/design/app/pages/design-editor/pending-edits.ts +202 -6
- package/corpus/templates/design/app/pages/design-editor/pending-structure-verification.ts +92 -0
- package/corpus/templates/design/app/pages/design-editor/save-failure.ts +58 -0
- package/corpus/templates/design/app/routes/templates.tsx +4 -6
- package/corpus/templates/design/changelog/2026-07-10-app-workspaces-now-use-clean-borderless-main-surfaces-throug.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-ask-chat-what-s-in-a-figma-file-or-frame-structure-screensho.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-canvas-edits-now-reject-malformed-html-before-it-can-corrupt.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-complex-designs-now-export-as-valid-secure-svgs-and-crisp-ra.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-complex-figma-masks-arcs-rich-text-transformed-images-and-ad.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-copied-layers-paste-across-designs-and-browser-tabs.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-copy-and-download-editable-figma-svg.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-copying-design-text-now-pastes-readable-text-into-other-apps.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-deleted-screens-can-be-restored-with-undo-and-removed-again-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-design-changes-now-save-before-switching-apps-and-retry-when.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-design-stays-usable-on-phones-by-keeping-editor-panels-and-f.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-download-all-screens-as-one-multi-page-pdf-from-the-overview.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-duplicated-layers-now-keep-labels-aria-relationships-fragmen.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fig-import-results-stay-compact.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-figma-imports-now-load-real-fonts-fix-rotated-gradient-dashe.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-figma-links-in-chat-and-the-import-tab-now-offer-secure-one-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fixed-cmd-z-not-restoring-content-after-an-agent-driven-desi.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fixed-download-pdf-being-unreachable-from-the-export-panel-e.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fixed-dragging-a-layer-out-of-an-auto-layout-row-column-no-l.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fixed-figma-svg-export-text-wrapping-sizing-and-inner-layer.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fixed-hiding-or-locking-one-layer-no-longer-hides-or-blocks-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fixed-png-screenshots-of-tall-screens-being-cropped-to-one-v.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-fixed-png-svg-exports-capturing-broken-layout-when-webfonts-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-frame-tool-now-offers-standard-ad-unit-size-presets-medium-r.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-full-view-controls-stay-within-their-frame-instead-of-coveri.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-hover-focus-focus-visible-pressed-and-disabled-states-now-pr.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-layer-drops-now-land-in-the-intended-grid-row-stay-visually-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-local-code-workspaces-now-keep-unsaved-edits-across-panel-sw.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-local-visual-editing-now-keeps-authenticated-sessions-shared.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-long-running-agent-work-no-longer-shows-a-premature-stuck-wa.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-managed-figma-connections-are-recognized-automatically.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-new-designs-can-open-directly-in-the-editor-without-a-pr.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-new-screens-are-selected-and-revealed-immediately.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-new-text-layers-undo-as-one-safe-creation.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-preview-and-apply-inferred-auto-layout-without-changing-yo.md +5 -0
- package/corpus/templates/design/changelog/2026-07-10-print-pdf-exports-and-paper-size-presets-letter-a4-now-match.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-responsive-frame-editing.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-reusable-design-templates.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-screen-overview-frames-now-use-a-clearer-interact-action-wit.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-start-designs-from-source-linked-material-3-carbon-or-primer.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-tweaks-guidance.md +6 -0
- package/corpus/templates/design/changelog/2026-07-10-uploaded-fig-files-can-now-become-editable-design-screens-wi.md +6 -0
- package/corpus/templates/design/e2e/helpers.ts +3 -3
- package/corpus/templates/design/package.json +2 -0
- package/corpus/templates/design/scripts/qa-figma-stress-import.ts +96 -0
- package/corpus/templates/design/server/db/index.ts +10 -0
- package/corpus/templates/design/server/db/schema.ts +44 -0
- package/corpus/templates/design/server/handlers/import-design-file.ts +114 -80
- package/corpus/templates/design/server/handlers/index-design-system-with-builder.ts +19 -6
- package/corpus/templates/design/server/lib/design-export.ts +240 -3
- package/corpus/templates/design/server/lib/design-template-data.ts +89 -0
- package/corpus/templates/design/server/lib/design-to-figma-svg.ts +250 -26
- package/corpus/templates/design/server/lib/fig-file-decoder.ts +839 -0
- package/corpus/templates/design/server/lib/fig-file-import.ts +287 -0
- package/corpus/templates/design/server/lib/fig-file-limits.ts +3 -0
- package/corpus/templates/design/server/lib/fig-file-to-html.ts +2568 -0
- package/corpus/templates/design/server/lib/figma-design-context.ts +359 -0
- package/corpus/templates/design/server/lib/figma-node-import.ts +478 -22
- package/corpus/templates/design/server/lib/figma-node-to-html.ts +554 -29
- package/corpus/templates/design/server/lib/local-figma-qa-upload.ts +112 -0
- package/corpus/templates/design/server/lib/verify-write-grant.ts +16 -2
- package/corpus/templates/design/server/lib/visible-clipboard-html.ts +13 -3
- package/corpus/templates/design/server/plugins/agent-chat.ts +7 -0
- package/corpus/templates/design/server/plugins/db.ts +42 -0
- package/corpus/templates/design/server/plugins/local-figma-qa-upload.ts +7 -0
- package/corpus/templates/design/server/register-secrets.ts +8 -8
- package/corpus/templates/design/server/routes/api/qa-figma-import-assets/[assetId].get.ts +46 -0
- package/corpus/templates/design/server/source-workspace.ts +104 -12
- package/corpus/templates/design/shared/code-layer.ts +105 -28
- package/corpus/templates/design/shared/design-system-templates.ts +301 -0
- package/corpus/templates/design/shared/design-template-presets.ts +195 -0
- package/corpus/templates/design/shared/figma-url.ts +8 -0
- package/corpus/templates/design/shared/html-integrity.ts +306 -0
- package/corpus/templates/design/shared/interaction-states.ts +318 -23
- package/corpus/templates/design/shared/locked-layers.ts +151 -0
- package/corpus/templates/dispatch/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/dispatch/app/i18n/zh-TW.ts +48 -0
- package/corpus/templates/dispatch/app/i18n-data.ts +536 -1
- package/corpus/templates/dispatch/changelog/2026-07-10-connect-slack-workspaces-with-oauth-and-manage-channel-ident.md +6 -0
- package/corpus/templates/dispatch/changelog/2026-07-10-microsoft-teams-bots-and-discord-slash-commands-can-now-conn.md +6 -0
- package/corpus/templates/dispatch/changelog/2026-07-10-slack-and-telegram-now-route-uptime-monitor-requests-to-anal.md +6 -0
- package/corpus/templates/forms/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/forms/.agents/skills/form-publishing/SKILL.md +7 -0
- package/corpus/templates/forms/AGENTS.md +4 -0
- package/corpus/templates/forms/actions/create-form.ts +44 -7
- package/corpus/templates/forms/actions/lib/assert-publishable-form.ts +38 -0
- package/corpus/templates/forms/actions/patch-form-fields.ts +4 -0
- package/corpus/templates/forms/actions/update-form.ts +2 -36
- package/corpus/templates/forms/app/i18n/ar-SA.ts +3 -0
- package/corpus/templates/forms/app/i18n/de-DE.ts +3 -0
- package/corpus/templates/forms/app/i18n/en-US.ts +3 -0
- package/corpus/templates/forms/app/i18n/es-ES.ts +3 -0
- package/corpus/templates/forms/app/i18n/fr-FR.ts +3 -0
- package/corpus/templates/forms/app/i18n/hi-IN.ts +3 -0
- package/corpus/templates/forms/app/i18n/ja-JP.ts +3 -0
- package/corpus/templates/forms/app/i18n/ko-KR.ts +3 -0
- package/corpus/templates/forms/app/i18n/pt-BR.ts +3 -0
- package/corpus/templates/forms/app/i18n/zh-CN.ts +2 -0
- package/corpus/templates/forms/app/i18n/zh-TW.ts +3 -0
- package/corpus/templates/forms/app/pages/FormBuilderPage.tsx +17 -0
- package/corpus/templates/forms/changelog/2026-07-10-agent-created-published-forms-now-return-the-anonymous-publi.md +6 -0
- package/corpus/templates/forms/changelog/2026-07-10-published-forms-can-no-longer-be-edited-into-an-unusable-emp.md +6 -0
- package/corpus/templates/forms/server/handlers/submissions.ts +4 -3
- package/corpus/templates/forms/server/plugins/agent-chat.ts +1 -0
- package/corpus/templates/forms/shared/types.ts +5 -0
- package/corpus/templates/mail/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/mail/app/components/layout/AppLayout.tsx +2 -2
- package/corpus/templates/mail/changelog/2026-07-10-mail-navigation-now-uses-a-clean-borderless-drawer.md +6 -0
- package/corpus/templates/plan/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/corpus/templates/plan/app/lib/plan-local-bridge.ts +4 -1
- package/corpus/templates/plan/changelog/2026-07-10-local-plans-now-keep-valid-content-visible-when-one-generate.md +6 -0
- package/corpus/templates/plan/server/lib/local-plan-files.ts +4 -1
- package/corpus/templates/slides/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/dist/a2a/artifact-response.d.ts.map +1 -1
- package/dist/a2a/artifact-response.js +88 -2
- package/dist/a2a/artifact-response.js.map +1 -1
- package/dist/a2a/client.d.ts +9 -0
- package/dist/a2a/client.d.ts.map +1 -1
- package/dist/a2a/client.js +1 -0
- package/dist/a2a/client.js.map +1 -1
- package/dist/a2a/handlers.d.ts.map +1 -1
- package/dist/a2a/handlers.js +24 -69
- package/dist/a2a/handlers.js.map +1 -1
- package/dist/a2a/types.d.ts +2 -0
- package/dist/a2a/types.d.ts.map +1 -1
- package/dist/a2a/types.js.map +1 -1
- package/dist/agent/durable-background.d.ts +11 -0
- package/dist/agent/durable-background.d.ts.map +1 -1
- package/dist/agent/durable-background.js +17 -0
- package/dist/agent/durable-background.js.map +1 -1
- package/dist/agent/production-agent.d.ts +2 -2
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +15 -5
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-manager.d.ts +44 -2
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +90 -9
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/run-store.d.ts +109 -0
- package/dist/agent/run-store.d.ts.map +1 -1
- package/dist/agent/run-store.js +206 -15
- package/dist/agent/run-store.js.map +1 -1
- package/dist/agent/types.d.ts +22 -0
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/audit/record.d.ts.map +1 -1
- package/dist/audit/record.js +29 -0
- package/dist/audit/record.js.map +1 -1
- package/dist/audit/store.d.ts.map +1 -1
- package/dist/audit/store.js +62 -3
- package/dist/audit/store.js.map +1 -1
- package/dist/audit/types.d.ts +13 -0
- package/dist/audit/types.d.ts.map +1 -1
- package/dist/audit/types.js.map +1 -1
- package/dist/automation/index.d.ts +193 -0
- package/dist/automation/index.d.ts.map +1 -0
- package/dist/automation/index.js +464 -0
- package/dist/automation/index.js.map +1 -0
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +10 -3
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/design-connect.d.ts.map +1 -1
- package/dist/cli/design-connect.js +492 -35
- package/dist/cli/design-connect.js.map +1 -1
- package/dist/client/AgentPanel.d.ts +7 -1
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +32 -8
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/AssistantChat.d.ts +15 -0
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +115 -47
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/MultiTabAssistantChat.d.ts.map +1 -1
- package/dist/client/MultiTabAssistantChat.js +1 -1
- package/dist/client/MultiTabAssistantChat.js.map +1 -1
- package/dist/client/RunStuckBanner.d.ts +14 -1
- package/dist/client/RunStuckBanner.d.ts.map +1 -1
- package/dist/client/RunStuckBanner.js +35 -7
- package/dist/client/RunStuckBanner.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts +4 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +49 -4
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/automation.d.ts +14 -0
- package/dist/client/automation.d.ts.map +1 -0
- package/dist/client/automation.js +9 -0
- package/dist/client/automation.js.map +1 -0
- package/dist/client/chat/run-recovery.d.ts +4 -0
- package/dist/client/chat/run-recovery.d.ts.map +1 -1
- package/dist/client/chat/run-recovery.js +12 -10
- package/dist/client/chat/run-recovery.js.map +1 -1
- package/dist/client/composer/TiptapComposer.d.ts.map +1 -1
- package/dist/client/composer/TiptapComposer.js +8 -0
- package/dist/client/composer/TiptapComposer.js.map +1 -1
- package/dist/client/index.d.ts +2 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +2 -0
- package/dist/client/index.js.map +1 -1
- package/dist/client/integrations/api.d.ts +115 -0
- package/dist/client/integrations/api.d.ts.map +1 -0
- package/dist/client/integrations/api.js +123 -0
- package/dist/client/integrations/api.js.map +1 -0
- package/dist/client/integrations/index.d.ts +1 -0
- package/dist/client/integrations/index.d.ts.map +1 -1
- package/dist/client/integrations/index.js +1 -0
- package/dist/client/integrations/index.js.map +1 -1
- package/dist/client/transcription/use-live-transcription.d.ts.map +1 -1
- package/dist/client/transcription/use-live-transcription.js +59 -5
- package/dist/client/transcription/use-live-transcription.js.map +1 -1
- package/dist/client/use-run-stuck-detection.d.ts +16 -1
- package/dist/client/use-run-stuck-detection.d.ts.map +1 -1
- package/dist/client/use-run-stuck-detection.js +23 -4
- package/dist/client/use-run-stuck-detection.js.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/deploy/build.d.ts.map +1 -1
- package/dist/deploy/build.js +49 -4
- package/dist/deploy/build.js.map +1 -1
- package/dist/deploy/workspace-deploy.d.ts.map +1 -1
- package/dist/deploy/workspace-deploy.js +31 -2
- package/dist/deploy/workspace-deploy.js.map +1 -1
- package/dist/file-upload/types.d.ts +2 -0
- package/dist/file-upload/types.d.ts.map +1 -1
- package/dist/file-upload/types.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/integrations/a2a-continuations-store.d.ts.map +1 -1
- package/dist/integrations/a2a-continuations-store.js +6 -4
- package/dist/integrations/a2a-continuations-store.js.map +1 -1
- package/dist/integrations/adapters/discord.d.ts +3 -0
- package/dist/integrations/adapters/discord.d.ts.map +1 -0
- package/dist/integrations/adapters/discord.js +261 -0
- package/dist/integrations/adapters/discord.js.map +1 -0
- package/dist/integrations/adapters/index.d.ts +4 -0
- package/dist/integrations/adapters/index.d.ts.map +1 -0
- package/dist/integrations/adapters/index.js +26 -0
- package/dist/integrations/adapters/index.js.map +1 -0
- package/dist/integrations/adapters/microsoft-teams.d.ts +5 -0
- package/dist/integrations/adapters/microsoft-teams.d.ts.map +1 -0
- package/dist/integrations/adapters/microsoft-teams.js +295 -0
- package/dist/integrations/adapters/microsoft-teams.js.map +1 -0
- package/dist/integrations/adapters/slack.d.ts +8 -2
- package/dist/integrations/adapters/slack.d.ts.map +1 -1
- package/dist/integrations/adapters/slack.js +736 -27
- package/dist/integrations/adapters/slack.js.map +1 -1
- package/dist/integrations/adapters/telegram.d.ts +0 -2
- package/dist/integrations/adapters/telegram.d.ts.map +1 -1
- package/dist/integrations/adapters/telegram.js +49 -15
- package/dist/integrations/adapters/telegram.js.map +1 -1
- package/dist/integrations/adapters/whatsapp.d.ts +0 -2
- package/dist/integrations/adapters/whatsapp.d.ts.map +1 -1
- package/dist/integrations/adapters/whatsapp.js +40 -17
- package/dist/integrations/adapters/whatsapp.js.map +1 -1
- package/dist/integrations/catalog.d.ts +75 -0
- package/dist/integrations/catalog.d.ts.map +1 -0
- package/dist/integrations/catalog.js +451 -0
- package/dist/integrations/catalog.js.map +1 -0
- package/dist/integrations/controls-store.d.ts +44 -0
- package/dist/integrations/controls-store.d.ts.map +1 -0
- package/dist/integrations/controls-store.js +129 -0
- package/dist/integrations/controls-store.js.map +1 -0
- package/dist/integrations/index.d.ts +13 -1
- package/dist/integrations/index.d.ts.map +1 -1
- package/dist/integrations/index.js +9 -0
- package/dist/integrations/index.js.map +1 -1
- package/dist/integrations/installations-store.d.ts +112 -0
- package/dist/integrations/installations-store.d.ts.map +1 -0
- package/dist/integrations/installations-store.js +493 -0
- package/dist/integrations/installations-store.js.map +1 -0
- package/dist/integrations/integration-memory.d.ts +24 -0
- package/dist/integrations/integration-memory.d.ts.map +1 -0
- package/dist/integrations/integration-memory.js +136 -0
- package/dist/integrations/integration-memory.js.map +1 -0
- package/dist/integrations/pending-tasks-retry-job.d.ts.map +1 -1
- package/dist/integrations/pending-tasks-retry-job.js +6 -5
- package/dist/integrations/pending-tasks-retry-job.js.map +1 -1
- package/dist/integrations/pending-tasks-store.d.ts +17 -0
- package/dist/integrations/pending-tasks-store.d.ts.map +1 -1
- package/dist/integrations/pending-tasks-store.js +71 -5
- package/dist/integrations/pending-tasks-store.js.map +1 -1
- package/dist/integrations/plugin.d.ts.map +1 -1
- package/dist/integrations/plugin.js +520 -35
- package/dist/integrations/plugin.js.map +1 -1
- package/dist/integrations/scope-store.d.ts +65 -0
- package/dist/integrations/scope-store.d.ts.map +1 -0
- package/dist/integrations/scope-store.js +361 -0
- package/dist/integrations/scope-store.js.map +1 -0
- package/dist/integrations/slack-manifest.d.ts +66 -0
- package/dist/integrations/slack-manifest.d.ts.map +1 -0
- package/dist/integrations/slack-manifest.js +70 -0
- package/dist/integrations/slack-manifest.js.map +1 -0
- package/dist/integrations/slack-oauth.d.ts +99 -0
- package/dist/integrations/slack-oauth.d.ts.map +1 -0
- package/dist/integrations/slack-oauth.js +226 -0
- package/dist/integrations/slack-oauth.js.map +1 -0
- package/dist/integrations/types.d.ts +144 -0
- package/dist/integrations/types.d.ts.map +1 -1
- package/dist/integrations/types.js +16 -1
- package/dist/integrations/types.js.map +1 -1
- package/dist/integrations/usage-budget-store.d.ts +84 -0
- package/dist/integrations/usage-budget-store.d.ts.map +1 -0
- package/dist/integrations/usage-budget-store.js +650 -0
- package/dist/integrations/usage-budget-store.js.map +1 -0
- package/dist/integrations/webhook-handler.d.ts +4 -0
- package/dist/integrations/webhook-handler.d.ts.map +1 -1
- package/dist/integrations/webhook-handler.js +415 -47
- package/dist/integrations/webhook-handler.js.map +1 -1
- package/dist/jobs/scheduler.d.ts +6 -0
- package/dist/jobs/scheduler.d.ts.map +1 -1
- package/dist/jobs/scheduler.js +83 -4
- package/dist/jobs/scheduler.js.map +1 -1
- package/dist/jobs/tools.d.ts.map +1 -1
- package/dist/jobs/tools.js +43 -11
- package/dist/jobs/tools.js.map +1 -1
- package/dist/observability/routes.d.ts +5 -5
- package/dist/progress/routes.d.ts +1 -1
- package/dist/provider-api/index.d.ts +4 -4
- package/dist/provider-api/index.d.ts.map +1 -1
- package/dist/provider-api/index.js +72 -1
- package/dist/provider-api/index.js.map +1 -1
- package/dist/resources/handlers.d.ts +3 -3
- package/dist/resources/handlers.d.ts.map +1 -1
- package/dist/resources/handlers.js +57 -15
- package/dist/resources/handlers.js.map +1 -1
- package/dist/resources/script-helpers.d.ts.map +1 -1
- package/dist/resources/script-helpers.js +34 -8
- package/dist/resources/script-helpers.js.map +1 -1
- package/dist/resources/store.d.ts +10 -0
- package/dist/resources/store.d.ts.map +1 -1
- package/dist/resources/store.js +54 -47
- package/dist/resources/store.js.map +1 -1
- package/dist/scripts/call-agent.d.ts.map +1 -1
- package/dist/scripts/call-agent.js +106 -1
- package/dist/scripts/call-agent.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts +15 -4
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +248 -113
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +10 -14
- package/dist/server/auth.js.map +1 -1
- package/dist/server/builder-design-systems.d.ts +3 -1
- package/dist/server/builder-design-systems.d.ts.map +1 -1
- package/dist/server/builder-design-systems.js +9 -2
- package/dist/server/builder-design-systems.js.map +1 -1
- package/dist/server/edge.d.ts +1 -1
- package/dist/server/edge.d.ts.map +1 -1
- package/dist/server/edge.js +1 -1
- package/dist/server/edge.js.map +1 -1
- package/dist/server/index.d.ts +2 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +2 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/request-context.d.ts +18 -0
- package/dist/server/request-context.d.ts.map +1 -1
- package/dist/server/request-context.js.map +1 -1
- package/dist/server/social-og-image.d.ts.map +1 -1
- package/dist/server/social-og-image.js +3 -2
- package/dist/server/social-og-image.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/styles/agent-native.css +62 -44
- package/dist/templates/default/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/dist/templates/default/AGENTS.md +7 -3
- package/dist/templates/workspace-core/.agents/skills/authentication/SKILL.md +1 -1
- package/dist/templates/workspace-core/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/dist/templates/workspace-core/.agents/skills/extension-points/SKILL.md +6 -3
- package/dist/templates/workspace-core/.agents/skills/extensions/SKILL.md +25 -0
- package/dist/templates/workspace-core/.agents/skills/integration-webhooks/SKILL.md +15 -0
- package/dist/templates/workspace-core/AGENTS.md +3 -2
- package/dist/usage/store.d.ts +7 -0
- package/dist/usage/store.d.ts.map +1 -1
- package/dist/usage/store.js +24 -3
- package/dist/usage/store.js.map +1 -1
- package/docs/content/automation-connectors.mdx +80 -0
- package/docs/content/extensions.mdx +8 -0
- package/docs/content/locales/ar-SA/extensions.mdx +8 -0
- package/docs/content/locales/ar-SA/messaging.mdx +84 -15
- package/docs/content/locales/ar-SA/template-clips.mdx +1 -0
- package/docs/content/locales/ar-SA/template-design.mdx +1 -0
- package/docs/content/locales/de-DE/extensions.mdx +10 -0
- package/docs/content/locales/de-DE/messaging.mdx +92 -15
- package/docs/content/locales/de-DE/template-clips.mdx +1 -0
- package/docs/content/locales/de-DE/template-design.mdx +1 -0
- package/docs/content/locales/es-ES/extensions.mdx +10 -0
- package/docs/content/locales/es-ES/messaging.mdx +91 -15
- package/docs/content/locales/es-ES/template-clips.mdx +1 -0
- package/docs/content/locales/es-ES/template-design.mdx +1 -0
- package/docs/content/locales/fr-FR/extensions.mdx +10 -0
- package/docs/content/locales/fr-FR/messaging.mdx +91 -15
- package/docs/content/locales/fr-FR/template-clips.mdx +1 -0
- package/docs/content/locales/fr-FR/template-design.mdx +1 -0
- package/docs/content/locales/hi-IN/extensions.mdx +8 -0
- package/docs/content/locales/hi-IN/messaging.mdx +81 -15
- package/docs/content/locales/hi-IN/template-clips.mdx +1 -0
- package/docs/content/locales/hi-IN/template-design.mdx +1 -0
- package/docs/content/locales/ja-JP/extensions.mdx +9 -0
- package/docs/content/locales/ja-JP/messaging.mdx +81 -15
- package/docs/content/locales/ja-JP/template-clips.mdx +1 -0
- package/docs/content/locales/ja-JP/template-design.mdx +1 -0
- package/docs/content/locales/ko-KR/extensions.mdx +8 -0
- package/docs/content/locales/ko-KR/messaging.mdx +80 -15
- package/docs/content/locales/ko-KR/template-clips.mdx +1 -0
- package/docs/content/locales/ko-KR/template-design.mdx +1 -0
- package/docs/content/locales/pt-BR/extensions.mdx +9 -0
- package/docs/content/locales/pt-BR/messaging.mdx +88 -15
- package/docs/content/locales/pt-BR/template-clips.mdx +1 -0
- package/docs/content/locales/pt-BR/template-design.mdx +1 -0
- package/docs/content/locales/zh-CN/extensions.mdx +6 -0
- package/docs/content/locales/zh-CN/messaging.mdx +78 -15
- package/docs/content/locales/zh-CN/template-clips.mdx +1 -0
- package/docs/content/locales/zh-CN/template-design.mdx +1 -0
- package/docs/content/locales/zh-TW/extensions.mdx +6 -0
- package/docs/content/locales/zh-TW/messaging.mdx +78 -15
- package/docs/content/locales/zh-TW/template-clips.mdx +1 -0
- package/docs/content/locales/zh-TW/template-design.mdx +1 -0
- package/docs/content/messaging.mdx +227 -45
- package/docs/content/template-clips.mdx +3 -0
- package/docs/content/template-design.mdx +4 -0
- package/package.json +5 -1
- package/src/templates/default/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/src/templates/default/AGENTS.md +7 -3
- package/src/templates/workspace-core/.agents/skills/authentication/SKILL.md +1 -1
- package/src/templates/workspace-core/.agents/skills/capture-learnings/SKILL.md +22 -9
- package/src/templates/workspace-core/.agents/skills/extension-points/SKILL.md +6 -3
- package/src/templates/workspace-core/.agents/skills/extensions/SKILL.md +25 -0
- package/src/templates/workspace-core/.agents/skills/integration-webhooks/SKILL.md +15 -0
- package/src/templates/workspace-core/AGENTS.md +3 -2
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "Clips",
|
|
50
50
|
library: "Bibliothek",
|
|
51
|
+
sharedWithMe: "Mit mir geteilt",
|
|
51
52
|
spaces: "Bereiche",
|
|
52
53
|
meetings: "Treffen",
|
|
53
54
|
dictate: "Diktieren",
|
|
@@ -83,6 +84,10 @@ const messages = {
|
|
|
83
84
|
body: "Nimm deine erste Bildschirmaufnahme auf; sie erscheint hier und ist bereit zum Teilen.",
|
|
84
85
|
cta: "Ersten Clip aufnehmen",
|
|
85
86
|
},
|
|
87
|
+
shared: {
|
|
88
|
+
title: "Noch keine Clips mit dir geteilt",
|
|
89
|
+
body: "Clips, die Teammitglieder mit dir teilen, erscheinen hier.",
|
|
90
|
+
},
|
|
86
91
|
folder: {
|
|
87
92
|
title: "Dieser Ordner ist leer",
|
|
88
93
|
body: "Ziehe Aufnahmen hinein oder starte eine Aufnahme, um in diesem Ordner etwas Neues zu beginnen.",
|
|
@@ -307,6 +312,7 @@ const messages = {
|
|
|
307
312
|
insights: "Einblicke",
|
|
308
313
|
downloadForMac: "Herunterladen für Mac",
|
|
309
314
|
downloadForWindows: "Herunterladen für Windows",
|
|
315
|
+
downloadForLinux: "Für Linux herunterladen",
|
|
310
316
|
downloadDesktopApp: "Laden Sie die Desktop-App herunter",
|
|
311
317
|
agentNativeClips: "Agent-Native Clips",
|
|
312
318
|
agentNativeClipsIntro: "ist eine kostenlose,",
|
|
@@ -562,7 +568,7 @@ const messages = {
|
|
|
562
568
|
downloadRoute: {
|
|
563
569
|
pageTitle: "Laden Sie Clips Desktop herunter",
|
|
564
570
|
description:
|
|
565
|
-
"Zeichnen Sie Ihren Bildschirm über die
|
|
571
|
+
"Zeichnen Sie Ihren Bildschirm über die Systemleiste auf. Automatisch aktualisierende Desktop-App für macOS, Windows und Linux.",
|
|
566
572
|
macSublabel: "Universell (Apple Silicon + Intel)",
|
|
567
573
|
windowsSublabel: "64-Bit-MSI-Installationsprogramm",
|
|
568
574
|
downloadFor: "Herunterladen für {{platform}}",
|
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "Clips",
|
|
50
50
|
library: "Library",
|
|
51
|
+
sharedWithMe: "Shared with me",
|
|
51
52
|
spaces: "Spaces",
|
|
52
53
|
meetings: "Meetings",
|
|
53
54
|
dictate: "Dictate",
|
|
@@ -82,6 +83,10 @@ const messages = {
|
|
|
82
83
|
body: "Capture your first screen recording and it'll land here, ready to share.",
|
|
83
84
|
cta: "Record your first Clip",
|
|
84
85
|
},
|
|
86
|
+
shared: {
|
|
87
|
+
title: "No clips shared with you yet",
|
|
88
|
+
body: "Clips that teammates share with you will appear here.",
|
|
89
|
+
},
|
|
85
90
|
folder: {
|
|
86
91
|
title: "This folder is empty",
|
|
87
92
|
body: "Drag recordings in, or hit record to start something new in this folder.",
|
|
@@ -293,6 +298,7 @@ const messages = {
|
|
|
293
298
|
insights: "Insights",
|
|
294
299
|
downloadForMac: "Download for Mac",
|
|
295
300
|
downloadForWindows: "Download for Windows",
|
|
301
|
+
downloadForLinux: "Download for Linux",
|
|
296
302
|
downloadDesktopApp: "Download desktop app",
|
|
297
303
|
agentNativeClips: "Agent-Native Clips",
|
|
298
304
|
agentNativeClipsIntro: "is a free,",
|
|
@@ -543,7 +549,7 @@ const messages = {
|
|
|
543
549
|
downloadRoute: {
|
|
544
550
|
pageTitle: "Download Clips Desktop",
|
|
545
551
|
description:
|
|
546
|
-
"Record your screen from the
|
|
552
|
+
"Record your screen from the system tray. Auto-updating desktop app for macOS, Windows, and Linux.",
|
|
547
553
|
macSublabel: "Universal (Apple Silicon + Intel)",
|
|
548
554
|
windowsSublabel: "64-bit MSI installer",
|
|
549
555
|
downloadFor: "Download for {{platform}}",
|
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "Clips",
|
|
50
50
|
library: "Biblioteca",
|
|
51
|
+
sharedWithMe: "Compartido conmigo",
|
|
51
52
|
spaces: "Espacios",
|
|
52
53
|
meetings: "Reuniones",
|
|
53
54
|
dictate: "Dictar",
|
|
@@ -83,6 +84,10 @@ const messages = {
|
|
|
83
84
|
body: "Captura tu primera grabación de pantalla y aparecerá aquí, lista para compartir.",
|
|
84
85
|
cta: "Grabar tu primer Clip",
|
|
85
86
|
},
|
|
87
|
+
shared: {
|
|
88
|
+
title: "Aún no han compartido clips contigo",
|
|
89
|
+
body: "Los clips que tus compañeros compartan contigo aparecerán aquí.",
|
|
90
|
+
},
|
|
86
91
|
folder: {
|
|
87
92
|
title: "Esta carpeta está vacía",
|
|
88
93
|
body: "Arrastra grabaciones aquí o pulsa grabar para empezar algo nuevo en esta carpeta.",
|
|
@@ -304,6 +309,7 @@ const messages = {
|
|
|
304
309
|
insights: "Perspectivas",
|
|
305
310
|
downloadForMac: "Descargar para Mac",
|
|
306
311
|
downloadForWindows: "Descargar para Windows",
|
|
312
|
+
downloadForLinux: "Descargar para Linux",
|
|
307
313
|
downloadDesktopApp: "Descargar la aplicación de escritorio",
|
|
308
314
|
agentNativeClips: "Agent-Native Clips",
|
|
309
315
|
agentNativeClipsIntro: "es una alternativa gratuita,",
|
|
@@ -559,7 +565,7 @@ const messages = {
|
|
|
559
565
|
downloadRoute: {
|
|
560
566
|
pageTitle: "Descargar Clips Desktop",
|
|
561
567
|
description:
|
|
562
|
-
"Graba tu pantalla desde la
|
|
568
|
+
"Graba tu pantalla desde la bandeja del sistema. Aplicación de escritorio con actualización automática para macOS, Windows y Linux.",
|
|
563
569
|
macSublabel: "Traducido: Universal (Apple Silicon + Intel)",
|
|
564
570
|
windowsSublabel: "Instalador MSI de 64 bits",
|
|
565
571
|
downloadFor: "Descargar para {{platform}}",
|
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "Clips",
|
|
50
50
|
library: "Bibliothèque",
|
|
51
|
+
sharedWithMe: "Partagés avec moi",
|
|
51
52
|
spaces: "Espaces",
|
|
52
53
|
meetings: "Réunions",
|
|
53
54
|
dictate: "Dicter",
|
|
@@ -83,6 +84,10 @@ const messages = {
|
|
|
83
84
|
body: "Capturez votre premier enregistrement d’écran et il apparaîtra ici, prêt à partager.",
|
|
84
85
|
cta: "Enregistrer votre premier Clip",
|
|
85
86
|
},
|
|
87
|
+
shared: {
|
|
88
|
+
title: "Aucun clip partagé avec vous",
|
|
89
|
+
body: "Les clips que vos collègues partagent avec vous apparaîtront ici.",
|
|
90
|
+
},
|
|
86
91
|
folder: {
|
|
87
92
|
title: "Ce dossier est vide",
|
|
88
93
|
body: "Glissez-y des enregistrements ou lancez l’enregistrement pour commencer dans ce dossier.",
|
|
@@ -304,6 +309,7 @@ const messages = {
|
|
|
304
309
|
insights: "Connaissances",
|
|
305
310
|
downloadForMac: "Télécharger pour Mac",
|
|
306
311
|
downloadForWindows: "Télécharger pour Windows",
|
|
312
|
+
downloadForLinux: "Télécharger pour Linux",
|
|
307
313
|
downloadDesktopApp: "Téléchargez l'application de bureau",
|
|
308
314
|
agentNativeClips: "Agent-Native Clips",
|
|
309
315
|
agentNativeClipsIntro: "est une alternative gratuite,",
|
|
@@ -559,7 +565,7 @@ const messages = {
|
|
|
559
565
|
downloadRoute: {
|
|
560
566
|
pageTitle: "Télécharger Clips Desktop",
|
|
561
567
|
description:
|
|
562
|
-
"Enregistrez votre écran
|
|
568
|
+
"Enregistrez votre écran depuis la barre d’état système. Application de bureau à mise à jour automatique pour macOS, Windows et Linux.",
|
|
563
569
|
macSublabel: "Universel (Apple Silicon + Intel)",
|
|
564
570
|
windowsSublabel: "Programme d'installation de MSI 64 bits",
|
|
565
571
|
downloadFor: "Télécharger pour {{platform}}",
|
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "क्लिप",
|
|
50
50
|
library: "लाइब्रेरी",
|
|
51
|
+
sharedWithMe: "मेरे साथ साझा",
|
|
51
52
|
spaces: "स्पेस",
|
|
52
53
|
meetings: "मीटिंग्स",
|
|
53
54
|
dictate: "डिक्टेट",
|
|
@@ -82,6 +83,10 @@ const messages = {
|
|
|
82
83
|
body: "अपनी पहली स्क्रीन रिकॉर्डिंग कैप्चर करें और वह यहाँ शेयर करने के लिए तैयार मिलेगी।",
|
|
83
84
|
cta: "अपना पहला Clip रिकॉर्ड करें",
|
|
84
85
|
},
|
|
86
|
+
shared: {
|
|
87
|
+
title: "अभी आपके साथ कोई क्लिप साझा नहीं की गई",
|
|
88
|
+
body: "टीम के सदस्य जो क्लिप आपके साथ साझा करेंगे, वे यहाँ दिखाई देंगी।",
|
|
89
|
+
},
|
|
85
90
|
folder: {
|
|
86
91
|
title: "यह फ़ोल्डर खाली है",
|
|
87
92
|
body: "रिकॉर्डिंग खींचकर लाएँ या इस फ़ोल्डर में कुछ नया शुरू करने के लिए रिकॉर्ड दबाएँ।",
|
|
@@ -291,6 +296,7 @@ const messages = {
|
|
|
291
296
|
insights: "इनसाइट्स",
|
|
292
297
|
downloadForMac: "Mac के लिए डाउनलोड करें",
|
|
293
298
|
downloadForWindows: "Windows के लिए डाउनलोड करें",
|
|
299
|
+
downloadForLinux: "Linux के लिए डाउनलोड करें",
|
|
294
300
|
downloadDesktopApp: "डेस्कटॉप ऐप डाउनलोड करें",
|
|
295
301
|
agentNativeClips: "Agent-Native Clips",
|
|
296
302
|
agentNativeClipsIntro: "एक मुफ्त,",
|
|
@@ -539,7 +545,7 @@ const messages = {
|
|
|
539
545
|
downloadRoute: {
|
|
540
546
|
pageTitle: "Clips Desktop डाउनलोड करें",
|
|
541
547
|
description:
|
|
542
|
-
"
|
|
548
|
+
"सिस्टम ट्रे से अपनी स्क्रीन रिकॉर्ड करें। macOS, Windows और Linux के लिए ऑटो-अपडेटिंग डेस्कटॉप ऐप।",
|
|
543
549
|
macSublabel: "यूनिवर्सल (Apple Silicon + Intel)",
|
|
544
550
|
windowsSublabel: "64-बिट MSI इंस्टॉलर",
|
|
545
551
|
downloadFor: "{{platform}} के लिए डाउनलोड करें",
|
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "クリップ",
|
|
50
50
|
library: "ライブラリ",
|
|
51
|
+
sharedWithMe: "自分と共有",
|
|
51
52
|
spaces: "スペース",
|
|
52
53
|
meetings: "ミーティング",
|
|
53
54
|
dictate: "ディクテーション",
|
|
@@ -83,6 +84,10 @@ const messages = {
|
|
|
83
84
|
body: "最初の画面録画を作成すると、共有できる状態でここに表示されます。",
|
|
84
85
|
cta: "最初の Clip を録画",
|
|
85
86
|
},
|
|
87
|
+
shared: {
|
|
88
|
+
title: "共有されたクリップはまだありません",
|
|
89
|
+
body: "チームメンバーがあなたと共有したクリップがここに表示されます。",
|
|
90
|
+
},
|
|
86
91
|
folder: {
|
|
87
92
|
title: "このフォルダは空です",
|
|
88
93
|
body: "録画をドラッグするか、録画を押してこのフォルダで新しい内容を始めましょう。",
|
|
@@ -300,6 +305,7 @@ const messages = {
|
|
|
300
305
|
insights: "インサイト",
|
|
301
306
|
downloadForMac: "Mac 用のダウンロード",
|
|
302
307
|
downloadForWindows: "Windows 用のダウンロード",
|
|
308
|
+
downloadForLinux: "Linux 用のダウンロード",
|
|
303
309
|
downloadDesktopApp: "デスクトップアプリをダウンロード",
|
|
304
310
|
agentNativeClips: "Agent-Native Clips",
|
|
305
311
|
agentNativeClipsIntro: "は無料の",
|
|
@@ -554,7 +560,7 @@ const messages = {
|
|
|
554
560
|
downloadRoute: {
|
|
555
561
|
pageTitle: "ダウンロード",
|
|
556
562
|
description:
|
|
557
|
-
"
|
|
563
|
+
"システムトレイから画面を録画します。macOS、Windows、Linux 向けの自動更新デスクトップアプリです。",
|
|
558
564
|
macSublabel: "ユニバーサル (Apple Silicon + Intel)",
|
|
559
565
|
windowsSublabel: "64 ビット MSI インストーラー",
|
|
560
566
|
downloadFor: "翻訳済み: Download for {{platform}}",
|
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "클립",
|
|
50
50
|
library: "라이브러리",
|
|
51
|
+
sharedWithMe: "나와 공유됨",
|
|
51
52
|
spaces: "스페이스",
|
|
52
53
|
meetings: "회의",
|
|
53
54
|
dictate: "받아쓰기",
|
|
@@ -82,6 +83,10 @@ const messages = {
|
|
|
82
83
|
body: "첫 화면 녹화를 만들면 공유할 준비가 된 상태로 여기에 표시됩니다.",
|
|
83
84
|
cta: "첫 Clip 녹화하기",
|
|
84
85
|
},
|
|
86
|
+
shared: {
|
|
87
|
+
title: "아직 공유된 클립이 없습니다",
|
|
88
|
+
body: "팀원이 나와 공유한 클립이 여기에 표시됩니다.",
|
|
89
|
+
},
|
|
85
90
|
folder: {
|
|
86
91
|
title: "이 폴더는 비어 있습니다",
|
|
87
92
|
body: "녹화를 끌어오거나 녹화를 눌러 이 폴더에서 새 작업을 시작하세요.",
|
|
@@ -296,6 +301,7 @@ const messages = {
|
|
|
296
301
|
insights: "인사이트",
|
|
297
302
|
downloadForMac: "Mac용 다운로드",
|
|
298
303
|
downloadForWindows: "Windows용 다운로드",
|
|
304
|
+
downloadForLinux: "Linux용 다운로드",
|
|
299
305
|
downloadDesktopApp: "데스크톱 앱 다운로드",
|
|
300
306
|
agentNativeClips: "Agent-Native Clips",
|
|
301
307
|
agentNativeClipsIntro: "는 무료",
|
|
@@ -546,7 +552,7 @@ const messages = {
|
|
|
546
552
|
downloadRoute: {
|
|
547
553
|
pageTitle: "Clips Desktop 다운로드",
|
|
548
554
|
description:
|
|
549
|
-
"
|
|
555
|
+
"시스템 트레이에서 화면을 녹화하세요. macOS, Windows 및 Linux용 자동 업데이트 데스크톱 앱입니다.",
|
|
550
556
|
macSublabel: "범용(Apple Silicon + Intel)",
|
|
551
557
|
windowsSublabel: "64비트 MSI 설치 프로그램",
|
|
552
558
|
downloadFor: "{{platform}}용 다운로드",
|
|
@@ -48,6 +48,7 @@ const messages = {
|
|
|
48
48
|
navigation: {
|
|
49
49
|
brand: "Clips",
|
|
50
50
|
library: "Biblioteca",
|
|
51
|
+
sharedWithMe: "Compartilhado comigo",
|
|
51
52
|
spaces: "Espaços",
|
|
52
53
|
meetings: "Reuniões",
|
|
53
54
|
dictate: "Ditar",
|
|
@@ -83,6 +84,10 @@ const messages = {
|
|
|
83
84
|
body: "Capture sua primeira gravação de tela e ela aparecerá aqui, pronta para compartilhar.",
|
|
84
85
|
cta: "Gravar seu primeiro Clip",
|
|
85
86
|
},
|
|
87
|
+
shared: {
|
|
88
|
+
title: "Nenhum clipe compartilhado com você",
|
|
89
|
+
body: "Os clipes que seus colegas compartilharem com você aparecerão aqui.",
|
|
90
|
+
},
|
|
86
91
|
folder: {
|
|
87
92
|
title: "Esta pasta está vazia",
|
|
88
93
|
body: "Arraste gravações para cá ou clique em gravar para começar algo novo nesta pasta.",
|
|
@@ -301,6 +306,7 @@ const messages = {
|
|
|
301
306
|
insights: "Percepções",
|
|
302
307
|
downloadForMac: "Baixar para Mac",
|
|
303
308
|
downloadForWindows: "Baixar para Windows",
|
|
309
|
+
downloadForLinux: "Baixar para Linux",
|
|
304
310
|
downloadDesktopApp: "Baixe o aplicativo para desktop",
|
|
305
311
|
agentNativeClips: "Agent-Native Clips",
|
|
306
312
|
agentNativeClipsIntro: "é uma alternativa gratuita,",
|
|
@@ -556,7 +562,7 @@ const messages = {
|
|
|
556
562
|
downloadRoute: {
|
|
557
563
|
pageTitle: "Baixar Clips Desktop",
|
|
558
564
|
description:
|
|
559
|
-
"Grave sua tela
|
|
565
|
+
"Grave sua tela pela bandeja do sistema. Aplicativo de desktop com atualização automática para macOS, Windows e Linux.",
|
|
560
566
|
macSublabel: "Universais (Apple Silicon + Intel)",
|
|
561
567
|
windowsSublabel: "Instalador MSI de 64 bits",
|
|
562
568
|
downloadFor: "Baixar para {{platform}}",
|
|
@@ -46,6 +46,7 @@ const messages = {
|
|
|
46
46
|
navigation: {
|
|
47
47
|
brand: "剪辑",
|
|
48
48
|
library: "资料库",
|
|
49
|
+
sharedWithMe: "与我共享",
|
|
49
50
|
spaces: "空间",
|
|
50
51
|
meetings: "会议",
|
|
51
52
|
dictate: "听写",
|
|
@@ -80,6 +81,10 @@ const messages = {
|
|
|
80
81
|
body: "录制第一个屏幕视频后,它会出现在这里,随时可以分享。",
|
|
81
82
|
cta: "录制第一个 Clip",
|
|
82
83
|
},
|
|
84
|
+
shared: {
|
|
85
|
+
title: "暂时没有与你共享的剪辑",
|
|
86
|
+
body: "团队成员与你共享的剪辑会显示在这里。",
|
|
87
|
+
},
|
|
83
88
|
folder: {
|
|
84
89
|
title: "这个文件夹是空的",
|
|
85
90
|
body: "拖入录制,或点击录制在此文件夹中开始新内容。",
|
|
@@ -283,6 +288,7 @@ const messages = {
|
|
|
283
288
|
insights: "洞察",
|
|
284
289
|
downloadForMac: "下载 Mac",
|
|
285
290
|
downloadForWindows: "下载 Windows",
|
|
291
|
+
downloadForLinux: "下载 Linux",
|
|
286
292
|
downloadDesktopApp: "下载桌面应用程序",
|
|
287
293
|
agentNativeClips: "Agent-Native Clips",
|
|
288
294
|
agentNativeClipsIntro: "是一款免费的",
|
|
@@ -524,7 +530,8 @@ const messages = {
|
|
|
524
530
|
},
|
|
525
531
|
downloadRoute: {
|
|
526
532
|
pageTitle: "下载 Clips Desktop",
|
|
527
|
-
description:
|
|
533
|
+
description:
|
|
534
|
+
"从系统托盘录制屏幕。适用于 macOS、Windows 和 Linux 的自动更新桌面应用程序。",
|
|
528
535
|
macSublabel: "通用(Apple Silicon + Intel)",
|
|
529
536
|
windowsSublabel: "64 位 MSI 安装程序",
|
|
530
537
|
downloadFor: "下载 {{platform}}",
|
|
@@ -46,6 +46,7 @@ const messages = {
|
|
|
46
46
|
navigation: {
|
|
47
47
|
brand: "剪輯",
|
|
48
48
|
library: "資料庫",
|
|
49
|
+
sharedWithMe: "與我共用",
|
|
49
50
|
spaces: "空間",
|
|
50
51
|
meetings: "會議",
|
|
51
52
|
dictate: "聽寫",
|
|
@@ -80,6 +81,10 @@ const messages = {
|
|
|
80
81
|
body: "錄製第一個螢幕影片後,它會出現在這裡,隨時可以分享。",
|
|
81
82
|
cta: "錄製第一個 Clip",
|
|
82
83
|
},
|
|
84
|
+
shared: {
|
|
85
|
+
title: "目前沒有與你共用的剪輯",
|
|
86
|
+
body: "團隊成員與你共用的剪輯會顯示在這裡。",
|
|
87
|
+
},
|
|
83
88
|
folder: {
|
|
84
89
|
title: "這個資料夾是空的",
|
|
85
90
|
body: "拖入錄製,或點選錄製在此資料夾中開始新內容。",
|
|
@@ -283,6 +288,7 @@ const messages = {
|
|
|
283
288
|
insights: "洞察",
|
|
284
289
|
downloadForMac: "下載 Mac",
|
|
285
290
|
downloadForWindows: "下載 Windows",
|
|
291
|
+
downloadForLinux: "下載 Linux",
|
|
286
292
|
downloadDesktopApp: "下載桌面應用程式",
|
|
287
293
|
agentNativeClips: "Agent-Native Clips",
|
|
288
294
|
agentNativeClipsIntro: "是一款免費的",
|
|
@@ -524,7 +530,8 @@ const messages = {
|
|
|
524
530
|
},
|
|
525
531
|
downloadRoute: {
|
|
526
532
|
pageTitle: "下載 Clips Desktop",
|
|
527
|
-
description:
|
|
533
|
+
description:
|
|
534
|
+
"從系統匣錄製螢幕。適用於 macOS、Windows 和 Linux 的自動更新桌面應用程式。",
|
|
528
535
|
macSublabel: "通用(Apple Silicon + Intel)",
|
|
529
536
|
windowsSublabel: "64 位 MSI 安裝程式",
|
|
530
537
|
downloadFor: "下載 {{platform}}",
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export type RecordingVisibilityAction = "pause" | "resume" | null;
|
|
2
|
+
|
|
3
|
+
type RecordingVisibilityMode = "screen" | "camera" | "screen+camera";
|
|
4
|
+
type RecordingVisibilityRecorderState =
|
|
5
|
+
| "idle"
|
|
6
|
+
| "pickingSources"
|
|
7
|
+
| "countdown"
|
|
8
|
+
| "recording"
|
|
9
|
+
| "paused"
|
|
10
|
+
| "stopping"
|
|
11
|
+
| "compressing"
|
|
12
|
+
| "uploading"
|
|
13
|
+
| "complete"
|
|
14
|
+
| "error";
|
|
15
|
+
|
|
16
|
+
export interface RecordingVisibilityDecision {
|
|
17
|
+
action: RecordingVisibilityAction;
|
|
18
|
+
autoPaused: boolean;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export function isMobileRecorderRuntime(
|
|
22
|
+
navigatorLike: Pick<Navigator, "userAgent"> &
|
|
23
|
+
Partial<Pick<Navigator, "maxTouchPoints" | "platform">> & {
|
|
24
|
+
userAgentData?: { mobile?: boolean };
|
|
25
|
+
},
|
|
26
|
+
): boolean {
|
|
27
|
+
return (
|
|
28
|
+
navigatorLike.userAgentData?.mobile === true ||
|
|
29
|
+
/Android|iPhone|iPad|iPod/i.test(navigatorLike.userAgent) ||
|
|
30
|
+
((navigatorLike.maxTouchPoints ?? 0) > 1 &&
|
|
31
|
+
/Mac/i.test(navigatorLike.platform ?? navigatorLike.userAgent))
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Mobile operating systems suspend camera capture when the browser is sent to
|
|
37
|
+
* the background. Pause camera-only recordings while hidden so the saved media
|
|
38
|
+
* timeline does not contain a long span with audio but no video frames.
|
|
39
|
+
*/
|
|
40
|
+
export function decideRecordingVisibilityAction(input: {
|
|
41
|
+
mode: RecordingVisibilityMode | null;
|
|
42
|
+
mobileRuntime: boolean;
|
|
43
|
+
documentHidden: boolean;
|
|
44
|
+
cameraTrackMuted: boolean;
|
|
45
|
+
recorderState: RecordingVisibilityRecorderState;
|
|
46
|
+
autoPaused: boolean;
|
|
47
|
+
}): RecordingVisibilityDecision {
|
|
48
|
+
if (!input.mobileRuntime || input.mode !== "camera") {
|
|
49
|
+
return { action: null, autoPaused: false };
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const captureSuspended = input.documentHidden || input.cameraTrackMuted;
|
|
53
|
+
if (captureSuspended && input.recorderState === "recording") {
|
|
54
|
+
return { action: "pause", autoPaused: true };
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
if (
|
|
58
|
+
!captureSuspended &&
|
|
59
|
+
input.autoPaused &&
|
|
60
|
+
input.recorderState === "paused"
|
|
61
|
+
) {
|
|
62
|
+
return { action: "resume", autoPaused: false };
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (input.recorderState !== "recording" && input.recorderState !== "paused") {
|
|
66
|
+
return { action: null, autoPaused: false };
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return { action: null, autoPaused: input.autoPaused };
|
|
70
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { useT } from "@agent-native/core/client";
|
|
2
|
+
|
|
3
|
+
import { LibraryGrid } from "@/components/library/library-grid";
|
|
4
|
+
import enMessages from "@/i18n/en-US";
|
|
5
|
+
|
|
6
|
+
export function meta() {
|
|
7
|
+
return [{ title: `${enMessages.navigation.sharedWithMe} · Clips` }];
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export default function SharedWithMeRoute() {
|
|
11
|
+
const t = useT();
|
|
12
|
+
|
|
13
|
+
return (
|
|
14
|
+
<LibraryGrid
|
|
15
|
+
view="shared"
|
|
16
|
+
emptyKind="shared"
|
|
17
|
+
title={t("navigation.sharedWithMe")}
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
IconBrandChrome,
|
|
4
4
|
IconBrandApple,
|
|
5
5
|
IconBrandWindows,
|
|
6
|
+
IconDeviceDesktop,
|
|
6
7
|
IconExternalLink,
|
|
7
8
|
} from "@tabler/icons-react";
|
|
8
9
|
import { useEffect, useState } from "react";
|
|
@@ -25,7 +26,7 @@ export function meta() {
|
|
|
25
26
|
];
|
|
26
27
|
}
|
|
27
28
|
|
|
28
|
-
type PlatformId = "mac" | "windows";
|
|
29
|
+
type PlatformId = "mac" | "windows" | "linux";
|
|
29
30
|
|
|
30
31
|
interface PlatformVariant {
|
|
31
32
|
id: PlatformId;
|
|
@@ -36,6 +37,9 @@ interface PlatformVariant {
|
|
|
36
37
|
| "mac-arm64"
|
|
37
38
|
| "mac-x64"
|
|
38
39
|
| "windows-msi"
|
|
40
|
+
| "linux-appimage"
|
|
41
|
+
| "linux-deb"
|
|
42
|
+
| "linux-rpm"
|
|
39
43
|
)[];
|
|
40
44
|
icon: typeof IconBrandApple;
|
|
41
45
|
}
|
|
@@ -60,6 +64,13 @@ const VARIANTS: PlatformVariant[] = [
|
|
|
60
64
|
assetKinds: ["windows-msi"],
|
|
61
65
|
icon: IconBrandWindows,
|
|
62
66
|
},
|
|
67
|
+
{
|
|
68
|
+
id: "linux",
|
|
69
|
+
label: "Linux",
|
|
70
|
+
sublabel: "AppImage, Debian, and RPM packages",
|
|
71
|
+
assetKinds: ["linux-appimage", "linux-deb", "linux-rpm"],
|
|
72
|
+
icon: IconDeviceDesktop,
|
|
73
|
+
},
|
|
63
74
|
];
|
|
64
75
|
|
|
65
76
|
interface Manifest {
|
|
@@ -80,6 +91,7 @@ function detectPlatform(): PlatformId | null {
|
|
|
80
91
|
const ua = navigator.userAgent;
|
|
81
92
|
if (/Windows/i.test(ua)) return "windows";
|
|
82
93
|
if (/Mac/i.test(ua)) return "mac";
|
|
94
|
+
if (/Linux|X11/i.test(ua) && !/Android/i.test(ua)) return "linux";
|
|
83
95
|
return null;
|
|
84
96
|
}
|
|
85
97
|
|
|
@@ -190,7 +202,7 @@ export default function DownloadPage() {
|
|
|
190
202
|
}, []);
|
|
191
203
|
|
|
192
204
|
const primary = VARIANTS.find((v) => v.id === detected) ?? VARIANTS[0];
|
|
193
|
-
const secondary = VARIANTS.
|
|
205
|
+
const secondary = VARIANTS.filter((v) => v.id !== primary.id);
|
|
194
206
|
|
|
195
207
|
return (
|
|
196
208
|
<div className="min-h-screen bg-background text-foreground">
|
|
@@ -239,12 +251,16 @@ export default function DownloadPage() {
|
|
|
239
251
|
manifestError,
|
|
240
252
|
t("downloadRoute.downloadFor", { platform: primary.label }),
|
|
241
253
|
)}
|
|
242
|
-
{
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
254
|
+
{secondary.map((variant) => (
|
|
255
|
+
<div key={variant.id}>
|
|
256
|
+
{secondaryDownloadButton(
|
|
257
|
+
variant,
|
|
258
|
+
manifest,
|
|
259
|
+
manifestError,
|
|
260
|
+
t("downloadRoute.alsoFor", { platform: variant.label }),
|
|
261
|
+
)}
|
|
262
|
+
</div>
|
|
263
|
+
))}
|
|
248
264
|
<div className="text-xs text-muted-foreground">
|
|
249
265
|
{manifest ? (
|
|
250
266
|
<>
|