@shepai/cli 1.156.0 → 1.157.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +253 -142
- 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/packages/core/src/infrastructure/services/git/pr-branding.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.js +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.js +3 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/claude-code.json +3 -4
- 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/activity-tab.stories.js +1 -1
- 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/feature-drawer-tabs.stories.js +2 -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/merge-review/merge-review.stories.js +1 -1
- 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-drawer.stories.js +3 -3
- package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts.map +1 -1
- 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/repository-node/repository-node.stories.js +12 -12
- 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/control-center.stories.js +1 -1
- 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/features-canvas/features-canvas.stories.js +6 -6
- 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 +100 -88
- 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/features/version/version-page-client.js +1 -1
- 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 +5 -3
- 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 +6 -6
- package/web/.next/required-server-files.json +6 -6
- 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/_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/_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/_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/_9f6b4b4a._.js +3 -0
- package/web/.next/server/chunks/ssr/{_08dc06df._.js.map → _9f6b4b4a._.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/_b3bcbae5._.js +4 -0
- package/web/.next/server/chunks/ssr/_b3bcbae5._.js.map +1 -0
- 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/{_b354e40a._.js → _ddbf84e9._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_b354e40a._.js.map → _ddbf84e9._.js.map} +1 -1
- 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_a5e6c910._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_a5e6c910._.js.map +1 -1
- 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/{3e1e0f9bde3530d2.js → 08ff9ace090d2691.js} +1 -1
- package/web/.next/static/chunks/{b4cde06eff374c59.js → 0a79dfbb8486b66e.js} +2 -2
- package/web/.next/static/chunks/19591a6c619a8d84.js +7 -0
- package/web/.next/static/chunks/1c541c77fae77297.js +1 -0
- package/web/.next/static/chunks/2273b81cd7c7d2af.css +1 -0
- package/web/.next/static/chunks/{688971d5bad5dc7c.js → 3deefc76ea55047c.js} +1 -1
- package/web/.next/static/chunks/42484808c3fdd6f1.js +1 -0
- package/web/.next/static/chunks/443f46d9ffb173d9.js +5 -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/{5064470ab185e453.js → 6a12dec4a63ed342.js} +2 -2
- 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/91c1a0ccc964c832.js +2 -0
- package/web/.next/static/chunks/{37156b1c0646309f.js → b820b3d89776f2ae.js} +1 -1
- package/web/.next/static/chunks/c142797526c0a85c.js +1 -0
- package/web/.next/static/chunks/{baa593a4681fc66e.js → c66b8a09a10d8855.js} +1 -1
- package/web/.next/static/chunks/{f98f811478ff3d9e.js → c9ead31f0a1c2de1.js} +1 -1
- package/web/.next/static/chunks/cf55aeccca2297f0.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/f8e198917b279786.js +1 -0
- 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/_08dc06df._.js +0 -3
- package/web/.next/server/chunks/ssr/_140901ed._.js +0 -4
- package/web/.next/server/chunks/ssr/_140901ed._.js.map +0 -1
- 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/_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/0104ee32c0b12767.js +0 -7
- package/web/.next/static/chunks/1555e75b3393cfe1.js +0 -1
- package/web/.next/static/chunks/4b2c4a5c35ebb70d.js +0 -1
- package/web/.next/static/chunks/697bbb4ddfc7aed8.js +0 -1
- package/web/.next/static/chunks/8590bd2e69b24b9e.css +0 -1
- package/web/.next/static/chunks/88a729f218d9628b.js +0 -5
- package/web/.next/static/chunks/88ffe4a8760a3559.js +0 -1
- package/web/.next/static/chunks/8ba1c07ef18b15a9.js +0 -1
- package/web/.next/static/chunks/92629ccb27a1bdb9.js +0 -2
- package/web/.next/static/chunks/ae30b66927c676ff.js +0 -1
- package/web/.next/static/chunks/cd54b758f58061d0.js +0 -1
- package/web/.next/static/chunks/f5c527d3f8699035.js +0 -1
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → t8-30La5Z2OhsRJq4XLko}/_buildManifest.js +0 -0
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → t8-30La5Z2OhsRJq4XLko}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → t8-30La5Z2OhsRJq4XLko}/_ssgManifest.js +0 -0
|
@@ -16,6 +16,7 @@ import { createIdeSelectConfig } from '../../../tui/prompts/ide-select.prompt.js
|
|
|
16
16
|
import { getSettings, resetSettings, initializeSettings, } from '../../../../../packages/core/src/infrastructure/services/settings.service.js';
|
|
17
17
|
import { getIdeEntries } from '../../../../../packages/core/src/infrastructure/services/tool-installer/tool-metadata.js';
|
|
18
18
|
import { messages } from '../../ui/index.js';
|
|
19
|
+
import { getCliI18n } from '../../i18n.js';
|
|
19
20
|
/** Valid IDE tool IDs derived from JSON metadata. */
|
|
20
21
|
const VALID_EDITORS = new Set(getIdeEntries().map(([id]) => id));
|
|
21
22
|
/**
|
|
@@ -23,8 +24,10 @@ const VALID_EDITORS = new Set(getIdeEntries().map(([id]) => id));
|
|
|
23
24
|
*/
|
|
24
25
|
export function createIdeCommand() {
|
|
25
26
|
return new Command('ide')
|
|
26
|
-
.description('
|
|
27
|
-
.option('--editor <name>',
|
|
27
|
+
.description(getCliI18n().t('cli:commands.settings.ide.description'))
|
|
28
|
+
.option('--editor <name>', getCliI18n().t('cli:commands.settings.ide.editorOption', {
|
|
29
|
+
editors: [...VALID_EDITORS].join(', '),
|
|
30
|
+
}))
|
|
28
31
|
.addHelpText('after', `
|
|
29
32
|
Examples:
|
|
30
33
|
$ shep settings ide Interactive selection
|
|
@@ -35,7 +38,10 @@ Examples:
|
|
|
35
38
|
let editorValue;
|
|
36
39
|
if (options.editor !== undefined) {
|
|
37
40
|
if (!VALID_EDITORS.has(options.editor)) {
|
|
38
|
-
messages.error(
|
|
41
|
+
messages.error(getCliI18n().t('cli:commands.settings.ide.unknownEditor', {
|
|
42
|
+
editor: options.editor,
|
|
43
|
+
validEditors: [...VALID_EDITORS].join(', '),
|
|
44
|
+
}), new Error(`Unknown editor: ${options.editor}`));
|
|
39
45
|
process.exitCode = 1;
|
|
40
46
|
return;
|
|
41
47
|
}
|
|
@@ -48,7 +54,7 @@ Examples:
|
|
|
48
54
|
const ideLauncher = container.resolve('IIdeLauncherService');
|
|
49
55
|
const available = await ideLauncher.checkAvailability(editorValue);
|
|
50
56
|
if (!available) {
|
|
51
|
-
messages.warning(
|
|
57
|
+
messages.warning(getCliI18n().t('cli:commands.settings.ide.notInPath', { editor: editorValue }));
|
|
52
58
|
}
|
|
53
59
|
// Persist settings
|
|
54
60
|
const settings = getSettings();
|
|
@@ -58,15 +64,15 @@ Examples:
|
|
|
58
64
|
// Refresh in-memory singleton
|
|
59
65
|
resetSettings();
|
|
60
66
|
initializeSettings(updatedSettings);
|
|
61
|
-
messages.success(
|
|
67
|
+
messages.success(getCliI18n().t('cli:commands.settings.ide.success', { editor: editorValue }));
|
|
62
68
|
}
|
|
63
69
|
catch (error) {
|
|
64
70
|
const err = error instanceof Error ? error : new Error(String(error));
|
|
65
71
|
if (err.message.includes('force closed') || err.message.includes('User force closed')) {
|
|
66
|
-
messages.info('
|
|
72
|
+
messages.info(getCliI18n().t('cli:commands.settings.ide.cancelled'));
|
|
67
73
|
return;
|
|
68
74
|
}
|
|
69
|
-
messages.error('
|
|
75
|
+
messages.error(getCliI18n().t('cli:commands.settings.ide.failed'), err);
|
|
70
76
|
process.exitCode = 1;
|
|
71
77
|
}
|
|
72
78
|
});
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* shep settings ide # Configure preferred IDE
|
|
13
13
|
* shep settings workflow # Configure workflow defaults
|
|
14
14
|
* shep settings model # Configure default LLM model
|
|
15
|
+
* shep settings language # Configure display language
|
|
15
16
|
*/
|
|
16
17
|
import { Command } from 'commander';
|
|
17
18
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAYpC;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,OAAO,CAuB/C"}
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* shep settings ide # Configure preferred IDE
|
|
13
13
|
* shep settings workflow # Configure workflow defaults
|
|
14
14
|
* shep settings model # Configure default LLM model
|
|
15
|
+
* shep settings language # Configure display language
|
|
15
16
|
*/
|
|
16
17
|
import { Command } from 'commander';
|
|
17
18
|
import { createShowCommand } from './show.command.js';
|
|
@@ -20,20 +21,23 @@ import { createAgentCommand } from './agent.command.js';
|
|
|
20
21
|
import { createIdeCommand } from './ide.command.js';
|
|
21
22
|
import { createWorkflowCommand } from './workflow.command.js';
|
|
22
23
|
import { createModelCommand } from './model.command.js';
|
|
24
|
+
import { createLanguageCommand } from './language.command.js';
|
|
23
25
|
import { onboardingWizard } from '../../../tui/wizards/onboarding/onboarding.wizard.js';
|
|
24
26
|
import { messages } from '../../ui/index.js';
|
|
27
|
+
import { getCliI18n } from '../../i18n.js';
|
|
25
28
|
/**
|
|
26
29
|
* Create the settings command group
|
|
27
30
|
*/
|
|
28
31
|
export function createSettingsCommand() {
|
|
29
32
|
const cmd = new Command('settings')
|
|
30
|
-
.description('
|
|
33
|
+
.description(getCliI18n().t('cli:commands.settings.description'))
|
|
31
34
|
.addCommand(createShowCommand())
|
|
32
35
|
.addCommand(createInitCommand())
|
|
33
36
|
.addCommand(createAgentCommand())
|
|
34
37
|
.addCommand(createIdeCommand())
|
|
35
38
|
.addCommand(createWorkflowCommand())
|
|
36
|
-
.addCommand(createModelCommand())
|
|
39
|
+
.addCommand(createModelCommand())
|
|
40
|
+
.addCommand(createLanguageCommand());
|
|
37
41
|
// Default action: launch the full setup wizard when no subcommand is given
|
|
38
42
|
cmd.action(async () => {
|
|
39
43
|
try {
|
|
@@ -41,7 +45,7 @@ export function createSettingsCommand() {
|
|
|
41
45
|
}
|
|
42
46
|
catch (error) {
|
|
43
47
|
const err = error instanceof Error ? error : new Error(String(error));
|
|
44
|
-
messages.error('
|
|
48
|
+
messages.error(getCliI18n().t('cli:commands.settings.wizardFailed'), err);
|
|
45
49
|
process.exitCode = 1;
|
|
46
50
|
}
|
|
47
51
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/init.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"init.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/init.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAoCpC;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAkD3C"}
|
|
@@ -13,6 +13,7 @@ import { createDefaultSettings } from '../../../../../packages/core/src/domain/f
|
|
|
13
13
|
import { resetSettings, initializeSettings } from '../../../../../packages/core/src/infrastructure/services/settings.service.js';
|
|
14
14
|
import { container } from '../../../../../packages/core/src/infrastructure/di/container.js';
|
|
15
15
|
import { messages } from '../../ui/index.js';
|
|
16
|
+
import { getCliI18n } from '../../i18n.js';
|
|
16
17
|
/**
|
|
17
18
|
* Prompt user for yes/no confirmation.
|
|
18
19
|
* Returns false on EOF (no stdin) to prevent silent modifications.
|
|
@@ -41,8 +42,8 @@ function confirm(message) {
|
|
|
41
42
|
*/
|
|
42
43
|
export function createInitCommand() {
|
|
43
44
|
return new Command('init')
|
|
44
|
-
.description('
|
|
45
|
-
.option('-f, --force', '
|
|
45
|
+
.description(getCliI18n().t('cli:commands.settings.init.description'))
|
|
46
|
+
.option('-f, --force', getCliI18n().t('cli:commands.settings.init.forceOption'))
|
|
46
47
|
.addHelpText('after', `
|
|
47
48
|
Examples:
|
|
48
49
|
$ shep settings init Prompt for confirmation before reset
|
|
@@ -51,10 +52,10 @@ Examples:
|
|
|
51
52
|
.action(async (options) => {
|
|
52
53
|
try {
|
|
53
54
|
if (!options.force) {
|
|
54
|
-
messages.warning('
|
|
55
|
-
const confirmed = await confirm(
|
|
55
|
+
messages.warning(getCliI18n().t('cli:commands.settings.init.resetWarning'));
|
|
56
|
+
const confirmed = await confirm(getCliI18n().t('cli:commands.settings.init.confirmPrompt'));
|
|
56
57
|
if (!confirmed) {
|
|
57
|
-
messages.info('
|
|
58
|
+
messages.info(getCliI18n().t('cli:commands.settings.init.cancelled'));
|
|
58
59
|
return;
|
|
59
60
|
}
|
|
60
61
|
}
|
|
@@ -73,11 +74,11 @@ Examples:
|
|
|
73
74
|
// Update in-memory singleton
|
|
74
75
|
resetSettings();
|
|
75
76
|
initializeSettings(newSettings);
|
|
76
|
-
messages.success('
|
|
77
|
+
messages.success(getCliI18n().t('cli:commands.settings.init.success'));
|
|
77
78
|
}
|
|
78
79
|
catch (error) {
|
|
79
80
|
const err = error instanceof Error ? error : new Error(String(error));
|
|
80
|
-
messages.error('
|
|
81
|
+
messages.error(getCliI18n().t('cli:commands.settings.init.failed'), err);
|
|
81
82
|
process.exitCode = 1;
|
|
82
83
|
}
|
|
83
84
|
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Language Configuration Command
|
|
3
|
+
*
|
|
4
|
+
* Configures the display language used by the Shep CLI and Web UI.
|
|
5
|
+
*
|
|
6
|
+
* Usage:
|
|
7
|
+
* shep settings language # Interactive language picker
|
|
8
|
+
*/
|
|
9
|
+
import { Command } from 'commander';
|
|
10
|
+
/**
|
|
11
|
+
* Create the language configuration command.
|
|
12
|
+
*/
|
|
13
|
+
export declare function createLanguageCommand(): Command;
|
|
14
|
+
//# sourceMappingURL=language.command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"language.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/language.command.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA8BpC;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,OAAO,CAqD/C"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Language Configuration Command
|
|
3
|
+
*
|
|
4
|
+
* Configures the display language used by the Shep CLI and Web UI.
|
|
5
|
+
*
|
|
6
|
+
* Usage:
|
|
7
|
+
* shep settings language # Interactive language picker
|
|
8
|
+
*/
|
|
9
|
+
import { Command } from 'commander';
|
|
10
|
+
import { select } from '@inquirer/prompts';
|
|
11
|
+
import { container } from '../../../../../packages/core/src/infrastructure/di/container.js';
|
|
12
|
+
import { UpdateSettingsUseCase } from '../../../../../packages/core/src/application/use-cases/settings/update-settings.use-case.js';
|
|
13
|
+
import { getSettings, resetSettings, initializeSettings, } from '../../../../../packages/core/src/infrastructure/services/settings.service.js';
|
|
14
|
+
import { Language } from '../../../../../packages/core/src/domain/generated/output.js';
|
|
15
|
+
import { messages } from '../../ui/index.js';
|
|
16
|
+
import { getCliI18n } from '../../i18n.js';
|
|
17
|
+
import { shepTheme } from '../../../tui/themes/shep.theme.js';
|
|
18
|
+
/**
|
|
19
|
+
* Language options with native display names.
|
|
20
|
+
* Native names are used so users can identify their language
|
|
21
|
+
* regardless of the current UI language.
|
|
22
|
+
*/
|
|
23
|
+
const LANGUAGE_OPTIONS = [
|
|
24
|
+
{ value: Language.English, name: 'English' },
|
|
25
|
+
{ value: Language.Russian, name: 'Русский' },
|
|
26
|
+
{ value: Language.Portuguese, name: 'Português' },
|
|
27
|
+
{ value: Language.Spanish, name: 'Español' },
|
|
28
|
+
{ value: Language.Arabic, name: 'العربية' },
|
|
29
|
+
{ value: Language.Hebrew, name: 'עברית' },
|
|
30
|
+
{ value: Language.French, name: 'Français' },
|
|
31
|
+
{ value: Language.German, name: 'Deutsch' },
|
|
32
|
+
];
|
|
33
|
+
/**
|
|
34
|
+
* Create the language configuration command.
|
|
35
|
+
*/
|
|
36
|
+
export function createLanguageCommand() {
|
|
37
|
+
const t = getCliI18n().t;
|
|
38
|
+
return new Command('language')
|
|
39
|
+
.description(t('cli:commands.settings.language.description'))
|
|
40
|
+
.addHelpText('after', `
|
|
41
|
+
Examples:
|
|
42
|
+
$ shep settings language Interactive language picker`)
|
|
43
|
+
.action(async () => {
|
|
44
|
+
try {
|
|
45
|
+
const settings = getSettings();
|
|
46
|
+
const currentLanguage = settings.user?.preferredLanguage ?? Language.English;
|
|
47
|
+
const selectedLanguage = await select({
|
|
48
|
+
message: t('cli:commands.settings.language.selectPrompt'),
|
|
49
|
+
choices: LANGUAGE_OPTIONS.map((opt) => ({
|
|
50
|
+
name: opt.name,
|
|
51
|
+
value: opt.value,
|
|
52
|
+
})),
|
|
53
|
+
default: currentLanguage,
|
|
54
|
+
theme: shepTheme,
|
|
55
|
+
});
|
|
56
|
+
// Persist via UpdateSettingsUseCase
|
|
57
|
+
settings.user = {
|
|
58
|
+
...settings.user,
|
|
59
|
+
preferredLanguage: selectedLanguage,
|
|
60
|
+
};
|
|
61
|
+
const useCase = container.resolve(UpdateSettingsUseCase);
|
|
62
|
+
const updatedSettings = await useCase.execute(settings);
|
|
63
|
+
// Refresh in-memory singleton
|
|
64
|
+
resetSettings();
|
|
65
|
+
initializeSettings(updatedSettings);
|
|
66
|
+
const displayName = LANGUAGE_OPTIONS.find((opt) => opt.value === selectedLanguage)?.name ?? selectedLanguage;
|
|
67
|
+
messages.success(t('cli:commands.settings.language.success', { language: displayName }));
|
|
68
|
+
}
|
|
69
|
+
catch (error) {
|
|
70
|
+
const err = error instanceof Error ? error : new Error(String(error));
|
|
71
|
+
if (err.message.includes('force closed') || err.message.includes('User force closed')) {
|
|
72
|
+
messages.info(t('cli:commands.settings.language.cancelled'));
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
messages.error(t('cli:commands.settings.language.failed'), err);
|
|
76
|
+
process.exitCode = 1;
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/model.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"model.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/model.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAapC;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,OAAO,CAqD5C"}
|
|
@@ -15,12 +15,13 @@ import { container } from '../../../../../packages/core/src/infrastructure/di/co
|
|
|
15
15
|
import { UpdateSettingsUseCase } from '../../../../../packages/core/src/application/use-cases/settings/update-settings.use-case.js';
|
|
16
16
|
import { getSettings, resetSettings, initializeSettings, } from '../../../../../packages/core/src/infrastructure/services/settings.service.js';
|
|
17
17
|
import { messages } from '../../ui/index.js';
|
|
18
|
+
import { getCliI18n } from '../../i18n.js';
|
|
18
19
|
/**
|
|
19
20
|
* Create the model configuration command.
|
|
20
21
|
*/
|
|
21
22
|
export function createModelCommand() {
|
|
22
23
|
return new Command('model')
|
|
23
|
-
.description('
|
|
24
|
+
.description(getCliI18n().t('cli:commands.settings.model.description'))
|
|
24
25
|
.addHelpText('after', `
|
|
25
26
|
Examples:
|
|
26
27
|
$ shep settings model Interactive model picker`)
|
|
@@ -31,12 +32,12 @@ Examples:
|
|
|
31
32
|
const agentType = settings.agent.type;
|
|
32
33
|
const supportedModels = factory.getSupportedModels(agentType);
|
|
33
34
|
if (supportedModels.length === 0) {
|
|
34
|
-
messages.info(
|
|
35
|
+
messages.info(getCliI18n().t('cli:commands.settings.model.noModels', { agentType }));
|
|
35
36
|
return;
|
|
36
37
|
}
|
|
37
38
|
const currentModel = settings.models.default;
|
|
38
39
|
const selectedModel = await select({
|
|
39
|
-
message: '
|
|
40
|
+
message: getCliI18n().t('cli:commands.settings.model.selectPrompt'),
|
|
40
41
|
choices: supportedModels.map((m) => ({ name: m, value: m })),
|
|
41
42
|
default: currentModel,
|
|
42
43
|
});
|
|
@@ -47,15 +48,15 @@ Examples:
|
|
|
47
48
|
// Refresh in-memory singleton
|
|
48
49
|
resetSettings();
|
|
49
50
|
initializeSettings(updatedSettings);
|
|
50
|
-
messages.success(
|
|
51
|
+
messages.success(getCliI18n().t('cli:commands.settings.model.success', { model: selectedModel }));
|
|
51
52
|
}
|
|
52
53
|
catch (error) {
|
|
53
54
|
const err = error instanceof Error ? error : new Error(String(error));
|
|
54
55
|
if (err.message.includes('force closed') || err.message.includes('User force closed')) {
|
|
55
|
-
messages.info('
|
|
56
|
+
messages.info(getCliI18n().t('cli:commands.settings.model.cancelled'));
|
|
56
57
|
return;
|
|
57
58
|
}
|
|
58
|
-
messages.error('
|
|
59
|
+
messages.error(getCliI18n().t('cli:commands.settings.model.failed'), err);
|
|
59
60
|
process.exitCode = 1;
|
|
60
61
|
}
|
|
61
62
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"show.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/show.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,OAAO,EAAU,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"show.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/show.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,OAAO,EAAU,MAAM,WAAW,CAAC;AAQ5C;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CA+B3C"}
|
|
@@ -14,13 +14,14 @@ import { getShepDbPath } from '../../../../../packages/core/src/infrastructure/s
|
|
|
14
14
|
import { getSettings } from '../../../../../packages/core/src/infrastructure/services/settings.service.js';
|
|
15
15
|
import { statSync } from 'node:fs';
|
|
16
16
|
import { messages } from '../../ui/index.js';
|
|
17
|
+
import { getCliI18n } from '../../i18n.js';
|
|
17
18
|
/**
|
|
18
19
|
* Create the show settings command
|
|
19
20
|
*/
|
|
20
21
|
export function createShowCommand() {
|
|
21
22
|
return new Command('show')
|
|
22
|
-
.description('
|
|
23
|
-
.addOption(new Option('-o, --output <format>', '
|
|
23
|
+
.description(getCliI18n().t('cli:commands.settings.show.description'))
|
|
24
|
+
.addOption(new Option('-o, --output <format>', getCliI18n().t('cli:commands.settings.show.formatOption'))
|
|
24
25
|
.choices(['table', 'json', 'yaml'])
|
|
25
26
|
.default('table'))
|
|
26
27
|
.addHelpText('after', `
|
|
@@ -38,7 +39,7 @@ Examples:
|
|
|
38
39
|
}
|
|
39
40
|
catch (error) {
|
|
40
41
|
const err = error instanceof Error ? error : new Error(String(error));
|
|
41
|
-
messages.error('
|
|
42
|
+
messages.error(getCliI18n().t('cli:commands.settings.show.failedToLoad'), err);
|
|
42
43
|
process.exitCode = 1;
|
|
43
44
|
}
|
|
44
45
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/workflow.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"workflow.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/settings/workflow.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAsBpC;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,OAAO,CA8G/C"}
|
|
@@ -14,20 +14,21 @@ import { UpdateSettingsUseCase } from '../../../../../packages/core/src/applicat
|
|
|
14
14
|
import { runWorkflowDefaultsStep } from '../../../tui/wizards/onboarding/steps/workflow-defaults.step.js';
|
|
15
15
|
import { getSettings, resetSettings, initializeSettings, } from '../../../../../packages/core/src/infrastructure/services/settings.service.js';
|
|
16
16
|
import { messages } from '../../ui/index.js';
|
|
17
|
+
import { getCliI18n } from '../../i18n.js';
|
|
17
18
|
/**
|
|
18
19
|
* Create the workflow configuration command.
|
|
19
20
|
*/
|
|
20
21
|
export function createWorkflowCommand() {
|
|
21
22
|
return new Command('workflow')
|
|
22
|
-
.description('
|
|
23
|
-
.option('--allow-prd', '
|
|
24
|
-
.option('--allow-plan', '
|
|
25
|
-
.option('--allow-merge', '
|
|
26
|
-
.option('--allow-all', '
|
|
27
|
-
.option('--push', '
|
|
28
|
-
.option('--no-push', '
|
|
29
|
-
.option('--pr', '
|
|
30
|
-
.option('--no-pr', '
|
|
23
|
+
.description(getCliI18n().t('cli:commands.settings.workflow.description'))
|
|
24
|
+
.option('--allow-prd', getCliI18n().t('cli:commands.settings.workflow.allowPrdOption'))
|
|
25
|
+
.option('--allow-plan', getCliI18n().t('cli:commands.settings.workflow.allowPlanOption'))
|
|
26
|
+
.option('--allow-merge', getCliI18n().t('cli:commands.settings.workflow.allowMergeOption'))
|
|
27
|
+
.option('--allow-all', getCliI18n().t('cli:commands.settings.workflow.allowAllOption'))
|
|
28
|
+
.option('--push', getCliI18n().t('cli:commands.settings.workflow.pushOption'))
|
|
29
|
+
.option('--no-push', getCliI18n().t('cli:commands.settings.workflow.noPushOption'))
|
|
30
|
+
.option('--pr', getCliI18n().t('cli:commands.settings.workflow.prOption'))
|
|
31
|
+
.option('--no-pr', getCliI18n().t('cli:commands.settings.workflow.noPrOption'))
|
|
31
32
|
.addHelpText('after', `
|
|
32
33
|
Examples:
|
|
33
34
|
$ shep settings workflow Interactive wizard
|
|
@@ -93,23 +94,24 @@ Examples:
|
|
|
93
94
|
// Refresh in-memory singleton
|
|
94
95
|
resetSettings();
|
|
95
96
|
initializeSettings(updatedSettings);
|
|
97
|
+
const t = getCliI18n().t;
|
|
96
98
|
const enabled = [
|
|
97
|
-
workflowDefaults.allowPrd && '
|
|
98
|
-
workflowDefaults.allowPlan && '
|
|
99
|
-
workflowDefaults.allowMerge && '
|
|
100
|
-
workflowDefaults.pushOnImplementationComplete && '
|
|
101
|
-
workflowDefaults.openPrOnImplementationComplete && '
|
|
99
|
+
workflowDefaults.allowPrd && t('cli:commands.settings.workflow.allowPrd'),
|
|
100
|
+
workflowDefaults.allowPlan && t('cli:commands.settings.workflow.allowPlan'),
|
|
101
|
+
workflowDefaults.allowMerge && t('cli:commands.settings.workflow.allowMerge'),
|
|
102
|
+
workflowDefaults.pushOnImplementationComplete && t('cli:commands.settings.workflow.push'),
|
|
103
|
+
workflowDefaults.openPrOnImplementationComplete && t('cli:commands.settings.workflow.pr'),
|
|
102
104
|
].filter(Boolean);
|
|
103
|
-
const summary = enabled.length > 0 ? enabled.join(', ') : '
|
|
104
|
-
messages.success(
|
|
105
|
+
const summary = enabled.length > 0 ? enabled.join(', ') : t('cli:commands.settings.workflow.summaryNone');
|
|
106
|
+
messages.success(t('cli:commands.settings.workflow.success', { summary }));
|
|
105
107
|
}
|
|
106
108
|
catch (error) {
|
|
107
109
|
const err = error instanceof Error ? error : new Error(String(error));
|
|
108
110
|
if (err.message.includes('force closed') || err.message.includes('User force closed')) {
|
|
109
|
-
messages.info('
|
|
111
|
+
messages.info(getCliI18n().t('cli:commands.settings.workflow.cancelled'));
|
|
110
112
|
return;
|
|
111
113
|
}
|
|
112
|
-
messages.error('
|
|
114
|
+
messages.error(getCliI18n().t('cli:commands.settings.workflow.failed'), err);
|
|
113
115
|
process.exitCode = 1;
|
|
114
116
|
}
|
|
115
117
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"start.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/start.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAwB,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"start.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/start.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAwB,MAAM,WAAW,CAAC;AAY1D;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,OAAO,CAe5C"}
|
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import { Command, InvalidArgumentError } from 'commander';
|
|
11
11
|
import { startDaemon } from './daemon/start-daemon.js';
|
|
12
|
+
import { getCliI18n } from '../i18n.js';
|
|
12
13
|
function parsePort(value) {
|
|
13
14
|
const port = parseInt(value, 10);
|
|
14
15
|
if (isNaN(port) || port < 1024 || port > 65535) {
|
|
15
|
-
throw new InvalidArgumentError('
|
|
16
|
+
throw new InvalidArgumentError(getCliI18n().t('cli:commands.start.portValidation'));
|
|
16
17
|
}
|
|
17
18
|
return port;
|
|
18
19
|
}
|
|
@@ -20,9 +21,10 @@ function parsePort(value) {
|
|
|
20
21
|
* Create the start command.
|
|
21
22
|
*/
|
|
22
23
|
export function createStartCommand() {
|
|
24
|
+
const t = getCliI18n().t;
|
|
23
25
|
return new Command('start')
|
|
24
|
-
.description('
|
|
25
|
-
.option('-p, --port <number>', '
|
|
26
|
+
.description(t('cli:commands.start.description'))
|
|
27
|
+
.option('-p, --port <number>', t('cli:commands.start.portOption'), parsePort)
|
|
26
28
|
.addHelpText('after', `
|
|
27
29
|
Examples:
|
|
28
30
|
$ shep start Start on default port (4050)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"status.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/status.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"status.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/status.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAmKpC;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,OAAO,CA2G7C"}
|
|
@@ -27,6 +27,7 @@ import { watch } from 'node:fs';
|
|
|
27
27
|
import { container } from '../../../../packages/core/src/infrastructure/di/container.js';
|
|
28
28
|
import { getShepHomeDir, getShepDbPath, getDaemonStatePath, getDaemonLogPath, } from '../../../../packages/core/src/infrastructure/services/filesystem/shep-directory.service.js';
|
|
29
29
|
import { renderDetailView, messages, colors } from '../ui/index.js';
|
|
30
|
+
import { getCliI18n } from '../i18n.js';
|
|
30
31
|
const PS_TIMEOUT_MS = 2000;
|
|
31
32
|
const DEFAULT_LOG_LINES = 50;
|
|
32
33
|
/**
|
|
@@ -156,18 +157,19 @@ function followFile(filePath) {
|
|
|
156
157
|
* Create the status command.
|
|
157
158
|
*/
|
|
158
159
|
export function createStatusCommand() {
|
|
160
|
+
const t = getCliI18n().t;
|
|
159
161
|
return new Command('status')
|
|
160
|
-
.description('
|
|
161
|
-
.option('--logs [lines]',
|
|
162
|
-
.option('-f, --follow', '
|
|
162
|
+
.description(t('cli:commands.status.description'))
|
|
163
|
+
.option('--logs [lines]', t('cli:commands.status.logsOption'))
|
|
164
|
+
.option('-f, --follow', t('cli:commands.status.followOption'))
|
|
163
165
|
.action(async (options) => {
|
|
164
166
|
const logPath = getDaemonLogPath();
|
|
165
167
|
// Handle --logs flag
|
|
166
168
|
if (options.logs !== undefined || options.follow) {
|
|
167
169
|
if (!existsSync(logPath)) {
|
|
168
170
|
messages.newline();
|
|
169
|
-
messages.info('
|
|
170
|
-
messages.info(
|
|
171
|
+
messages.info(t('cli:commands.status.noLogFile'));
|
|
172
|
+
messages.info(t('cli:commands.status.expectedAt', { path: logPath }));
|
|
171
173
|
messages.newline();
|
|
172
174
|
return;
|
|
173
175
|
}
|
|
@@ -180,11 +182,11 @@ export function createStatusCommand() {
|
|
|
180
182
|
console.log(lines.join('\n'));
|
|
181
183
|
}
|
|
182
184
|
else {
|
|
183
|
-
messages.info('
|
|
185
|
+
messages.info(t('cli:commands.status.logEmpty'));
|
|
184
186
|
}
|
|
185
187
|
// Follow mode
|
|
186
188
|
if (options.follow) {
|
|
187
|
-
console.log(colors.muted('
|
|
189
|
+
console.log(colors.muted(t('cli:commands.status.followHint')));
|
|
188
190
|
followFile(logPath);
|
|
189
191
|
return; // Block forever (followFile handles SIGINT)
|
|
190
192
|
}
|
|
@@ -194,8 +196,8 @@ export function createStatusCommand() {
|
|
|
194
196
|
const state = await daemonService.read();
|
|
195
197
|
if (!state || !daemonService.isAlive(state.pid)) {
|
|
196
198
|
messages.newline();
|
|
197
|
-
messages.info('
|
|
198
|
-
messages.info('
|
|
199
|
+
messages.info(t('cli:commands.status.notRunning'));
|
|
200
|
+
messages.info(t('cli:commands.status.startHint'));
|
|
199
201
|
messages.newline();
|
|
200
202
|
return;
|
|
201
203
|
}
|
|
@@ -214,31 +216,37 @@ export function createStatusCommand() {
|
|
|
214
216
|
// Version service not available
|
|
215
217
|
}
|
|
216
218
|
renderDetailView({
|
|
217
|
-
title: '
|
|
219
|
+
title: t('cli:commands.status.title'),
|
|
218
220
|
sections: [
|
|
219
221
|
{
|
|
220
222
|
fields: [
|
|
221
|
-
{ label: '
|
|
222
|
-
{ label: '
|
|
223
|
-
{ label: '
|
|
224
|
-
{ label: 'Started', value: new Date(startedAt).toLocaleString() },
|
|
225
|
-
{ label: 'Uptime', value: uptime },
|
|
226
|
-
{ label: 'CPU %', value: cpu === 'unavailable' ? 'unavailable' : `${cpu}%` },
|
|
223
|
+
{ label: t('cli:commands.status.pidLabel'), value: String(pid) },
|
|
224
|
+
{ label: t('cli:commands.status.portLabel'), value: String(port) },
|
|
225
|
+
{ label: t('cli:commands.status.urlLabel'), value: url },
|
|
227
226
|
{
|
|
228
|
-
label: '
|
|
227
|
+
label: t('cli:commands.status.startedLabel'),
|
|
228
|
+
value: new Date(startedAt).toLocaleString(),
|
|
229
|
+
},
|
|
230
|
+
{ label: t('cli:commands.status.uptimeLabel'), value: uptime },
|
|
231
|
+
{
|
|
232
|
+
label: t('cli:commands.status.cpuLabel'),
|
|
233
|
+
value: cpu === 'unavailable' ? 'unavailable' : `${cpu}%`,
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
label: t('cli:commands.status.memoryLabel'),
|
|
229
237
|
value: rssMb === 'unavailable' ? 'unavailable' : `${rssMb} MB`,
|
|
230
238
|
},
|
|
231
239
|
],
|
|
232
240
|
},
|
|
233
241
|
{
|
|
234
|
-
title: '
|
|
242
|
+
title: t('cli:commands.status.envTitle'),
|
|
235
243
|
fields: [
|
|
236
|
-
{ label: '
|
|
237
|
-
{ label: '
|
|
238
|
-
{ label: '
|
|
239
|
-
{ label: '
|
|
240
|
-
{ label: '
|
|
241
|
-
{ label: '
|
|
244
|
+
{ label: t('cli:commands.status.shepHomeLabel'), value: getShepHomeDir() },
|
|
245
|
+
{ label: t('cli:commands.status.cliVersionLabel'), value: cliVersion },
|
|
246
|
+
{ label: t('cli:commands.status.nodeVersionLabel'), value: process.version },
|
|
247
|
+
{ label: t('cli:commands.status.dbPathLabel'), value: getShepDbPath() },
|
|
248
|
+
{ label: t('cli:commands.status.logFileLabel'), value: logPath },
|
|
249
|
+
{ label: t('cli:commands.status.daemonConfigLabel'), value: getDaemonStatePath() },
|
|
242
250
|
],
|
|
243
251
|
},
|
|
244
252
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stop.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/stop.command.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"stop.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/stop.command.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAOpC;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAe3C"}
|
|
@@ -10,17 +10,19 @@ import { Command } from 'commander';
|
|
|
10
10
|
import { container } from '../../../../packages/core/src/infrastructure/di/container.js';
|
|
11
11
|
import { messages } from '../ui/index.js';
|
|
12
12
|
import { stopDaemon } from './daemon/stop-daemon.js';
|
|
13
|
+
import { getCliI18n } from '../i18n.js';
|
|
13
14
|
/**
|
|
14
15
|
* Create the stop command.
|
|
15
16
|
*/
|
|
16
17
|
export function createStopCommand() {
|
|
17
|
-
|
|
18
|
+
const t = getCliI18n().t;
|
|
19
|
+
return new Command('stop').description(t('cli:commands.stop.description')).action(async () => {
|
|
18
20
|
const daemonService = container.resolve('IDaemonService');
|
|
19
21
|
const state = await daemonService.read();
|
|
20
22
|
// Print a user-facing message when no daemon state is recorded at all.
|
|
21
23
|
// The alive-but-stale case (state exists, PID dead) is handled silently by stopDaemon.
|
|
22
24
|
if (!state) {
|
|
23
|
-
messages.info('
|
|
25
|
+
messages.info(t('cli:commands.stop.noDaemonRunning'));
|
|
24
26
|
}
|
|
25
27
|
await stopDaemon(daemonService);
|
|
26
28
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/tools.command.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"tools.command.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/cli/commands/tools.command.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKpC;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,OAAO,CA2B5C"}
|