@shepai/cli 1.156.0 → 1.157.0-pr496.7e3ce96
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/apis/json-schema/WorkflowConfig.yaml +5 -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/auto-archive-completed.use-case.d.ts +30 -0
- package/dist/packages/core/src/application/use-cases/features/auto-archive-completed.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/auto-archive-completed.use-case.js +75 -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/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +18 -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 +2 -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 +7 -2
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-auto-archive-delay-minutes.d.ts +15 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-auto-archive-delay-minutes.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-auto-archive-delay-minutes.js +20 -0
- 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 +9 -5
- package/dist/packages/core/src/infrastructure/services/auto-archive/auto-archive-watcher.service.d.ts +48 -0
- package/dist/packages/core/src/infrastructure/services/auto-archive/auto-archive-watcher.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/auto-archive/auto-archive-watcher.service.js +101 -0
- 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 +10 -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 +17 -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/dev-server.js +10 -0
- 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 +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/_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/{_b354e40a._.js → _54af0d8c._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_b354e40a._.js.map → _54af0d8c._.js.map} +1 -1
- 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/_5d73b993._.js +4 -0
- package/web/.next/server/chunks/ssr/_5d73b993._.js.map +1 -0
- 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/_8e3fa3c7._.js +3 -0
- package/web/.next/server/chunks/ssr/{_08dc06df._.js.map → _8e3fa3c7._.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_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/{5064470ab185e453.js → 02eb9809370f1b44.js} +2 -2
- 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/0b1c2bbc0169229f.js +1 -0
- package/web/.next/static/chunks/18d0ec4f7b848983.js +1 -0
- package/web/.next/static/chunks/2273b81cd7c7d2af.css +1 -0
- package/web/.next/static/chunks/36768c59216eeaf9.js +1 -0
- package/web/.next/static/chunks/{688971d5bad5dc7c.js → 3deefc76ea55047c.js} +1 -1
- 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/504d1bd34e9f7dd8.js +7 -0
- package/web/.next/static/chunks/{22c459f1877b1e4f.js → 74db65fa7bfb80bd.js} +1 -1
- package/web/.next/static/chunks/7b9ed1c6d9eea406.js +2 -0
- package/web/.next/static/chunks/{f98f811478ff3d9e.js → 7e2465210c64ed91.js} +1 -1
- package/web/.next/static/chunks/9061f08ab7e537a8.js +1 -0
- package/web/.next/static/chunks/{37156b1c0646309f.js → 9d314b2b855bc050.js} +1 -1
- package/web/.next/static/chunks/a272e115fd5ca5a0.js +5 -0
- package/web/.next/static/chunks/{baa593a4681fc66e.js → b8196a574b97e029.js} +1 -1
- 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/ec99e6be5b32ecc9.js +1 -0
- package/web/.next/static/chunks/ed078ae150b9499a.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 → jBQpz78BQ7UsAMcJbVOPf}/_buildManifest.js +0 -0
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → jBQpz78BQ7UsAMcJbVOPf}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → jBQpz78BQ7UsAMcJbVOPf}/_ssgManifest.js +0 -0
|
@@ -0,0 +1,613 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"settings": {
|
|
4
|
+
"description": "נהל הגדרות Shep גלובליות",
|
|
5
|
+
"wizardFailed": "אשף ההגדרות נכשל",
|
|
6
|
+
"show": {
|
|
7
|
+
"description": "הצג הגדרות נוכחיות",
|
|
8
|
+
"formatOption": "פורמט פלט: table|json|yaml",
|
|
9
|
+
"failedToLoad": "טעינת הגדרות נכשלה"
|
|
10
|
+
},
|
|
11
|
+
"init": {
|
|
12
|
+
"description": "אתחל הגדרות לברירות מחדל",
|
|
13
|
+
"forceOption": "דלג על בקשת אישור",
|
|
14
|
+
"resetWarning": "פעולה זו תאפס את כל ההגדרות לברירות מחדל. שקול לגבות את ~/.shep/data תחילה.",
|
|
15
|
+
"confirmPrompt": "האם אתה בטוח? (y/N): ",
|
|
16
|
+
"cancelled": "הפעולה בוטלה.",
|
|
17
|
+
"success": "ההגדרות אותחלו לברירות מחדל.",
|
|
18
|
+
"failed": "אתחול ההגדרות נכשל"
|
|
19
|
+
},
|
|
20
|
+
"agent": {
|
|
21
|
+
"description": "הגדר סוכן קידוד AI",
|
|
22
|
+
"agentOption": "סוג סוכן (לדוגמה, claude-code)",
|
|
23
|
+
"authOption": "שיטת אימות (session או token)",
|
|
24
|
+
"tokenOption": "אסימון API לאימות מבוסס אסימון",
|
|
25
|
+
"authRequired": "--auth נדרש בעת שימוש בדגל --agent",
|
|
26
|
+
"success": "הסוכן הוגדר: {{type}} ({{authMethod}})",
|
|
27
|
+
"cancelled": "ההגדרה בוטלה.",
|
|
28
|
+
"failed": "הגדרת הסוכן נכשלה"
|
|
29
|
+
},
|
|
30
|
+
"ide": {
|
|
31
|
+
"description": "הגדר IDE/עורך מועדף",
|
|
32
|
+
"editorOption": "שם IDE/עורך ({{editors}})",
|
|
33
|
+
"unknownEditor": "עורך לא מוכר \"{{editor}}\". חוקיים: {{validEditors}}",
|
|
34
|
+
"notInPath": "העורך '{{editor}}' לא נמצא ב-PATH. העורך עדיין יישמר.",
|
|
35
|
+
"success": "עורך ברירת מחדל הוגדר ל: {{editor}}",
|
|
36
|
+
"cancelled": "ההגדרה בוטלה.",
|
|
37
|
+
"failed": "הגדרת ה-IDE נכשלה"
|
|
38
|
+
},
|
|
39
|
+
"model": {
|
|
40
|
+
"description": "הגדר מודל LLM ברירת מחדל להרצות סוכן",
|
|
41
|
+
"selectPrompt": "בחר מודל LLM ברירת מחדל",
|
|
42
|
+
"noModels": "אין מודלים זמינים עבור הסוכן \"{{agentType}}\". הגדר סוכן אחר עם: shep settings agent",
|
|
43
|
+
"success": "המודל הוגדר: {{model}}",
|
|
44
|
+
"cancelled": "ההגדרה בוטלה.",
|
|
45
|
+
"failed": "הגדרת המודל נכשלה"
|
|
46
|
+
},
|
|
47
|
+
"workflow": {
|
|
48
|
+
"description": "הגדר התנהגות ברירת מחדל של תהליך עבודה עבור פיצ'רים חדשים",
|
|
49
|
+
"allowPrdOption": "אשר אוטומטית את שלב הדרישות",
|
|
50
|
+
"allowPlanOption": "אשר אוטומטית את שלב התכנון",
|
|
51
|
+
"allowMergeOption": "אשר ומזג אוטומטית לאחר מימוש",
|
|
52
|
+
"allowAllOption": "הפעל את כל שערי האישור",
|
|
53
|
+
"pushOption": "דחוף ענף לשרת בסיום",
|
|
54
|
+
"noPushOption": "אל תדחוף ענף לשרת בסיום",
|
|
55
|
+
"prOption": "פתח PR בסיום",
|
|
56
|
+
"noPrOption": "אל תפתח PR בסיום",
|
|
57
|
+
"success": "ברירות מחדל של תהליך עבודה עודכנו: {{summary}}",
|
|
58
|
+
"summaryNone": "ללא",
|
|
59
|
+
"allowPrd": "אשר PRD",
|
|
60
|
+
"allowPlan": "אשר תוכנית",
|
|
61
|
+
"allowMerge": "אשר מיזוג",
|
|
62
|
+
"push": "דחיפה",
|
|
63
|
+
"pr": "PR",
|
|
64
|
+
"cancelled": "ההגדרה בוטלה.",
|
|
65
|
+
"failed": "הגדרת ברירות מחדל של תהליך עבודה נכשלה"
|
|
66
|
+
},
|
|
67
|
+
"language": {
|
|
68
|
+
"description": "הגדר שפת תצוגה",
|
|
69
|
+
"selectPrompt": "בחר שפת תצוגה",
|
|
70
|
+
"success": "השפה הוגדרה ל: {{language}}",
|
|
71
|
+
"cancelled": "ההגדרה בוטלה.",
|
|
72
|
+
"failed": "הגדרת השפה נכשלה"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"version": {
|
|
76
|
+
"description": "הצג פרטי גרסה",
|
|
77
|
+
"nodeLabel": "Node:",
|
|
78
|
+
"platformLabel": "פלטפורמה:"
|
|
79
|
+
},
|
|
80
|
+
"start": {
|
|
81
|
+
"description": "הפעל את ממשק ה-Web של Shep כתהליך רקע",
|
|
82
|
+
"portOption": "מספר פורט (1024-65535)",
|
|
83
|
+
"portValidation": "הפורט חייב להיות מספר שלם בין 1024 ל-65535"
|
|
84
|
+
},
|
|
85
|
+
"stop": {
|
|
86
|
+
"description": "עצור את תהליך הרקע של ממשק ה-Web של Shep",
|
|
87
|
+
"noDaemonRunning": "אין תהליך Shep פעיל."
|
|
88
|
+
},
|
|
89
|
+
"restart": {
|
|
90
|
+
"description": "הפעל מחדש בעדינות את תהליך ממשק ה-Web של Shep (מפעיל אם לא רץ)",
|
|
91
|
+
"portOption": "מספר פורט (1024-65535)",
|
|
92
|
+
"portValidation": "הפורט חייב להיות מספר שלם בין 1024 ל-65535",
|
|
93
|
+
"daemonNotRunning": "התהליך לא היה פעיל — מפעיל..."
|
|
94
|
+
},
|
|
95
|
+
"status": {
|
|
96
|
+
"description": "הצג את סטטוס תהליך ממשק ה-Web של Shep",
|
|
97
|
+
"logsOption": "הצג N שורות אחרונות מיומן התהליך (ברירת מחדל 50)",
|
|
98
|
+
"followOption": "עקוב אחר פלט יומן התהליך בזמן אמת",
|
|
99
|
+
"noLogFile": "לא נמצא קובץ יומן תהליך.",
|
|
100
|
+
"expectedAt": "צפוי ב: {{path}}",
|
|
101
|
+
"logEmpty": "קובץ היומן ריק.",
|
|
102
|
+
"followHint": "--- עוקב אחר daemon.log (Ctrl+C לעצירה) ---",
|
|
103
|
+
"notRunning": "תהליך Shep אינו פעיל.",
|
|
104
|
+
"startHint": "הרץ `shep start` להפעלתו.",
|
|
105
|
+
"title": "סטטוס תהליך Shep",
|
|
106
|
+
"pidLabel": "PID",
|
|
107
|
+
"portLabel": "פורט",
|
|
108
|
+
"urlLabel": "URL",
|
|
109
|
+
"startedLabel": "הופעל",
|
|
110
|
+
"uptimeLabel": "זמן פעילות",
|
|
111
|
+
"cpuLabel": "CPU %",
|
|
112
|
+
"memoryLabel": "זיכרון (RSS)",
|
|
113
|
+
"envTitle": "סביבה",
|
|
114
|
+
"shepHomeLabel": "תיקיית Shep",
|
|
115
|
+
"cliVersionLabel": "גרסת CLI",
|
|
116
|
+
"nodeVersionLabel": "גרסת Node",
|
|
117
|
+
"dbPathLabel": "נתיב מסד נתונים",
|
|
118
|
+
"logFileLabel": "קובץ יומן",
|
|
119
|
+
"daemonConfigLabel": "הגדרת תהליך"
|
|
120
|
+
},
|
|
121
|
+
"ui": {
|
|
122
|
+
"description": "הפעל את ממשק ה-Web של Shep",
|
|
123
|
+
"portOption": "מספר פורט (1024-65535)",
|
|
124
|
+
"noOpenOption": "אל תפתח דפדפן אוטומטית",
|
|
125
|
+
"portValidation": "הפורט חייב להיות מספר שלם בין 1024 ל-65535",
|
|
126
|
+
"heading": "ממשק Web של Shep",
|
|
127
|
+
"startingDev": "מפעיל שרת ווב (מצב פיתוח)...",
|
|
128
|
+
"starting": "מפעיל שרת ווב...",
|
|
129
|
+
"serverReady": "השרת מוכן ב-{{url}}",
|
|
130
|
+
"pressCtrlC": "לחץ Ctrl+C לעצירה",
|
|
131
|
+
"shuttingDown": "מכבה...",
|
|
132
|
+
"failedToStart": "הפעלת ממשק ה-Web נכשלה"
|
|
133
|
+
},
|
|
134
|
+
"run": {
|
|
135
|
+
"description": "הרץ תהליך עבודה של סוכן AI",
|
|
136
|
+
"agentArgument": "שם הסוכן להרצה (לדוגמה, analyze-repository)",
|
|
137
|
+
"promptOption": "הנחיה לשליחה לסוכן",
|
|
138
|
+
"promptDefault": "נתח את המאגר הזה",
|
|
139
|
+
"repoOption": "נתיב מאגר (ברירת מחדל: תיקייה נוכחית)",
|
|
140
|
+
"streamOption": "הזרם פלט בזמן אמת",
|
|
141
|
+
"runningAgent": "מריץ סוכן:",
|
|
142
|
+
"repositoryLabel": "מאגר: {{path}}",
|
|
143
|
+
"promptLabel": "הנחיה: {{prompt}}",
|
|
144
|
+
"agentCompleted": "הסוכן {{name}} סיים",
|
|
145
|
+
"resultHeading": "תוצאה:",
|
|
146
|
+
"noOutput": "אין פלט",
|
|
147
|
+
"agentWorking": "הסוכן {{name}} עובד...",
|
|
148
|
+
"agentFailed": "הרצת הסוכן נכשלה",
|
|
149
|
+
"failedToRun": "הרצת הסוכן נכשלה"
|
|
150
|
+
},
|
|
151
|
+
"install": {
|
|
152
|
+
"description": "התקן כלי פיתוח",
|
|
153
|
+
"toolArgument": "כלי להתקנה ({{tools}})",
|
|
154
|
+
"howOption": "הצג הוראות התקנה ללא ביצוע",
|
|
155
|
+
"runWithTool": "הרץ {{command}} עם אחת מהאפשרויות הבאות:",
|
|
156
|
+
"unrecognizedTool": "הממ, אני לא מכיר את '{{tool}}'. האם התכוונת לאחד מאלה?",
|
|
157
|
+
"alreadyInstalled": "{{tool}} כבר מותקן",
|
|
158
|
+
"noAutoInstall": "{{tool}} לא תומך בהתקנה אוטומטית",
|
|
159
|
+
"installSuccess": "{{tool}} הותקן בהצלחה",
|
|
160
|
+
"installFailed": "התקנת {{tool}} נכשלה: {{error}}",
|
|
161
|
+
"failedToInstall": "התקנת {{tool}} נכשלה",
|
|
162
|
+
"instructionsHeading": "הוראות התקנה עבור {{name}}",
|
|
163
|
+
"nameLabel": "שם:",
|
|
164
|
+
"summaryLabel": "תקציר:",
|
|
165
|
+
"descriptionLabel": "תיאור:",
|
|
166
|
+
"tagsLabel": "תגיות:",
|
|
167
|
+
"binaryLabel": "קובץ בינארי:",
|
|
168
|
+
"packageManagerLabel": "מנהל חבילות:",
|
|
169
|
+
"installCommandsHeading": "פקודות התקנה",
|
|
170
|
+
"verifyHeading": "אימות התקנה",
|
|
171
|
+
"openDirHeading": "פתח תיקייה",
|
|
172
|
+
"docsHeading": "תיעוד"
|
|
173
|
+
},
|
|
174
|
+
"ide": {
|
|
175
|
+
"description": "פתח עץ עבודה של פיצ'ר ב-IDE",
|
|
176
|
+
"featArgument": "מזהה פיצ'ר או קידומת",
|
|
177
|
+
"openInOption": "פתח ב-{{name}}",
|
|
178
|
+
"openedSuccess": "נפתח {{editor}} ב-{{path}}",
|
|
179
|
+
"failedToOpen": "פתיחת IDE נכשלה"
|
|
180
|
+
},
|
|
181
|
+
"tools": {
|
|
182
|
+
"description": "נהל כלי פיתוח",
|
|
183
|
+
"list": {
|
|
184
|
+
"description": "הצג את כל הכלים הזמינים עם סטטוס התקנתם",
|
|
185
|
+
"installed": "מותקן",
|
|
186
|
+
"missing": "חסר",
|
|
187
|
+
"failedToList": "שגיאה ברשימת הכלים: {{error}}"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"feat": {
|
|
191
|
+
"description": "נהל פיצ'רים לאורך מחזור חיי הפיתוח",
|
|
192
|
+
"new": {
|
|
193
|
+
"description": "צור פיצ'ר חדש",
|
|
194
|
+
"descriptionArgument": "תיאור הפיצ'ר",
|
|
195
|
+
"repoOption": "נתיב מאגר (ברירת מחדל: תיקייה נוכחית)",
|
|
196
|
+
"pushOption": "דחוף ענף לשרת לאחר מימוש",
|
|
197
|
+
"prOption": "פתח PR בסיום המימוש (כולל --push)",
|
|
198
|
+
"noPrOption": "אל תפתח PR בסיום המימוש",
|
|
199
|
+
"allowPrdOption": "אשר אוטומטית עד דרישות, עצור אחרי",
|
|
200
|
+
"allowPlanOption": "אשר אוטומטית עד תכנון, עצור במימוש",
|
|
201
|
+
"allowMergeOption": "אשר אוטומטית את שלב המיזוג",
|
|
202
|
+
"allowAllOption": "הרץ באופן אוטונומי מלא (ללא עצירות אישור)",
|
|
203
|
+
"parentOption": "מזהה פיצ'ר הורה (מלא או קידומת חלקית)",
|
|
204
|
+
"pendingOption": "צור פיצ'ר מבלי להפעיל את הסוכן",
|
|
205
|
+
"fastOption": "דלג על שלבי SDLC ומימש ישירות מההנחיה שלך",
|
|
206
|
+
"modelOption": "מזהה מודל LLM להרצה זו (לדוגמה claude-opus-4-6)",
|
|
207
|
+
"attachOption": "צרף קובץ (ניתן לחזור)",
|
|
208
|
+
"parentNotFound": "פיצ'ר הורה לא נמצא: {{id}}",
|
|
209
|
+
"attachmentNotFound": "קובץ מצורף לא נמצא: {{path}}",
|
|
210
|
+
"spinnerText": "חושב",
|
|
211
|
+
"featureCreated": "פיצ'ר נוצר",
|
|
212
|
+
"blockedInfo": "הפיצ'ר נוצר במצב חסום — ממתין שהפיצ'ר ההורה יגיע למימוש",
|
|
213
|
+
"pendingInfo": "הפיצ'ר נוצר במצב ממתין — הרץ {{command}} להתחלה",
|
|
214
|
+
"idLabel": "מזהה:",
|
|
215
|
+
"nameLabel": "שם:",
|
|
216
|
+
"branchLabel": "ענף:",
|
|
217
|
+
"statusLabel": "סטטוס:",
|
|
218
|
+
"worktreeLabel": "עץ עבודה:",
|
|
219
|
+
"specLabel": "מפרט:",
|
|
220
|
+
"agentLabel": "סוכן:",
|
|
221
|
+
"pendingStatus": "ממתין",
|
|
222
|
+
"spawnedStatus": "הופעל",
|
|
223
|
+
"pushPr": "דחיפה + PR",
|
|
224
|
+
"pushOnly": "דחיפה בלבד",
|
|
225
|
+
"pushLabel": "דחיפה:",
|
|
226
|
+
"reviewLabel": "סקירה:",
|
|
227
|
+
"fullyAutonomous": "אוטונומי מלא",
|
|
228
|
+
"pauseAfterEvery": "עצירה אחרי כל שלב",
|
|
229
|
+
"autoApprove": "אישור אוטומטי: {{approved}}",
|
|
230
|
+
"failedToCreate": "יצירת הפיצ'ר נכשלה"
|
|
231
|
+
},
|
|
232
|
+
"ls": {
|
|
233
|
+
"description": "הצג רשימת פיצ'רים",
|
|
234
|
+
"repoOption": "סנן לפי נתיב מאגר",
|
|
235
|
+
"includeDeletedOption": "כלול פיצ'רים שנמחקו",
|
|
236
|
+
"showArchivedOption": "כלול פיצ'רים מאורכבים",
|
|
237
|
+
"noFeatures": "לא נמצאו פיצ'רים",
|
|
238
|
+
"featuresHeading": "פיצ'רים ({{count}})",
|
|
239
|
+
"nameHeader": "שם",
|
|
240
|
+
"statusHeader": "סטטוס",
|
|
241
|
+
"gatesHeader": "ד ת מ ↑",
|
|
242
|
+
"elapsedHeader": "זמן",
|
|
243
|
+
"doneHeader": "הושלם",
|
|
244
|
+
"failedToList": "הצגת רשימת הפיצ'רים נכשלה"
|
|
245
|
+
},
|
|
246
|
+
"show": {
|
|
247
|
+
"description": "הצג פרטי פיצ'ר",
|
|
248
|
+
"idArgument": "מזהה פיצ'ר",
|
|
249
|
+
"title": "פיצ'ר: {{name}}",
|
|
250
|
+
"idLabel": "מזהה",
|
|
251
|
+
"slugLabel": "סלאג",
|
|
252
|
+
"descriptionLabel": "תיאור",
|
|
253
|
+
"userQueryLabel": "שאילתת משתמש",
|
|
254
|
+
"repositoryLabel": "מאגר",
|
|
255
|
+
"branchLabel": "ענף",
|
|
256
|
+
"statusLabel": "סטטוס",
|
|
257
|
+
"lifecycleLabel": "מחזור חיים",
|
|
258
|
+
"agentLabel": "סוכן",
|
|
259
|
+
"modelLabel": "מודל",
|
|
260
|
+
"worktreeLabel": "עץ עבודה",
|
|
261
|
+
"specDirLabel": "תיקיית מפרט",
|
|
262
|
+
"agentRunLabel": "הרצת סוכן",
|
|
263
|
+
"timestampsTitle": "חותמות זמן",
|
|
264
|
+
"createdLabel": "נוצר",
|
|
265
|
+
"updatedLabel": "עודכן",
|
|
266
|
+
"workflowTitle": "תהליך עבודה",
|
|
267
|
+
"pushLabel": "דחיפה",
|
|
268
|
+
"openPrLabel": "פתח PR",
|
|
269
|
+
"gatesLabel": "שערים",
|
|
270
|
+
"gatesNotSet": "לא הוגדר",
|
|
271
|
+
"pullRequestTitle": "בקשת משיכה",
|
|
272
|
+
"urlLabel": "URL",
|
|
273
|
+
"numberLabel": "מספר",
|
|
274
|
+
"prStatusLabel": "סטטוס",
|
|
275
|
+
"commitLabel": "קומיט",
|
|
276
|
+
"ciLabel": "CI",
|
|
277
|
+
"ciFixesLabel": "תיקוני CI",
|
|
278
|
+
"ciFixAttempts": "{{count}} ניסיון/ות",
|
|
279
|
+
"yesValue": "כן",
|
|
280
|
+
"noValue": "לא",
|
|
281
|
+
"planTitle": "תוכנית",
|
|
282
|
+
"planState": "מצב {{state}}",
|
|
283
|
+
"planTasks": "משימות {{count}}",
|
|
284
|
+
"messagesTitle": "הודעות ({{count}})",
|
|
285
|
+
"phaseTimingTitle": "תזמון שלבים",
|
|
286
|
+
"ciFixHistoryTitle": "היסטוריית תיקוני CI",
|
|
287
|
+
"awaitingApprovalTitle": "ממתין לאישור",
|
|
288
|
+
"awaitingApprovalMessage": "{{phase}} ממתין לסקירתך.",
|
|
289
|
+
"awaitingApprovalApprove": "המשך את הסוכן",
|
|
290
|
+
"awaitingApprovalReject": "בטל עם משוב",
|
|
291
|
+
"currentPhase": "שלב נוכחי",
|
|
292
|
+
"failedToShow": "הצגת הפיצ'ר נכשלה"
|
|
293
|
+
},
|
|
294
|
+
"start": {
|
|
295
|
+
"description": "הפעל פיצ'ר ממתין (הפעל את הסוכן)",
|
|
296
|
+
"idArgument": "מזהה פיצ'ר (או קידומת)",
|
|
297
|
+
"spinnerText": "מפעיל פיצ'ר",
|
|
298
|
+
"blockedWarning": "הפיצ'ר עבר למצב חסום — ההורה לא הגיע למימוש",
|
|
299
|
+
"featureStarted": "הפיצ'ר הופעל",
|
|
300
|
+
"featureLabel": "פיצ'ר:",
|
|
301
|
+
"branchLabel": "ענף:",
|
|
302
|
+
"statusLabel": "סטטוס:",
|
|
303
|
+
"agentLabel": "סוכן:",
|
|
304
|
+
"spawnedStatus": "הופעל",
|
|
305
|
+
"failedToStart": "הפעלת הפיצ'ר נכשלה"
|
|
306
|
+
},
|
|
307
|
+
"approve": {
|
|
308
|
+
"description": "אשר פיצ'ר הממתין לסקירה",
|
|
309
|
+
"idArgument": "מזהה פיצ'ר (מזוהה אוטומטית אם לא צוין)",
|
|
310
|
+
"approvedSuccess": "אושר: {{name}}",
|
|
311
|
+
"phaseLabel": "שלב:",
|
|
312
|
+
"approved": "אושר",
|
|
313
|
+
"agentLabel": "סוכן:",
|
|
314
|
+
"agentResumed": "חודש",
|
|
315
|
+
"failedToApprove": "אישור הפיצ'ר נכשל"
|
|
316
|
+
},
|
|
317
|
+
"reject": {
|
|
318
|
+
"description": "דחה פיצ'ר הממתין לסקירה",
|
|
319
|
+
"idArgument": "מזהה פיצ'ר (מזוהה אוטומטית אם לא צוין)",
|
|
320
|
+
"reasonOption": "משוב דחייה (נדרש)",
|
|
321
|
+
"rejectedWarning": "נדחה: {{name}}",
|
|
322
|
+
"reasonLabel": "סיבה:",
|
|
323
|
+
"iterationLabel": "חזרה:",
|
|
324
|
+
"iterationWarning": "אזהרה: 5+ חזרות. שקול לחדד את ההנחיה במקום.",
|
|
325
|
+
"agentLabel": "סוכן:",
|
|
326
|
+
"agentRerunning": "מריץ מחדש דרישות",
|
|
327
|
+
"failedToReject": "דחיית הפיצ'ר נכשלה"
|
|
328
|
+
},
|
|
329
|
+
"del": {
|
|
330
|
+
"description": "מחק פיצ'ר",
|
|
331
|
+
"idArgument": "מזהה פיצ'ר או קידומת",
|
|
332
|
+
"forceOption": "דלג על בקשת אישור",
|
|
333
|
+
"noCleanupOption": "דלג על ניקוי עץ עבודה וענפים",
|
|
334
|
+
"noClosePrOption": "השאר את בקשת המשיכה פתוחה",
|
|
335
|
+
"confirmDelete": "למחוק את הפיצ'ר \"{{name}}\"?",
|
|
336
|
+
"cancelled": "בוטל",
|
|
337
|
+
"confirmCleanup": "לנקות גם עץ עבודה וענפים?",
|
|
338
|
+
"confirmClosePr": "לסגור גם את בקשת המשיכה? (PR #{{number}})",
|
|
339
|
+
"featureDeleted": "הפיצ'ר נמחק",
|
|
340
|
+
"nameLabel": "שם:",
|
|
341
|
+
"branchLabel": "ענף:",
|
|
342
|
+
"cleanupLabel": "ניקוי:",
|
|
343
|
+
"cleanupDetail": "עץ עבודה, ענף מקומי, ענף מרוחק",
|
|
344
|
+
"prLabel": "PR:",
|
|
345
|
+
"prClosed": "#{{number}} נסגר",
|
|
346
|
+
"failedToDelete": "מחיקת הפיצ'ר נכשלה"
|
|
347
|
+
},
|
|
348
|
+
"resume": {
|
|
349
|
+
"description": "חדש סוכן פיצ'ר שנעצר או נכשל",
|
|
350
|
+
"idArgument": "מזהה פיצ'ר (או קידומת)",
|
|
351
|
+
"agentResumed": "סוכן הפיצ'ר חודש",
|
|
352
|
+
"featureLabel": "פיצ'ר:",
|
|
353
|
+
"runIdLabel": "מזהה הרצה:",
|
|
354
|
+
"failedToResume": "חידוש הפיצ'ר נכשל"
|
|
355
|
+
},
|
|
356
|
+
"review": {
|
|
357
|
+
"description": "סקירה אינטראקטיבית של פיצ'ר הממתין לאישור",
|
|
358
|
+
"idArgument": "מזהה פיצ'ר (מזוהה אוטומטית אם לא צוין)",
|
|
359
|
+
"reviewing": "סוקר: {{name}}",
|
|
360
|
+
"phaseLabel": "שלב:",
|
|
361
|
+
"branchLabel": "ענף:",
|
|
362
|
+
"approvedSuccess": "אושר: {{name}}",
|
|
363
|
+
"changesLabel": "שינויים:",
|
|
364
|
+
"changesUpdated": "{{count}} בחירה/ות עודכנו",
|
|
365
|
+
"commentLabel": "הערה:",
|
|
366
|
+
"agentLabel": "סוכן:",
|
|
367
|
+
"proceedingTo": "ממשיך ל-{{phase}}",
|
|
368
|
+
"rejectedWarning": "נדחה: {{name}}",
|
|
369
|
+
"feedbackLabel": "משוב:",
|
|
370
|
+
"iterationLabel": "חזרה:",
|
|
371
|
+
"iterationWarning": "אזהרה: 5+ חזרות. שקול לחדד את ההנחיה במקום.",
|
|
372
|
+
"agentRerunning": "מריץ מחדש {{phase}}",
|
|
373
|
+
"failedToReview": "סקירת הפיצ'ר נכשלה"
|
|
374
|
+
},
|
|
375
|
+
"logs": {
|
|
376
|
+
"description": "צפה ביומני סוכן הפיצ'ר",
|
|
377
|
+
"idArgument": "מזהה פיצ'ר (או קידומת)",
|
|
378
|
+
"followOption": "עקוב אחר פלט היומן (כמו tail -f)",
|
|
379
|
+
"linesOption": "מספר שורות להציג מהסוף",
|
|
380
|
+
"noAgentRun": "לפיצ'ר \"{{name}}\" אין הרצת סוכן",
|
|
381
|
+
"failedToRead": "קריאת יומני הפיצ'ר נכשלה"
|
|
382
|
+
},
|
|
383
|
+
"adopt": {
|
|
384
|
+
"description": "אמץ ענף קיים כפיצ'ר מנוטר",
|
|
385
|
+
"branchArgument": "שם ענף לאימוץ",
|
|
386
|
+
"repoOption": "נתיב מאגר (ברירת מחדל: תיקייה נוכחית)",
|
|
387
|
+
"spinnerText": "מאמץ ענף",
|
|
388
|
+
"branchAdopted": "הענף אומץ",
|
|
389
|
+
"idLabel": "מזהה:",
|
|
390
|
+
"nameLabel": "שם:",
|
|
391
|
+
"branchLabel": "ענף:",
|
|
392
|
+
"statusLabel": "סטטוס:",
|
|
393
|
+
"prLabel": "PR:",
|
|
394
|
+
"worktreeLabel": "עץ עבודה:",
|
|
395
|
+
"failedToAdopt": "אימוץ הענף נכשל"
|
|
396
|
+
},
|
|
397
|
+
"archive": {
|
|
398
|
+
"description": "ארכב פיצ'ר כדי להסתיר אותו מלוח הבקרה",
|
|
399
|
+
"idArgument": "מזהה פיצ'ר או קידומת",
|
|
400
|
+
"forceOption": "דלג על בקשת אישור",
|
|
401
|
+
"confirmArchive": "לארכב את הפיצ'ר \"{{name}}\"?",
|
|
402
|
+
"cancelled": "בוטל",
|
|
403
|
+
"featureArchived": "הפיצ'ר אורכב",
|
|
404
|
+
"nameLabel": "שם:",
|
|
405
|
+
"failedToArchive": "ארכוב הפיצ'ר נכשל"
|
|
406
|
+
},
|
|
407
|
+
"unarchive": {
|
|
408
|
+
"description": "שחזר פיצ'ר מאורכב למצבו הקודם",
|
|
409
|
+
"idArgument": "מזהה פיצ'ר או קידומת",
|
|
410
|
+
"featureUnarchived": "הפיצ'ר שוחזר מארכיון",
|
|
411
|
+
"nameLabel": "שם:",
|
|
412
|
+
"restoredLabel": "שוחזר:",
|
|
413
|
+
"failedToUnarchive": "שחזור הפיצ'ר מארכיון נכשל"
|
|
414
|
+
},
|
|
415
|
+
"resolveWaiting": {
|
|
416
|
+
"featureNotFound": "פיצ'ר לא נמצא: \"{{id}}\"",
|
|
417
|
+
"noAgentRun": "לפיצ'ר \"{{name}}\" אין הרצת סוכן",
|
|
418
|
+
"notWaitingForApproval": "הפיצ'ר \"{{name}}\" לא ממתין לאישור (סטטוס: {{status}})",
|
|
419
|
+
"noFeaturesWaiting": "אין פיצ'רים הממתינים לאישור במאגר זה",
|
|
420
|
+
"multipleFeaturesWaiting": "מספר פיצ'רים ממתינים לאישור. ציין אחד:"
|
|
421
|
+
}
|
|
422
|
+
},
|
|
423
|
+
"repo": {
|
|
424
|
+
"description": "נהל מאגרים מנוטרים",
|
|
425
|
+
"add": {
|
|
426
|
+
"description": "ייבא מאגר GitHub (שיבוט ורישום)",
|
|
427
|
+
"urlOption": "כתובת URL של מאגר GitHub או קיצור owner/repo",
|
|
428
|
+
"destOption": "עקוף תיקיית יעד לשיבוט",
|
|
429
|
+
"importSuccess": "המאגר יובא: {{name}}",
|
|
430
|
+
"pathInfo": "נתיב: {{path}}",
|
|
431
|
+
"authError": "GitHub CLI לא מאומת. הרץ `gh auth login` להתחברות.",
|
|
432
|
+
"invalidUrl": "כתובת URL לא חוקית של GitHub: {{error}}",
|
|
433
|
+
"supportedFormats": "פורמטים נתמכים: https://github.com/owner/repo, git@github.com:owner/repo.git, או owner/repo",
|
|
434
|
+
"cloneFailed": "השיבוט נכשל: {{error}}",
|
|
435
|
+
"failedToImport": "ייבוא המאגר נכשל"
|
|
436
|
+
},
|
|
437
|
+
"ls": {
|
|
438
|
+
"description": "הצג רשימת מאגרים מנוטרים",
|
|
439
|
+
"title": "מאגרים",
|
|
440
|
+
"idColumn": "מזהה",
|
|
441
|
+
"nameColumn": "שם",
|
|
442
|
+
"featuresColumn": "פיצ'רים",
|
|
443
|
+
"pathColumn": "נתיב",
|
|
444
|
+
"createdColumn": "נוצר",
|
|
445
|
+
"noRepos": "לא נמצאו מאגרים",
|
|
446
|
+
"failedToList": "הצגת רשימת המאגרים נכשלה"
|
|
447
|
+
},
|
|
448
|
+
"show": {
|
|
449
|
+
"description": "הצג פרטי מאגר מנוטר",
|
|
450
|
+
"idArgument": "מזהה מאגר (או קידומת)",
|
|
451
|
+
"title": "מאגר",
|
|
452
|
+
"timestampsTitle": "חותמות זמן",
|
|
453
|
+
"createdLabel": "נוצר",
|
|
454
|
+
"updatedLabel": "עודכן",
|
|
455
|
+
"deletedLabel": "נמחק",
|
|
456
|
+
"featuresTitle": "פיצ'רים ({{count}})",
|
|
457
|
+
"noFeatures": "לא נמצאו פיצ'רים",
|
|
458
|
+
"failedToShow": "הצגת המאגר נכשלה"
|
|
459
|
+
},
|
|
460
|
+
"resolve": {
|
|
461
|
+
"multipleMatch": "מספר מאגרים תואמים לקידומת \"{{id}}\": {{matches}}",
|
|
462
|
+
"notFound": "מאגר לא נמצא: {{id}}"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"agent": {
|
|
466
|
+
"description": "נהל וצפה בהרצות סוכן",
|
|
467
|
+
"show": {
|
|
468
|
+
"description": "הצג פרטי הרצת סוכן",
|
|
469
|
+
"idArgument": "מזהה הרצת סוכן (או קידומת)",
|
|
470
|
+
"title": "הרצת סוכן",
|
|
471
|
+
"pathsTitle": "נתיבים",
|
|
472
|
+
"timingTitle": "תזמון",
|
|
473
|
+
"failedToShow": "הצגת הרצת הסוכן נכשלה"
|
|
474
|
+
},
|
|
475
|
+
"ls": {
|
|
476
|
+
"description": "הצג רשימת כל הרצות הסוכן",
|
|
477
|
+
"title": "הרצות סוכן",
|
|
478
|
+
"idColumn": "מזהה",
|
|
479
|
+
"agentColumn": "סוכן",
|
|
480
|
+
"statusColumn": "סטטוס",
|
|
481
|
+
"durationColumn": "משך",
|
|
482
|
+
"pidColumn": "PID",
|
|
483
|
+
"warningColumn": "אזהרה",
|
|
484
|
+
"noRuns": "לא נמצאו הרצות סוכן",
|
|
485
|
+
"failedToList": "הצגת רשימת הרצות הסוכן נכשלה"
|
|
486
|
+
},
|
|
487
|
+
"stop": {
|
|
488
|
+
"description": "עצור סוכן פעיל",
|
|
489
|
+
"idArgument": "מזהה הרצת סוכן (או קידומת)",
|
|
490
|
+
"stoppedSuccess": "נעצר {{id}}: {{reason}}",
|
|
491
|
+
"failedToStop": "עצירת הרצת הסוכן נכשלה"
|
|
492
|
+
},
|
|
493
|
+
"logs": {
|
|
494
|
+
"description": "צפה ביומני הרצת סוכן",
|
|
495
|
+
"idArgument": "מזהה הרצת סוכן (או קידומת)",
|
|
496
|
+
"followOption": "עקוב אחר פלט היומן (כמו tail -f)",
|
|
497
|
+
"linesOption": "מספר שורות להציג מהסוף",
|
|
498
|
+
"failedToRead": "קריאת יומני הסוכן נכשלה"
|
|
499
|
+
},
|
|
500
|
+
"delete": {
|
|
501
|
+
"description": "מחק רשומת הרצת סוכן",
|
|
502
|
+
"idArgument": "מזהה הרצת סוכן (או קידומת)",
|
|
503
|
+
"forceOption": "כפה מחיקה גם אם רץ",
|
|
504
|
+
"deletedSuccess": "נמחק {{id}}",
|
|
505
|
+
"failedToDelete": "מחיקת הרצת הסוכן נכשלה"
|
|
506
|
+
},
|
|
507
|
+
"approve": {
|
|
508
|
+
"description": "אשר הרצת סוכן מושהית וחדש ביצוע",
|
|
509
|
+
"idArgument": "מזהה הרצת סוכן (או קידומת)",
|
|
510
|
+
"approvedSuccess": "אושר {{id}}: {{reason}}",
|
|
511
|
+
"failedToApprove": "אישור הרצת הסוכן נכשל"
|
|
512
|
+
},
|
|
513
|
+
"reject": {
|
|
514
|
+
"description": "דחה הרצת סוכן מושהית ובטל אותה",
|
|
515
|
+
"idArgument": "מזהה הרצת סוכן (או קידומת)",
|
|
516
|
+
"reasonOption": "סיבת הדחייה",
|
|
517
|
+
"rejectedSuccess": "נדחה {{id}}: {{reason}}",
|
|
518
|
+
"failedToReject": "דחיית הרצת הסוכן נכשלה"
|
|
519
|
+
},
|
|
520
|
+
"resolve": {
|
|
521
|
+
"multipleMatch": "מספר הרצות תואמות לקידומת \"{{id}}\": {{matches}}",
|
|
522
|
+
"notFound": "הרצת סוכן לא נמצאה: {{id}}"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"session": {
|
|
526
|
+
"description": "נהל וצפה בסשנים של ספק הסוכן",
|
|
527
|
+
"ls": {
|
|
528
|
+
"description": "הצג רשימת סשנים של ספק הסוכן",
|
|
529
|
+
"claudeCodeOption": "הצג סשנים של Claude Code",
|
|
530
|
+
"cursorCliOption": "הצג סשנים של Cursor CLI",
|
|
531
|
+
"geminiCliOption": "הצג סשנים של Gemini CLI",
|
|
532
|
+
"limitOption": "מספר מרבי של סשנים להצגה (0 = הכל)",
|
|
533
|
+
"flatOption": "הצג רשימה שטוחה ללא קיבוץ",
|
|
534
|
+
"oneProviderOnly": "ניתן לציין רק דגל ספק אחד בכל פעם",
|
|
535
|
+
"noSessions": "לא נמצאו סשנים",
|
|
536
|
+
"failedToList": "הצגת רשימת הסשנים נכשלה"
|
|
537
|
+
},
|
|
538
|
+
"show": {
|
|
539
|
+
"description": "הצג פרטי סשן של ספק סוכן",
|
|
540
|
+
"idArgument": "מזהה סשן",
|
|
541
|
+
"claudeCodeOption": "שאילתה של סשנים של Claude Code",
|
|
542
|
+
"cursorCliOption": "שאילתה של סשנים של Cursor CLI",
|
|
543
|
+
"geminiCliOption": "שאילתה של סשנים של Gemini CLI",
|
|
544
|
+
"messagesOption": "מספר הודעות להצגה (0 = הכל)",
|
|
545
|
+
"oneProviderOnly": "ניתן לציין רק דגל ספק אחד בכל פעם",
|
|
546
|
+
"sessionNotFound": "סשן לא נמצא: {{error}}",
|
|
547
|
+
"failedToShow": "הצגת הסשן נכשלה",
|
|
548
|
+
"title": "סשן",
|
|
549
|
+
"noMessages": "אין הודעות בסשן זה",
|
|
550
|
+
"noDisplayableMessages": "אין הודעות ניתנות להצגה בסשן זה",
|
|
551
|
+
"messageCount": "{{count}} הודעות",
|
|
552
|
+
"showingMessages": "מציג {{first}} ראשונות ו-{{last}} אחרונות מתוך {{total}} הודעות",
|
|
553
|
+
"messagesSkipped": "··· {{count}} הודעות דולגו ···",
|
|
554
|
+
"userLabel": "אתה",
|
|
555
|
+
"assistantLabel": "עוזר",
|
|
556
|
+
"toolUsage": "שימוש בכלים"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"upgrade": {
|
|
560
|
+
"description": "שדרג את Shep CLI לגרסה האחרונה",
|
|
561
|
+
"versionCheckTimeout": "לא ניתן להשלים את בדיקת הגרסה (תם הזמן)",
|
|
562
|
+
"versionCheckFailed": "לא ניתן להשלים את בדיקת הגרסה",
|
|
563
|
+
"alreadyUpToDate": "כבר מעודכן (v{{version}})",
|
|
564
|
+
"upgradingFromTo": "משדרג מ-v{{current}} ל-v{{latest}}",
|
|
565
|
+
"upgradingToLatest": "משדרג מ-v{{current}} לגרסה האחרונה",
|
|
566
|
+
"stoppingDaemon": "עוצר תהליך לפני שדרוג...",
|
|
567
|
+
"restartingDaemon": "מפעיל מחדש תהליך...",
|
|
568
|
+
"daemonRestarted": "התהליך הופעל מחדש בהצלחה.",
|
|
569
|
+
"upgradeSuccess": "Shep CLI שודרג בהצלחה",
|
|
570
|
+
"upgradeFailed": "השדרוג נכשל",
|
|
571
|
+
"upgradeFailedDaemonRestored": "השדרוג נכשל — התהליך שוחזר על הגרסה הקודמת."
|
|
572
|
+
},
|
|
573
|
+
"_serve": {
|
|
574
|
+
"description": "הפעל את שרת ה-Web (שימוש פנימי בלבד)",
|
|
575
|
+
"portOption": "פורט להאזנה",
|
|
576
|
+
"portValidation": "הפורט חייב להיות מספר שלם בין 1024 ל-65535"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"ui": {
|
|
580
|
+
"installMessages": {
|
|
581
|
+
"alreadyInstalled": "{{tool}} כבר מותקן",
|
|
582
|
+
"installSuccess": "{{tool}} הותקן בהצלחה",
|
|
583
|
+
"installFailed": "התקנת {{tool}} נכשלה: {{error}}",
|
|
584
|
+
"unknownTool": "כלי לא מוכר: \"{{tool}}\". זמינים: {{available}}",
|
|
585
|
+
"checkingAvailability": "בודק אם {{tool}} זמין...",
|
|
586
|
+
"installingHeading": "מתקין {{tool}}"
|
|
587
|
+
},
|
|
588
|
+
"daemon": {
|
|
589
|
+
"alreadyRunning": "Shep כבר פועל ב-{{url}}",
|
|
590
|
+
"heading": "ממשק Web של Shep",
|
|
591
|
+
"startingServer": "מפעיל שרת",
|
|
592
|
+
"daemonSpawned": "התהליך הופעל ב-{{url}}",
|
|
593
|
+
"serverReady": "השרת מוכן ב-{{url}}",
|
|
594
|
+
"serverMayBeStarting": "ייתכן שהשרת עדיין מופעל ב-{{url}}",
|
|
595
|
+
"daemonFailed": "התהליך נכשל בהפעלה (קוד יציאה {{code}}).",
|
|
596
|
+
"checkLogs": "בדוק יומנים: {{path}}",
|
|
597
|
+
"stoppingDaemon": "עוצר תהליך Shep (PID {{pid}})...",
|
|
598
|
+
"sigkillFallback": "התהליך לא נעצר בעדינות, שולח SIGKILL...",
|
|
599
|
+
"daemonStopped": "תהליך Shep נעצר."
|
|
600
|
+
},
|
|
601
|
+
"logViewer": {
|
|
602
|
+
"noLogFile": "לא נמצא קובץ יומן עבור {{label}}",
|
|
603
|
+
"expectedAt": "צפוי ב: {{path}}",
|
|
604
|
+
"logEmpty": "קובץ היומן ריק עבור {{label}}"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"bootstrap": {
|
|
608
|
+
"failedDatabase": "אתחול מסד הנתונים נכשל",
|
|
609
|
+
"failedSettings": "אתחול ההגדרות נכשל",
|
|
610
|
+
"unexpectedError": "אירעה שגיאה בלתי צפויה",
|
|
611
|
+
"unhandledRejection": "דחיית הבטחה שלא טופלה"
|
|
612
|
+
}
|
|
613
|
+
}
|