@shepai/cli 1.155.0 → 1.156.0-pr485.030e6b4
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 +276 -161
- package/apis/json-schema/Language.yaml +13 -0
- package/apis/json-schema/UserProfile.yaml +3 -0
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +5 -0
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +7 -0
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +11 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +3 -0
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +5 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +14 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +11 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +4 -2
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts +14 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.js +19 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
- package/dist/src/presentation/cli/commands/_serve.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/_serve.command.js +5 -3
- package/dist/src/presentation/cli/commands/agent/approve.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/approve.command.js +9 -4
- package/dist/src/presentation/cli/commands/agent/delete.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/delete.command.js +9 -5
- package/dist/src/presentation/cli/commands/agent/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/index.js +3 -1
- package/dist/src/presentation/cli/commands/agent/logs.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/logs.command.js +7 -5
- package/dist/src/presentation/cli/commands/agent/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/ls.command.js +12 -10
- package/dist/src/presentation/cli/commands/agent/reject.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/reject.command.js +10 -5
- package/dist/src/presentation/cli/commands/agent/resolve-run.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/resolve-run.js +7 -2
- package/dist/src/presentation/cli/commands/agent/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/show.command.js +8 -6
- package/dist/src/presentation/cli/commands/agent/stop.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/agent/stop.command.js +9 -4
- package/dist/src/presentation/cli/commands/daemon/start-daemon.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/daemon/start-daemon.js +10 -8
- package/dist/src/presentation/cli/commands/daemon/stop-daemon.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/daemon/stop-daemon.js +5 -3
- package/dist/src/presentation/cli/commands/feat/adopt.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/adopt.command.js +14 -12
- package/dist/src/presentation/cli/commands/feat/approve.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/approve.command.js +8 -6
- package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/archive.command.js +10 -8
- package/dist/src/presentation/cli/commands/feat/del.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/del.command.js +17 -15
- package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/index.js +2 -1
- package/dist/src/presentation/cli/commands/feat/logs.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/logs.command.js +8 -6
- package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/ls.command.js +14 -12
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.js +43 -37
- package/dist/src/presentation/cli/commands/feat/reject.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/reject.command.js +11 -9
- package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.js +12 -5
- package/dist/src/presentation/cli/commands/feat/resume.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/resume.command.js +8 -6
- package/dist/src/presentation/cli/commands/feat/review.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/review.command.js +17 -15
- package/dist/src/presentation/cli/commands/feat/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/show.command.js +89 -45
- package/dist/src/presentation/cli/commands/feat/start.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/start.command.js +12 -10
- package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/unarchive.command.js +8 -6
- package/dist/src/presentation/cli/commands/ide-open.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/ide-open.command.js +10 -5
- package/dist/src/presentation/cli/commands/install.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/install.command.js +29 -21
- package/dist/src/presentation/cli/commands/log-viewer.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/log-viewer.js +6 -3
- package/dist/src/presentation/cli/commands/repo/add.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/add.command.js +12 -10
- package/dist/src/presentation/cli/commands/repo/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/index.js +3 -1
- package/dist/src/presentation/cli/commands/repo/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/ls.command.js +11 -9
- package/dist/src/presentation/cli/commands/repo/resolve-repository.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/resolve-repository.js +7 -2
- package/dist/src/presentation/cli/commands/repo/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/repo/show.command.js +21 -10
- package/dist/src/presentation/cli/commands/restart.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/restart.command.js +6 -4
- package/dist/src/presentation/cli/commands/run.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/run.command.js +21 -17
- package/dist/src/presentation/cli/commands/session/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/session/index.js +3 -1
- package/dist/src/presentation/cli/commands/session/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/session/ls.command.js +11 -9
- package/dist/src/presentation/cli/commands/session/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/session/show.command.js +26 -18
- package/dist/src/presentation/cli/commands/settings/agent.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/agent.command.js +12 -8
- package/dist/src/presentation/cli/commands/settings/ide.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/ide.command.js +13 -7
- package/dist/src/presentation/cli/commands/settings/index.d.ts +1 -0
- package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/index.js +7 -3
- package/dist/src/presentation/cli/commands/settings/init.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/init.command.js +8 -7
- package/dist/src/presentation/cli/commands/settings/language.command.d.ts +14 -0
- package/dist/src/presentation/cli/commands/settings/language.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/language.command.js +79 -0
- package/dist/src/presentation/cli/commands/settings/model.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/model.command.js +7 -6
- package/dist/src/presentation/cli/commands/settings/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/show.command.js +4 -3
- package/dist/src/presentation/cli/commands/settings/workflow.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/workflow.command.js +20 -18
- package/dist/src/presentation/cli/commands/start.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/start.command.js +5 -3
- package/dist/src/presentation/cli/commands/status.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/status.command.js +32 -24
- package/dist/src/presentation/cli/commands/stop.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/stop.command.js +4 -2
- package/dist/src/presentation/cli/commands/tools.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/tools.command.js +8 -4
- package/dist/src/presentation/cli/commands/ui.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/ui.command.js +12 -10
- package/dist/src/presentation/cli/commands/upgrade.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/upgrade.command.js +18 -13
- package/dist/src/presentation/cli/commands/version.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/version.command.js +5 -3
- package/dist/src/presentation/cli/i18n.d.ts +41 -0
- package/dist/src/presentation/cli/i18n.d.ts.map +1 -0
- package/dist/src/presentation/cli/i18n.js +100 -0
- package/dist/src/presentation/cli/index.js +13 -1
- package/dist/src/presentation/cli/ui/install-messages.d.ts.map +1 -1
- package/dist/src/presentation/cli/ui/install-messages.js +16 -6
- package/dist/src/presentation/tui/i18n.d.ts +24 -0
- package/dist/src/presentation/tui/i18n.d.ts.map +1 -0
- package/dist/src/presentation/tui/i18n.js +48 -0
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts +13 -31
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/agent-select.prompt.js +17 -15
- package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts +7 -11
- package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/auth-method.prompt.js +7 -5
- package/dist/src/presentation/tui/prompts/ide-select.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/ide-select.prompt.js +2 -1
- package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.js +8 -6
- package/dist/src/presentation/tui/wizards/agent-config.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/agent-config.wizard.js +2 -1
- package/dist/src/presentation/tui/wizards/github-import.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/github-import.wizard.js +15 -11
- package/dist/src/presentation/tui/wizards/merge-review.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/merge-review.wizard.js +10 -8
- package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.js +10 -7
- package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts +0 -41
- package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.js +15 -15
- package/dist/src/presentation/tui/wizards/plan-review.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/plan-review.wizard.js +10 -8
- package/dist/src/presentation/tui/wizards/prd-review.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/prd-review.wizard.js +3 -2
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +4 -2
- package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/create-feature.js +3 -0
- package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
- package/dist/src/presentation/web/app/layout.js +5 -2
- package/dist/src/presentation/web/components/assistant-ui/thread.d.ts.map +1 -1
- package/dist/src/presentation/web/components/assistant-ui/thread.js +13 -10
- package/dist/src/presentation/web/components/common/add-repository-button/add-repository-button.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/add-repository-button/add-repository-button.js +3 -1
- package/dist/src/presentation/web/components/common/attachment-chip/attachment-chip.js +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +5 -2
- package/dist/src/presentation/web/components/common/ci-status-badge/ci-status-badge.js +3 -3
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +4 -4
- package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +7 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +1 -1
- package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.js +3 -1
- package/dist/src/presentation/web/components/common/deployment-status-badge/deployment-status-badge.js +2 -2
- package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.js +6 -2
- package/dist/src/presentation/web/components/common/empty-state/empty-state.stories.js +2 -2
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +34 -22
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.js +11 -7
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.js +3 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +4 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/log-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/log-tab.js +5 -3
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +9 -5
- package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.js +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -2
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +22 -22
- package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.js +49 -36
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.js +7 -3
- package/dist/src/presentation/web/components/common/feature-status-badges/feature-status-badges.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-status-badges/feature-status-badges.js +4 -2
- package/dist/src/presentation/web/components/common/feature-status-config.d.ts +2 -1
- package/dist/src/presentation/web/components/common/feature-status-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-status-config.js +6 -6
- package/dist/src/presentation/web/components/common/feature-status-group/feature-status-group.js +1 -1
- package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.js +4 -2
- package/dist/src/presentation/web/components/common/github-import-dialog/github-repo-browser.js +1 -1
- package/dist/src/presentation/web/components/common/merge-review/diff-view.js +2 -2
- package/dist/src/presentation/web/components/common/merge-review/merge-review.js +2 -2
- package/dist/src/presentation/web/components/common/prd-questionnaire/prd-questionnaire.js +3 -3
- package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.js +6 -4
- package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.js +18 -11
- package/dist/src/presentation/web/components/common/server-log-viewer/server-log-viewer.js +1 -1
- package/dist/src/presentation/web/components/common/task-progress-view/task-progress-view.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/task-progress-view/task-progress-view.js +7 -4
- package/dist/src/presentation/web/components/common/tech-decisions-review/tech-decisions-review.js +2 -2
- package/dist/src/presentation/web/components/common/version-badge/version-badge.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/version-badge/version-badge.js +3 -1
- package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatComposer.js +3 -1
- package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.js +7 -5
- package/dist/src/presentation/web/components/features/chat/ChatMessageList.js +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatSheet.js +5 -3
- package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatTab.js +5 -3
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +15 -11
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +14 -6
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +2 -2
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +8 -6
- package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.js +3 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +4 -2
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +2 -2
- package/dist/src/presentation/web/components/features/settings/ModelPicker/index.js +2 -2
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +1 -1
- package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts +5 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.js +54 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts +18 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.js +36 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +89 -77
- package/dist/src/presentation/web/components/features/settings/timeout-slider.js +1 -1
- package/dist/src/presentation/web/components/features/skills/category-filter.js +1 -1
- package/dist/src/presentation/web/components/features/skills/skills-page-client.js +1 -1
- package/dist/src/presentation/web/components/features/tools/tool-card.js +1 -1
- package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.js +2 -2
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +5 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +13 -7
- package/dist/src/presentation/web/components/providers/i18n-provider.d.ts +17 -0
- package/dist/src/presentation/web/components/providers/i18n-provider.d.ts.map +1 -0
- package/dist/src/presentation/web/components/providers/i18n-provider.js +36 -0
- package/dist/src/presentation/web/components/ui/alert-dialog.js +1 -1
- package/dist/src/presentation/web/components/ui/alert.js +1 -1
- package/dist/src/presentation/web/components/ui/checkbox-group.js +1 -1
- package/dist/src/presentation/web/components/ui/command.js +1 -1
- package/dist/src/presentation/web/components/ui/dialog.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/dialog.js +2 -2
- package/dist/src/presentation/web/components/ui/dialog.stories.js +1 -1
- package/dist/src/presentation/web/components/ui/drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/drawer.js +2 -8
- package/dist/src/presentation/web/components/ui/dropdown-menu.js +6 -6
- package/dist/src/presentation/web/components/ui/scroll-area.js +1 -1
- package/dist/src/presentation/web/components/ui/select.js +1 -1
- package/dist/src/presentation/web/components/ui/sheet.js +3 -3
- package/dist/src/presentation/web/components/ui/sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/sidebar.js +15 -15
- package/dist/src/presentation/web/components/ui/switch.js +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.js +7 -4
- package/dist/src/presentation/web/hooks/use-sound-action.stories.js +1 -1
- package/dist/src/presentation/web/lib/i18n.d.ts +15 -0
- package/dist/src/presentation/web/lib/i18n.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/i18n.js +64 -0
- package/dist/src/presentation/web/lib/language.d.ts +23 -0
- package/dist/src/presentation/web/lib/language.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/language.js +37 -0
- package/dist/src/presentation/web/lib/layout-with-dagre.d.ts +2 -0
- package/dist/src/presentation/web/lib/layout-with-dagre.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/layout-with-dagre.js +4 -0
- package/dist/src/presentation/web/lib/rtl-fonts.d.ts +19 -0
- package/dist/src/presentation/web/lib/rtl-fonts.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/rtl-fonts.js +51 -0
- package/dist/translations/ar/cli.json +613 -0
- package/dist/translations/ar/common.json +55 -0
- package/dist/translations/ar/tui.json +130 -0
- package/dist/translations/ar/web.json +594 -0
- package/dist/translations/de/cli.json +613 -0
- package/dist/translations/de/common.json +55 -0
- package/dist/translations/de/tui.json +109 -0
- package/dist/translations/de/web.json +580 -0
- package/dist/translations/en/cli.json +613 -0
- package/dist/translations/en/common.json +55 -0
- package/dist/translations/en/tui.json +130 -0
- package/dist/translations/en/web.json +594 -0
- package/dist/translations/es/cli.json +613 -0
- package/dist/translations/es/common.json +55 -0
- package/dist/translations/es/tui.json +130 -0
- package/dist/translations/es/web.json +594 -0
- package/dist/translations/fr/cli.json +613 -0
- package/dist/translations/fr/common.json +55 -0
- package/dist/translations/fr/tui.json +130 -0
- package/dist/translations/fr/web.json +594 -0
- package/dist/translations/he/cli.json +613 -0
- package/dist/translations/he/common.json +55 -0
- package/dist/translations/he/tui.json +130 -0
- package/dist/translations/he/web.json +594 -0
- package/dist/translations/pt/cli.json +613 -0
- package/dist/translations/pt/common.json +55 -0
- package/dist/translations/pt/tui.json +130 -0
- package/dist/translations/pt/web.json +594 -0
- package/dist/translations/ru/cli.json +613 -0
- package/dist/translations/ru/common.json +55 -0
- package/dist/translations/ru/tui.json +130 -0
- package/dist/translations/ru/web.json +594 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +4 -2
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/build-manifest.json +2 -2
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +7 -7
- package/web/.next/required-server-files.json +7 -7
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +29 -29
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/chat/page.js +3 -3
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +29 -29
- package/web/.next/server/app/(dashboard)/create/page.js +3 -3
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +4 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/page.js +3 -3
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +3 -3
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +5 -5
- package/web/.next/server/app/_not-found/page.js +2 -2
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
- package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
- package/web/.next/server/app/settings/page.js +2 -2
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/server-reference-manifest.json +10 -10
- package/web/.next/server/app/skills/page.js +3 -4
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/server-reference-manifest.json +10 -10
- package/web/.next/server/app/tools/page.js +3 -4
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/server-reference-manifest.json +5 -5
- package/web/.next/server/app/version/page.js +2 -2
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +3 -3
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__209c9597._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__88f7e8e6._.js.map → [root-of-the-server]__209c9597._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__27301e38._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__17ed7ed1._.js.map → [root-of-the-server]__27301e38._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6fecf886._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__42bf1807._.js.map → [root-of-the-server]__6fecf886._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8d27866c._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8d27866c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__9f3504c7._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__f80bfc75._.js.map → [root-of-the-server]__9f3504c7._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f8dd4422._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f8dd4422._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0dc06d07._.js +3 -0
- package/web/.next/server/chunks/ssr/_0dc06d07._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
- package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_2b858df5._.js +3 -0
- package/web/.next/server/chunks/ssr/{_2c7d0c36._.js.map → _2b858df5._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_3a0b989f._.js +2 -2
- package/web/.next/server/chunks/ssr/_3a0b989f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_67104d9e._.js → _3bcda5d7._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_67104d9e._.js.map → _3bcda5d7._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_71e47f04._.js → _4e19e8d2._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_71e47f04._.js.map → _4e19e8d2._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_5119a3df._.js +3 -0
- package/web/.next/server/chunks/ssr/_5119a3df._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_5f69c13f._.js +1 -1
- package/web/.next/server/chunks/ssr/_5f69c13f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_6645de45._.js +4 -0
- package/web/.next/server/chunks/ssr/_6645de45._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_7c5b97c6._.js +1 -1
- package/web/.next/server/chunks/ssr/_7c5b97c6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_82c57f10._.js +1 -1
- package/web/.next/server/chunks/ssr/_82c57f10._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_8b57edb8._.js +1 -1
- package/web/.next/server/chunks/ssr/_8b57edb8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_8d733ce4._.js +1 -1
- package/web/.next/server/chunks/ssr/_8d733ce4._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_9495d50b._.js +1 -1
- package/web/.next/server/chunks/ssr/_9495d50b._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_a0e3f7e4._.js +1 -1
- package/web/.next/server/chunks/ssr/_a0e3f7e4._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_ac4a3873._.js +1 -1
- package/web/.next/server/chunks/ssr/_ac4a3873._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_507a8382._.js → _b9ba2473._.js} +2 -2
- package/web/.next/server/chunks/ssr/_b9ba2473._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_bcaea66b._.js +3 -0
- package/web/.next/server/chunks/ssr/_bcaea66b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_bcfa8457._.js +9 -0
- package/web/.next/server/chunks/ssr/_bcfa8457._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_ca0aa7f0._.js +1 -1
- package/web/.next/server/chunks/ssr/_ca0aa7f0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_cb5a021e._.js +1 -1
- package/web/.next/server/chunks/ssr/_cb5a021e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +1 -1
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d86175ae._.js +1 -1
- package/web/.next/server/chunks/ssr/_d86175ae._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d8bedf13._.js +1 -1
- package/web/.next/server/chunks/ssr/_d8bedf13._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d90b0a06._.js +3 -0
- package/web/.next/server/chunks/ssr/_d90b0a06._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_fa7efce3._.js +2 -2
- package/web/.next/server/chunks/ssr/_fa7efce3._.js.map +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js +1 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +3 -0
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -0
- package/web/.next/server/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +45 -45
- package/web/.next/static/chunks/{b4cde06eff374c59.js → 0a79dfbb8486b66e.js} +2 -2
- package/web/.next/static/chunks/{f50d8e1825fae0fe.js → 0c87b59a0fdd22dd.js} +1 -1
- package/web/.next/static/chunks/11e4b9d959a6efa7.js +2 -0
- package/web/.next/static/chunks/{f6085a3750b6d8f4.js → 16d35285b664c30c.js} +1 -1
- package/web/.next/static/chunks/2273b81cd7c7d2af.css +1 -0
- package/web/.next/static/chunks/{60bc4daf6904d5a0.js → 24d701de138b762d.js} +1 -1
- package/web/.next/static/chunks/2c5bf14361cf6728.js +1 -0
- package/web/.next/static/chunks/{688971d5bad5dc7c.js → 3deefc76ea55047c.js} +1 -1
- package/web/.next/static/chunks/42e6a21f1d63dc5c.js +1 -0
- package/web/.next/static/chunks/{11091b676d1b3bd4.js → 47477ed4c5871747.js} +1 -1
- package/web/.next/static/chunks/4864ff06a738d58b.js +1 -0
- package/web/.next/static/chunks/{22c459f1877b1e4f.js → 74db65fa7bfb80bd.js} +1 -1
- package/web/.next/static/chunks/9061f08ab7e537a8.js +1 -0
- package/web/.next/static/chunks/919509a19de3205b.js +7 -0
- package/web/.next/static/chunks/{b3109b268c02449c.js → 9aa752f55e6cfcc9.js} +1 -1
- package/web/.next/static/chunks/a72f1d456f0afa8a.js +5 -0
- package/web/.next/static/chunks/ad5b1373e5ba0789.js +1 -0
- package/web/.next/static/chunks/b447e13b2ac5bb65.js +1 -0
- package/web/.next/static/chunks/d2cbeefbc8967b16.js +1 -0
- package/web/.next/static/chunks/d5366257d6b9f855.js +1 -0
- package/web/.next/static/chunks/{5ae60a052ab5f437.js → d6e702c209c413ce.js} +2 -2
- package/web/.next/static/chunks/{97c18bb438f775cf.js → e63d0d79a334fa97.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17ed7ed1._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__42bf1807._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__88f7e8e6._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f80bfc75._.js +0 -4
- package/web/.next/server/chunks/ssr/_2c7d0c36._.js +0 -3
- package/web/.next/server/chunks/ssr/_4b432739._.js +0 -3
- package/web/.next/server/chunks/ssr/_4b432739._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_507a8382._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_8219712a._.js +0 -3
- package/web/.next/server/chunks/ssr/_8219712a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_d4b20e29._.js +0 -3
- package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_dd0d2cda._.js +0 -4
- package/web/.next/server/chunks/ssr/_dd0d2cda._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_e9a73a63._.js +0 -9
- package/web/.next/server/chunks/ssr/_e9a73a63._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js.map +0 -1
- package/web/.next/static/chunks/08fe461cb16fced0.js +0 -1
- package/web/.next/static/chunks/1a1dc6a09c911b70.js +0 -1
- package/web/.next/static/chunks/21c8953d720bddcc.js +0 -7
- package/web/.next/static/chunks/450bfeed79bb1648.js +0 -1
- package/web/.next/static/chunks/4b2c4a5c35ebb70d.js +0 -1
- package/web/.next/static/chunks/711a2468a2ea3c85.js +0 -1
- package/web/.next/static/chunks/8590bd2e69b24b9e.css +0 -1
- package/web/.next/static/chunks/8ba1c07ef18b15a9.js +0 -1
- package/web/.next/static/chunks/cd54b758f58061d0.js +0 -1
- package/web/.next/static/chunks/d1fa9a48542437bd.js +0 -2
- package/web/.next/static/chunks/de8a83cc1a08a5f1.js +0 -5
- /package/web/.next/static/{gvtDuAeM3WKFc9kJihv1y → _3mdwhLrxBePUb5DWqy3q}/_buildManifest.js +0 -0
- /package/web/.next/static/{gvtDuAeM3WKFc9kJihv1y → _3mdwhLrxBePUb5DWqy3q}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{gvtDuAeM3WKFc9kJihv1y → _3mdwhLrxBePUb5DWqy3q}/_ssgManifest.js +0 -0
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* choose their AI coding agent.
|
|
6
6
|
*/
|
|
7
7
|
import { AgentType } from '../../../../packages/core/src/domain/generated/output.js';
|
|
8
|
+
import { getTuiI18n } from '../i18n.js';
|
|
8
9
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
9
10
|
/**
|
|
10
11
|
* Creates the @inquirer/select configuration for selecting an AI coding agent.
|
|
@@ -13,43 +14,44 @@ import { shepTheme } from '../themes/shep.theme.js';
|
|
|
13
14
|
* as disabled with a "Coming Soon" badge.
|
|
14
15
|
*/
|
|
15
16
|
export function createAgentSelectConfig() {
|
|
17
|
+
const t = getTuiI18n().t;
|
|
16
18
|
return {
|
|
17
|
-
message: '
|
|
19
|
+
message: t('tui:prompts.selectAgent.message'),
|
|
18
20
|
choices: [
|
|
19
21
|
{
|
|
20
|
-
name: '
|
|
22
|
+
name: t('tui:prompts.selectAgent.choices.claudeCode.name'),
|
|
21
23
|
value: AgentType.ClaudeCode,
|
|
22
|
-
description: '
|
|
24
|
+
description: t('tui:prompts.selectAgent.choices.claudeCode.description'),
|
|
23
25
|
},
|
|
24
26
|
{
|
|
25
|
-
name: '
|
|
27
|
+
name: t('tui:prompts.selectAgent.choices.geminiCli.name'),
|
|
26
28
|
value: AgentType.GeminiCli,
|
|
27
|
-
description: '
|
|
29
|
+
description: t('tui:prompts.selectAgent.choices.geminiCli.description'),
|
|
28
30
|
},
|
|
29
31
|
{
|
|
30
|
-
name: '
|
|
32
|
+
name: t('tui:prompts.selectAgent.choices.codexCli.name'),
|
|
31
33
|
value: AgentType.CodexCli,
|
|
32
|
-
description:
|
|
34
|
+
description: t('tui:prompts.selectAgent.choices.codexCli.description'),
|
|
33
35
|
},
|
|
34
36
|
{
|
|
35
|
-
name: '
|
|
37
|
+
name: t('tui:prompts.selectAgent.choices.cursor.name'),
|
|
36
38
|
value: AgentType.Cursor,
|
|
37
|
-
description: '
|
|
39
|
+
description: t('tui:prompts.selectAgent.choices.cursor.description'),
|
|
38
40
|
},
|
|
39
41
|
{
|
|
40
|
-
name: '
|
|
42
|
+
name: t('tui:prompts.selectAgent.choices.devMock.name'),
|
|
41
43
|
value: AgentType.Dev,
|
|
42
|
-
description: '
|
|
44
|
+
description: t('tui:prompts.selectAgent.choices.devMock.description'),
|
|
43
45
|
},
|
|
44
46
|
{
|
|
45
|
-
name: '
|
|
47
|
+
name: t('tui:prompts.selectAgent.choices.aider.name'),
|
|
46
48
|
value: AgentType.Aider,
|
|
47
|
-
disabled: '
|
|
49
|
+
disabled: t('tui:prompts.selectAgent.choices.aider.disabled'),
|
|
48
50
|
},
|
|
49
51
|
{
|
|
50
|
-
name: '
|
|
52
|
+
name: t('tui:prompts.selectAgent.choices.continue.name'),
|
|
51
53
|
value: AgentType.Continue,
|
|
52
|
-
disabled: '
|
|
54
|
+
disabled: t('tui:prompts.selectAgent.choices.continue.disabled'),
|
|
53
55
|
},
|
|
54
56
|
],
|
|
55
57
|
theme: shepTheme,
|
|
@@ -12,17 +12,13 @@ import { AgentAuthMethod } from '../../../../packages/core/src/domain/generated/
|
|
|
12
12
|
* or token-based auth (providing an API key).
|
|
13
13
|
*/
|
|
14
14
|
export declare function createAuthMethodConfig(): {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
readonly value: AgentAuthMethod.Token;
|
|
23
|
-
readonly description: "Provide an Anthropic API key";
|
|
24
|
-
}];
|
|
25
|
-
readonly theme: {
|
|
15
|
+
message: string;
|
|
16
|
+
choices: {
|
|
17
|
+
name: string;
|
|
18
|
+
value: AgentAuthMethod;
|
|
19
|
+
description: string;
|
|
20
|
+
}[];
|
|
21
|
+
theme: {
|
|
26
22
|
readonly prefix: {
|
|
27
23
|
readonly idle: string;
|
|
28
24
|
readonly done: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth-method.prompt.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/prompts/auth-method.prompt.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"auth-method.prompt.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/prompts/auth-method.prompt.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAI/D;;;;;GAKG;AACH,wBAAgB,sBAAsB;;;;;;;;;;;;;;;;;EAkBrC"}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* choose their authentication method for the selected agent.
|
|
6
6
|
*/
|
|
7
7
|
import { AgentAuthMethod } from '../../../../packages/core/src/domain/generated/output.js';
|
|
8
|
+
import { getTuiI18n } from '../i18n.js';
|
|
8
9
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
9
10
|
/**
|
|
10
11
|
* Creates the @inquirer/select configuration for selecting an authentication method.
|
|
@@ -13,18 +14,19 @@ import { shepTheme } from '../themes/shep.theme.js';
|
|
|
13
14
|
* or token-based auth (providing an API key).
|
|
14
15
|
*/
|
|
15
16
|
export function createAuthMethodConfig() {
|
|
17
|
+
const t = getTuiI18n().t;
|
|
16
18
|
return {
|
|
17
|
-
message: '
|
|
19
|
+
message: t('tui:prompts.selectAuthMethod.message'),
|
|
18
20
|
choices: [
|
|
19
21
|
{
|
|
20
|
-
name: '
|
|
22
|
+
name: t('tui:prompts.selectAuthMethod.choices.session.name'),
|
|
21
23
|
value: AgentAuthMethod.Session,
|
|
22
|
-
description: '
|
|
24
|
+
description: t('tui:prompts.selectAuthMethod.choices.session.description'),
|
|
23
25
|
},
|
|
24
26
|
{
|
|
25
|
-
name: '
|
|
27
|
+
name: t('tui:prompts.selectAuthMethod.choices.token.name'),
|
|
26
28
|
value: AgentAuthMethod.Token,
|
|
27
|
-
description: '
|
|
29
|
+
description: t('tui:prompts.selectAuthMethod.choices.token.description'),
|
|
28
30
|
},
|
|
29
31
|
],
|
|
30
32
|
theme: shepTheme,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ide-select.prompt.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/prompts/ide-select.prompt.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"ide-select.prompt.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/prompts/ide-select.prompt.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAMH;;GAEG;AACH,wBAAgB,qBAAqB;;;;;;;;;;;;;;;;;EAYpC"}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* from JSON tool metadata (any tool with openDirectory).
|
|
7
7
|
*/
|
|
8
8
|
import { getIdeEntries } from '../../../../packages/core/src/infrastructure/services/tool-installer/tool-metadata.js';
|
|
9
|
+
import { getTuiI18n } from '../i18n.js';
|
|
9
10
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
10
11
|
/**
|
|
11
12
|
* Creates the @inquirer/select configuration for selecting a preferred IDE.
|
|
@@ -17,7 +18,7 @@ export function createIdeSelectConfig() {
|
|
|
17
18
|
description: meta.summary,
|
|
18
19
|
}));
|
|
19
20
|
return {
|
|
20
|
-
message: '
|
|
21
|
+
message: getTuiI18n().t('tui:prompts.selectIde.message'),
|
|
21
22
|
choices,
|
|
22
23
|
theme: shepTheme,
|
|
23
24
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prd-review-summary.prompt.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/prompts/prd-review-summary.prompt.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"prd-review-summary.prompt.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/prompts/prd-review-summary.prompt.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEhD;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,WAAW,EAAE,MAAM;;;;eAUhC,YAAY;;;;;;;;;;;;;EAWvC"}
|
|
@@ -4,24 +4,26 @@
|
|
|
4
4
|
* Creates an @inquirer/select config for the final approve/reject
|
|
5
5
|
* action after reviewing open questions.
|
|
6
6
|
*/
|
|
7
|
+
import { getTuiI18n } from '../i18n.js';
|
|
7
8
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
8
9
|
/**
|
|
9
10
|
* Creates the @inquirer/select configuration for the review action prompt.
|
|
10
11
|
*/
|
|
11
12
|
export function createReviewActionConfig(changeCount) {
|
|
12
|
-
const
|
|
13
|
+
const t = getTuiI18n().t;
|
|
14
|
+
const changeLabel = changeCount > 0 ? t('tui:prompts.prdReview.changeLabel', { count: changeCount }) : '';
|
|
13
15
|
return {
|
|
14
|
-
message:
|
|
16
|
+
message: t('tui:prompts.prdReview.reviewComplete', { changeLabel }),
|
|
15
17
|
choices: [
|
|
16
18
|
{
|
|
17
|
-
name: '
|
|
19
|
+
name: t('tui:prompts.prdReview.approveAndContinue'),
|
|
18
20
|
value: 'approve',
|
|
19
|
-
description: '
|
|
21
|
+
description: t('tui:prompts.prdReview.approveDescription'),
|
|
20
22
|
},
|
|
21
23
|
{
|
|
22
|
-
name: '
|
|
24
|
+
name: t('tui:prompts.prdReview.rejectAndIterate'),
|
|
23
25
|
value: 'reject',
|
|
24
|
-
description: '
|
|
26
|
+
description: t('tui:prompts.prdReview.rejectDescription'),
|
|
25
27
|
},
|
|
26
28
|
],
|
|
27
29
|
theme: shepTheme,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-config.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/agent-config.wizard.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,EAAE,eAAe,EAAE,KAAK,SAAS,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"agent-config.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/agent-config.wizard.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,EAAE,eAAe,EAAE,KAAK,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAM/E;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,SAAS,CAAC;IAChB,UAAU,EAAE,eAAe,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;;;GASG;AACH,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,iBAAiB,CAAC,CAoBpE"}
|
|
@@ -8,6 +8,7 @@ import { select, password } from '@inquirer/prompts';
|
|
|
8
8
|
import { AgentAuthMethod } from '../../../../packages/core/src/domain/generated/output.js';
|
|
9
9
|
import { createAgentSelectConfig } from '../prompts/agent-select.prompt.js';
|
|
10
10
|
import { createAuthMethodConfig } from '../prompts/auth-method.prompt.js';
|
|
11
|
+
import { getTuiI18n } from '../i18n.js';
|
|
11
12
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
12
13
|
/**
|
|
13
14
|
* Runs the interactive agent configuration wizard.
|
|
@@ -28,7 +29,7 @@ export async function agentConfigWizard() {
|
|
|
28
29
|
};
|
|
29
30
|
if (authMethod === AgentAuthMethod.Token) {
|
|
30
31
|
const token = await password({
|
|
31
|
-
message: '
|
|
32
|
+
message: getTuiI18n().t('tui:wizards.agentConfig.enterApiKey'),
|
|
32
33
|
mask: '*',
|
|
33
34
|
theme: shepTheme,
|
|
34
35
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"github-import.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/github-import.wizard.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,KAAK,EACV,wBAAwB,EAEzB,MAAM,4EAA4E,CAAC;AAEpF,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,2EAA2E,CAAC;
|
|
1
|
+
{"version":3,"file":"github-import.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/github-import.wizard.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,KAAK,EACV,wBAAwB,EAEzB,MAAM,4EAA4E,CAAC;AAEpF,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,2EAA2E,CAAC;AAI/H;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,yCAAyC;IACzC,GAAG,EAAE,MAAM,CAAC;IACZ,wDAAwD;IACxD,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAoBD;;;;;;;;;;;;GAYG;AACH,wBAAsB,kBAAkB,CACtC,aAAa,EAAE,wBAAwB,EACvC,WAAW,EAAE,6BAA6B,GACzC,OAAO,CAAC,wBAAwB,CAAC,CAqCnC"}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { select, input } from '@inquirer/prompts';
|
|
9
9
|
import { GitHubUrlParseError } from '../../../../packages/core/src/application/ports/output/services/github-repository-service.interface.js';
|
|
10
|
+
import { getTuiI18n } from '../i18n.js';
|
|
10
11
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
11
12
|
/**
|
|
12
13
|
* Format a GitHub repo for display in the select list.
|
|
@@ -35,18 +36,19 @@ function formatRepoChoice(repo) {
|
|
|
35
36
|
*/
|
|
36
37
|
export async function githubImportWizard(gitHubService, listUseCase) {
|
|
37
38
|
// Step 1: Choose import method
|
|
39
|
+
const t = getTuiI18n().t;
|
|
38
40
|
const method = await select({
|
|
39
|
-
message: '
|
|
41
|
+
message: t('tui:wizards.githubImport.methodMessage'),
|
|
40
42
|
choices: [
|
|
41
43
|
{
|
|
42
|
-
name: '
|
|
44
|
+
name: t('tui:wizards.githubImport.pasteUrl'),
|
|
43
45
|
value: 'url',
|
|
44
|
-
description: '
|
|
46
|
+
description: t('tui:wizards.githubImport.pasteUrlDescription'),
|
|
45
47
|
},
|
|
46
48
|
{
|
|
47
|
-
name: '
|
|
49
|
+
name: t('tui:wizards.githubImport.browseRepos'),
|
|
48
50
|
value: 'browse',
|
|
49
|
-
description: '
|
|
51
|
+
description: t('tui:wizards.githubImport.browseReposDescription'),
|
|
50
52
|
},
|
|
51
53
|
],
|
|
52
54
|
theme: shepTheme,
|
|
@@ -71,11 +73,12 @@ export async function githubImportWizard(gitHubService, listUseCase) {
|
|
|
71
73
|
* Re-prompts on invalid input until a valid URL is provided.
|
|
72
74
|
*/
|
|
73
75
|
async function promptForUrl(gitHubService) {
|
|
76
|
+
const t = getTuiI18n().t;
|
|
74
77
|
const url = await input({
|
|
75
|
-
message: '
|
|
78
|
+
message: t('tui:wizards.githubImport.enterUrl'),
|
|
76
79
|
validate: (value) => {
|
|
77
80
|
if (!value.trim()) {
|
|
78
|
-
return '
|
|
81
|
+
return t('tui:wizards.githubImport.urlRequired');
|
|
79
82
|
}
|
|
80
83
|
try {
|
|
81
84
|
gitHubService.parseGitHubUrl(value.trim());
|
|
@@ -85,7 +88,7 @@ async function promptForUrl(gitHubService) {
|
|
|
85
88
|
if (error instanceof GitHubUrlParseError) {
|
|
86
89
|
return error.message;
|
|
87
90
|
}
|
|
88
|
-
return '
|
|
91
|
+
return t('tui:wizards.githubImport.invalidUrlFormat');
|
|
89
92
|
}
|
|
90
93
|
},
|
|
91
94
|
theme: shepTheme,
|
|
@@ -98,12 +101,13 @@ async function promptForUrl(gitHubService) {
|
|
|
98
101
|
*/
|
|
99
102
|
async function promptForBrowse(listUseCase) {
|
|
100
103
|
const repos = await listUseCase.execute({ limit: 30 });
|
|
104
|
+
const t = getTuiI18n().t;
|
|
101
105
|
if (repos.length === 0) {
|
|
102
|
-
throw new Error('
|
|
106
|
+
throw new Error(t('tui:wizards.githubImport.noRepos'));
|
|
103
107
|
}
|
|
104
108
|
const choices = repos.map(formatRepoChoice);
|
|
105
109
|
const selected = await select({
|
|
106
|
-
message: '
|
|
110
|
+
message: t('tui:wizards.githubImport.selectRepo'),
|
|
107
111
|
choices,
|
|
108
112
|
theme: shepTheme,
|
|
109
113
|
});
|
|
@@ -114,7 +118,7 @@ async function promptForBrowse(listUseCase) {
|
|
|
114
118
|
*/
|
|
115
119
|
async function promptForDestination() {
|
|
116
120
|
const dest = await input({
|
|
117
|
-
message:
|
|
121
|
+
message: getTuiI18n().t('tui:wizards.githubImport.cloneDestination'),
|
|
118
122
|
theme: shepTheme,
|
|
119
123
|
});
|
|
120
124
|
return dest.trim() || undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"merge-review.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/merge-review.wizard.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"merge-review.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/merge-review.wizard.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,MAAM,MAAM,iBAAiB,GAAG,SAAS,GAAG,QAAQ,CAAC;AAErD,MAAM,WAAW,uBAAuB;IACtC,MAAM,EAAE,iBAAiB,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,uBAAuB,CAAC,CAmC1E"}
|
|
@@ -5,20 +5,22 @@
|
|
|
5
5
|
* Shows approve/reject action with optional comment.
|
|
6
6
|
*/
|
|
7
7
|
import { select, input } from '@inquirer/prompts';
|
|
8
|
+
import { getTuiI18n } from '../i18n.js';
|
|
8
9
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
9
10
|
export async function mergeReviewWizard() {
|
|
11
|
+
const t = getTuiI18n().t;
|
|
10
12
|
const action = await select({
|
|
11
|
-
message: '
|
|
13
|
+
message: t('tui:wizards.mergeReview.message'),
|
|
12
14
|
choices: [
|
|
13
15
|
{
|
|
14
|
-
name: '
|
|
16
|
+
name: t('tui:wizards.mergeReview.approveAndMerge'),
|
|
15
17
|
value: 'approve',
|
|
16
|
-
description: '
|
|
18
|
+
description: t('tui:wizards.mergeReview.approveDescription'),
|
|
17
19
|
},
|
|
18
20
|
{
|
|
19
|
-
name: '
|
|
21
|
+
name: t('tui:wizards.mergeReview.reject'),
|
|
20
22
|
value: 'reject',
|
|
21
|
-
description: '
|
|
23
|
+
description: t('tui:wizards.mergeReview.rejectDescription'),
|
|
22
24
|
},
|
|
23
25
|
],
|
|
24
26
|
theme: shepTheme,
|
|
@@ -26,14 +28,14 @@ export async function mergeReviewWizard() {
|
|
|
26
28
|
let feedback;
|
|
27
29
|
if (action === 'reject') {
|
|
28
30
|
feedback = await input({
|
|
29
|
-
message: '
|
|
31
|
+
message: t('tui:wizards.mergeReview.rejectFeedback'),
|
|
30
32
|
theme: shepTheme,
|
|
31
|
-
validate: (value) => value.trim().length > 0 || '
|
|
33
|
+
validate: (value) => value.trim().length > 0 || t('tui:wizards.mergeReview.feedbackRequired'),
|
|
32
34
|
});
|
|
33
35
|
}
|
|
34
36
|
else {
|
|
35
37
|
feedback = await input({
|
|
36
|
-
message: '
|
|
38
|
+
message: t('tui:wizards.mergeReview.approveComment'),
|
|
37
39
|
theme: shepTheme,
|
|
38
40
|
});
|
|
39
41
|
if (feedback?.trim().length === 0)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onboarding.wizard.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/tui/wizards/onboarding/onboarding.wizard.ts"],"names":[],"mappings":"AACA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"onboarding.wizard.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/tui/wizards/onboarding/onboarding.wizard.ts"],"names":[],"mappings":"AACA;;;;;;GAMG;AAUH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,YAAY,CAAC;AAuBzD;;;;;;;;;GASG;AACH,wBAAsB,gBAAgB,CACpC,SAAS,GAAE,MAAM,OAAO,CAAC,iBAAiB,CAAgB,EAC1D,OAAO,GAAE,MAAM,OAAO,CAAC,MAAM,CAAc,EAC3C,YAAY,GAAE,MAAM,OAAO,CAAC,sBAAsB,CAA2B,GAC5E,OAAO,CAAC,IAAI,CAAC,CAoCf"}
|
|
@@ -10,6 +10,7 @@ import pc from 'picocolors';
|
|
|
10
10
|
import { container } from '../../../../../packages/core/src/infrastructure/di/container.js';
|
|
11
11
|
import { CompleteOnboardingUseCase } from '../../../../../packages/core/src/application/use-cases/settings/complete-onboarding.use-case.js';
|
|
12
12
|
import { resetSettings, initializeSettings } from '../../../../../packages/core/src/infrastructure/services/settings.service.js';
|
|
13
|
+
import { getTuiI18n } from '../../i18n.js';
|
|
13
14
|
import { runAgentStep } from './steps/agent.step.js';
|
|
14
15
|
import { runIdeStep } from './steps/ide.step.js';
|
|
15
16
|
import { runWorkflowDefaultsStep } from './steps/workflow-defaults.step.js';
|
|
@@ -17,14 +18,16 @@ import { runWorkflowDefaultsStep } from './steps/workflow-defaults.step.js';
|
|
|
17
18
|
* Display the welcome banner before the first wizard step.
|
|
18
19
|
*/
|
|
19
20
|
function showWelcomeBanner() {
|
|
21
|
+
const t = getTuiI18n().t;
|
|
20
22
|
console.log();
|
|
21
|
-
console.log(pc.cyan(pc.bold(
|
|
22
|
-
console.log(pc.dim(
|
|
23
|
+
console.log(pc.cyan(pc.bold(` ${t('tui:wizards.onboarding.welcomeTitle')}`)));
|
|
24
|
+
console.log(pc.dim(` ${t('tui:wizards.onboarding.welcomeSubtitle')}`));
|
|
23
25
|
console.log();
|
|
24
|
-
console.log(pc.yellow(
|
|
25
|
-
pc.bold(
|
|
26
|
-
pc.dim('
|
|
27
|
-
console.log(pc.dim(
|
|
26
|
+
console.log(pc.yellow(` \u26a0 ${t('tui:wizards.onboarding.prerequisiteWarning')}`) +
|
|
27
|
+
pc.bold(t('tui:wizards.onboarding.prerequisiteLabel')) +
|
|
28
|
+
pc.dim(` ${t('tui:wizards.onboarding.prerequisiteDescription')}`));
|
|
29
|
+
console.log(pc.dim(` ${t('tui:wizards.onboarding.installFrom')}`) +
|
|
30
|
+
pc.underline(t('tui:wizards.onboarding.installUrl')));
|
|
28
31
|
console.log();
|
|
29
32
|
}
|
|
30
33
|
/**
|
|
@@ -57,7 +60,7 @@ export async function onboardingWizard(agentStep = runAgentStep, ideStep = runId
|
|
|
57
60
|
resetSettings();
|
|
58
61
|
initializeSettings(updatedSettings);
|
|
59
62
|
console.log();
|
|
60
|
-
console.log(pc.green(
|
|
63
|
+
console.log(pc.green(` \u2713 ${getTuiI18n().t('tui:wizards.onboarding.setupComplete')}`));
|
|
61
64
|
console.log();
|
|
62
65
|
}
|
|
63
66
|
catch (error) {
|
|
@@ -51,47 +51,6 @@ export declare function buildWorkflowDefaultsConfig(initial?: Partial<WorkflowDe
|
|
|
51
51
|
checked: boolean;
|
|
52
52
|
})[];
|
|
53
53
|
};
|
|
54
|
-
/** Static config with all defaults unchecked (used by onboarding). */
|
|
55
|
-
export declare const workflowDefaultsConfig: {
|
|
56
|
-
message: string;
|
|
57
|
-
instructions: string;
|
|
58
|
-
theme: {
|
|
59
|
-
readonly prefix: {
|
|
60
|
-
readonly idle: string;
|
|
61
|
-
readonly done: string;
|
|
62
|
-
};
|
|
63
|
-
readonly style: {
|
|
64
|
-
readonly highlight: import("picocolors/types.js").Formatter;
|
|
65
|
-
readonly answer: import("picocolors/types.js").Formatter;
|
|
66
|
-
};
|
|
67
|
-
};
|
|
68
|
-
choices: ({
|
|
69
|
-
name: string;
|
|
70
|
-
value: "allowPrd";
|
|
71
|
-
description: string;
|
|
72
|
-
checked: boolean;
|
|
73
|
-
} | {
|
|
74
|
-
name: string;
|
|
75
|
-
value: "allowPlan";
|
|
76
|
-
description: string;
|
|
77
|
-
checked: boolean;
|
|
78
|
-
} | {
|
|
79
|
-
name: string;
|
|
80
|
-
value: "allowMerge";
|
|
81
|
-
description: string;
|
|
82
|
-
checked: boolean;
|
|
83
|
-
} | {
|
|
84
|
-
name: string;
|
|
85
|
-
value: "pushOnImplementationComplete";
|
|
86
|
-
description: string;
|
|
87
|
-
checked: boolean;
|
|
88
|
-
} | {
|
|
89
|
-
name: string;
|
|
90
|
-
value: "openPrOnImplementationComplete";
|
|
91
|
-
description: string;
|
|
92
|
-
checked: boolean;
|
|
93
|
-
})[];
|
|
94
|
-
};
|
|
95
54
|
/**
|
|
96
55
|
* Runs the workflow defaults step.
|
|
97
56
|
* Accepts optional initial values to pre-check choices (for reconfiguration).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-defaults.step.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"workflow-defaults.step.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAE1D,oCAAoC;AACpC,MAAM,MAAM,kBAAkB,GAC1B,UAAU,GACV,WAAW,GACX,YAAY,GACZ,8BAA8B,GAC9B,gCAAgC,CAAC;AAErC;;;GAGG;AACH,wBAAgB,2BAA2B,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuCpF;AAED;;;;GAIG;AACH,wBAAsB,uBAAuB,CAC3C,OAAO,CAAC,EAAE,OAAO,CAAC,sBAAsB,CAAC,GACxC,OAAO,CAAC,sBAAsB,CAAC,CAYjC"}
|
|
@@ -5,59 +5,59 @@
|
|
|
5
5
|
* that will apply to all new features.
|
|
6
6
|
*/
|
|
7
7
|
import { checkbox } from '@inquirer/prompts';
|
|
8
|
+
import { getTuiI18n } from '../../../i18n.js';
|
|
8
9
|
import { shepTheme } from '../../../themes/shep.theme.js';
|
|
9
10
|
/**
|
|
10
11
|
* Build checkbox configuration for workflow defaults.
|
|
11
12
|
* Accepts optional initial values to pre-check choices (for reconfiguration).
|
|
12
13
|
*/
|
|
13
14
|
export function buildWorkflowDefaultsConfig(initial) {
|
|
15
|
+
const t = getTuiI18n().t;
|
|
14
16
|
return {
|
|
15
|
-
message: '
|
|
16
|
-
instructions: '
|
|
17
|
+
message: t('tui:wizards.workflowDefaults.message'),
|
|
18
|
+
instructions: t('tui:wizards.workflowDefaults.instructions'),
|
|
17
19
|
theme: shepTheme,
|
|
18
20
|
choices: [
|
|
19
21
|
{
|
|
20
|
-
name: '
|
|
22
|
+
name: t('tui:wizards.workflowDefaults.allowPrd'),
|
|
21
23
|
value: 'allowPrd',
|
|
22
|
-
description: '
|
|
24
|
+
description: t('tui:wizards.workflowDefaults.allowPrdDescription'),
|
|
23
25
|
checked: initial?.allowPrd ?? false,
|
|
24
26
|
},
|
|
25
27
|
{
|
|
26
|
-
name: '
|
|
28
|
+
name: t('tui:wizards.workflowDefaults.allowPlan'),
|
|
27
29
|
value: 'allowPlan',
|
|
28
|
-
description: '
|
|
30
|
+
description: t('tui:wizards.workflowDefaults.allowPlanDescription'),
|
|
29
31
|
checked: initial?.allowPlan ?? false,
|
|
30
32
|
},
|
|
31
33
|
{
|
|
32
|
-
name: '
|
|
34
|
+
name: t('tui:wizards.workflowDefaults.allowMerge'),
|
|
33
35
|
value: 'allowMerge',
|
|
34
|
-
description: '
|
|
36
|
+
description: t('tui:wizards.workflowDefaults.allowMergeDescription'),
|
|
35
37
|
checked: initial?.allowMerge ?? false,
|
|
36
38
|
},
|
|
37
39
|
{
|
|
38
|
-
name: '
|
|
40
|
+
name: t('tui:wizards.workflowDefaults.pushOnFinish'),
|
|
39
41
|
value: 'pushOnImplementationComplete',
|
|
40
|
-
description: '
|
|
42
|
+
description: t('tui:wizards.workflowDefaults.pushOnFinishDescription'),
|
|
41
43
|
checked: initial?.pushOnImplementationComplete ?? false,
|
|
42
44
|
},
|
|
43
45
|
{
|
|
44
|
-
name: '
|
|
46
|
+
name: t('tui:wizards.workflowDefaults.createPr'),
|
|
45
47
|
value: 'openPrOnImplementationComplete',
|
|
46
|
-
description: '
|
|
48
|
+
description: t('tui:wizards.workflowDefaults.createPrDescription'),
|
|
47
49
|
checked: initial?.openPrOnImplementationComplete ?? false,
|
|
48
50
|
},
|
|
49
51
|
],
|
|
50
52
|
};
|
|
51
53
|
}
|
|
52
|
-
/** Static config with all defaults unchecked (used by onboarding). */
|
|
53
|
-
export const workflowDefaultsConfig = buildWorkflowDefaultsConfig();
|
|
54
54
|
/**
|
|
55
55
|
* Runs the workflow defaults step.
|
|
56
56
|
* Accepts optional initial values to pre-check choices (for reconfiguration).
|
|
57
57
|
* Returns an object with all 5 boolean flags.
|
|
58
58
|
*/
|
|
59
59
|
export async function runWorkflowDefaultsStep(initial) {
|
|
60
|
-
const config =
|
|
60
|
+
const config = buildWorkflowDefaultsConfig(initial);
|
|
61
61
|
const selected = await checkbox(config);
|
|
62
62
|
const selectedSet = new Set(selected);
|
|
63
63
|
return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plan-review.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/plan-review.wizard.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"plan-review.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/plan-review.wizard.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEpD,MAAM,WAAW,sBAAsB;IACrC,MAAM,EAAE,gBAAgB,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,sBAAsB,CAAC,CAmCxE"}
|
|
@@ -5,20 +5,22 @@
|
|
|
5
5
|
* Shows approve/reject action with optional comment.
|
|
6
6
|
*/
|
|
7
7
|
import { select, input } from '@inquirer/prompts';
|
|
8
|
+
import { getTuiI18n } from '../i18n.js';
|
|
8
9
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
9
10
|
export async function planReviewWizard() {
|
|
11
|
+
const t = getTuiI18n().t;
|
|
10
12
|
const action = await select({
|
|
11
|
-
message: '
|
|
13
|
+
message: t('tui:wizards.planReview.message'),
|
|
12
14
|
choices: [
|
|
13
15
|
{
|
|
14
|
-
name: '
|
|
16
|
+
name: t('tui:wizards.planReview.approveAndContinue'),
|
|
15
17
|
value: 'approve',
|
|
16
|
-
description: '
|
|
18
|
+
description: t('tui:wizards.planReview.approveDescription'),
|
|
17
19
|
},
|
|
18
20
|
{
|
|
19
|
-
name: '
|
|
21
|
+
name: t('tui:wizards.planReview.rejectAndIterate'),
|
|
20
22
|
value: 'reject',
|
|
21
|
-
description: '
|
|
23
|
+
description: t('tui:wizards.planReview.rejectDescription'),
|
|
22
24
|
},
|
|
23
25
|
],
|
|
24
26
|
theme: shepTheme,
|
|
@@ -26,14 +28,14 @@ export async function planReviewWizard() {
|
|
|
26
28
|
let feedback;
|
|
27
29
|
if (action === 'reject') {
|
|
28
30
|
feedback = await input({
|
|
29
|
-
message: '
|
|
31
|
+
message: t('tui:wizards.planReview.rejectFeedback'),
|
|
30
32
|
theme: shepTheme,
|
|
31
|
-
validate: (value) => value.trim().length > 0 || '
|
|
33
|
+
validate: (value) => value.trim().length > 0 || t('tui:wizards.planReview.feedbackRequired'),
|
|
32
34
|
});
|
|
33
35
|
}
|
|
34
36
|
else {
|
|
35
37
|
feedback = await input({
|
|
36
|
-
message: '
|
|
38
|
+
message: t('tui:wizards.planReview.approveComment'),
|
|
37
39
|
theme: shepTheme,
|
|
38
40
|
});
|
|
39
41
|
if (feedback?.trim().length === 0)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prd-review.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/prd-review.wizard.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,EAEL,KAAK,YAAY,EAClB,MAAM,yCAAyC,CAAC;AACjD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"prd-review.wizard.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/wizards/prd-review.wizard.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,EAEL,KAAK,YAAY,EAClB,MAAM,yCAAyC,CAAC;AACjD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAI5E,MAAM,WAAW,qBAAqB;IACpC,MAAM,EAAE,YAAY,CAAC;IACrB,iBAAiB,EAAE,uBAAuB,EAAE,CAAC;IAC7C,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;;;;;GAQG;AACH,wBAAsB,eAAe,CAAC,SAAS,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,qBAAqB,CAAC,CA+B/F"}
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
import { select, input } from '@inquirer/prompts';
|
|
9
9
|
import { createQuestionSelectConfig } from '../prompts/prd-review-question.prompt.js';
|
|
10
10
|
import { createReviewActionConfig, } from '../prompts/prd-review-summary.prompt.js';
|
|
11
|
+
import { getTuiI18n } from '../i18n.js';
|
|
11
12
|
import { shepTheme } from '../themes/shep.theme.js';
|
|
12
13
|
/**
|
|
13
14
|
* Runs the interactive PRD review wizard.
|
|
@@ -35,9 +36,9 @@ export async function prdReviewWizard(questions) {
|
|
|
35
36
|
let feedback;
|
|
36
37
|
if (action === 'reject') {
|
|
37
38
|
feedback = await input({
|
|
38
|
-
message:
|
|
39
|
+
message: getTuiI18n().t('tui:prompts.prdReview.feedbackPrompt'),
|
|
39
40
|
theme: shepTheme,
|
|
40
|
-
validate: (value) => value.trim().length > 0 || '
|
|
41
|
+
validate: (value) => value.trim().length > 0 || getTuiI18n().t('tui:prompts.prdReview.feedbackRequired'),
|
|
41
42
|
});
|
|
42
43
|
}
|
|
43
44
|
return { action, changedSelections, feedback };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-graph-data.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/web/app/(dashboard)/get-graph-data.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-graph-data.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/web/app/(dashboard)/get-graph-data.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAE5E,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAI1C,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B;AAiFD,MAAM,MAAM,aAAa,GACrB;IAAE,MAAM,EAAE,SAAS,CAAA;CAAE,GACrB;IAAE,MAAM,EAAE,OAAO,CAAC;IAAC,IAAI,EAAE,WAAW,CAAA;CAAE,GACtC;IAAE,MAAM,EAAE,YAAY,CAAA;CAAE,CAAC;AA6B7B,wBAAsB,YAAY,IAAI,OAAO,CAAC;IAAE,KAAK,EAAE,cAAc,EAAE,CAAC;IAAC,KAAK,EAAE,IAAI,EAAE,CAAA;CAAE,CAAC,CAmExF"}
|