@shepai/cli 1.166.0-pr513.fdcdd56 → 1.166.0-pr519.ad21990
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/apis/json-schema/AgentType.yaml +1 -0
- package/apis/json-schema/Feature.yaml +5 -17
- package/apis/json-schema/SdlcLifecycle.yaml +0 -1
- package/apis/json-schema/WorkflowConfig.yaml +5 -10
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +2 -2
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +3 -4
- package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.js +2 -3
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +7 -18
- package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +2 -3
- package/dist/packages/core/src/application/use-cases/features/create/types.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.js +0 -13
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +2 -2
- 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 +3 -5
- 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 -2
- package/dist/packages/core/src/domain/generated/output.d.ts +5 -22
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +1 -7
- package/dist/packages/core/src/domain/lifecycle-gates.d.ts +6 -21
- package/dist/packages/core/src/domain/lifecycle-gates.d.ts.map +1 -1
- package/dist/packages/core/src/domain/lifecycle-gates.js +6 -25
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +3 -5
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +1 -3
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +4 -10
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -2
- 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 +2 -7
- package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +3 -5
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -3
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.js +23 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts +63 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.js +494 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +0 -20
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +0 -68
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +8 -19
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.js +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +0 -4
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +0 -17
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +4 -7
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/codex.json +32 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/copilot.json +32 -0
- package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/index.js +1 -5
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.js +5 -18
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/agent-select.prompt.js +5 -0
- package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/check-agent-auth.js +18 -0
- package/dist/src/presentation/web/app/actions/create-feature.d.ts +2 -3
- 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 -3
- package/dist/src/presentation/web/app/actions/get-all-agent-models.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-all-agent-models.js +4 -2
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts +1 -2
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.js +1 -2
- package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/agent-events/route.js +0 -1
- package/dist/src/presentation/web/app/build-feature-node-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/build-feature-node-data.js +2 -4
- package/dist/src/presentation/web/app/build-graph-nodes.js +2 -4
- package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.js +0 -3
- 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 +1 -65
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +2 -3
- 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 +11 -15
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.js +1 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +1 -6
- 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 -16
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.js +2 -0
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.js +1 -0
- package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +0 -2
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -6
- 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 +0 -12
- 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 +2 -7
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts +1 -0
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.js +7 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +11 -3
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +1 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +8 -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 +6 -6
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +3 -3
- package/dist/translations/ar/cli.json +0 -24
- package/dist/translations/ar/tui.json +4 -0
- package/dist/translations/ar/web.json +2 -6
- package/dist/translations/de/cli.json +0 -24
- package/dist/translations/de/tui.json +4 -0
- package/dist/translations/de/web.json +2 -6
- package/dist/translations/en/cli.json +0 -24
- package/dist/translations/en/tui.json +4 -0
- package/dist/translations/en/web.json +2 -6
- package/dist/translations/es/cli.json +0 -24
- package/dist/translations/es/tui.json +4 -0
- package/dist/translations/es/web.json +2 -6
- package/dist/translations/fr/cli.json +0 -24
- package/dist/translations/fr/tui.json +4 -0
- package/dist/translations/fr/web.json +2 -6
- package/dist/translations/he/cli.json +0 -24
- package/dist/translations/he/tui.json +4 -0
- package/dist/translations/he/web.json +2 -6
- package/dist/translations/pt/cli.json +0 -24
- package/dist/translations/pt/tui.json +4 -0
- package/dist/translations/pt/web.json +2 -6
- package/dist/translations/ru/cli.json +0 -24
- package/dist/translations/ru/tui.json +4 -0
- package/dist/translations/ru/web.json +2 -6
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- 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 +1 -1
- package/web/.next/required-server-files.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
- 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 +27 -27
- 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 +30 -30
- 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 +74 -119
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -2
- 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 +74 -119
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -2
- 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 +28 -28
- 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 +28 -28
- 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 +27 -27
- 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 +30 -30
- 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 +74 -119
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -2
- 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 +74 -119
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -2
- 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 +27 -27
- 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 +28 -28
- 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 +28 -28
- 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 +6 -6
- 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 +9 -9
- 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 +11 -11
- 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 +11 -11
- 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 +6 -6
- 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/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.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]__c78383b1._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.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]__1abe77bb._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1abe77bb._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2d0c3840._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2d0c3840._.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]__4ed9b909._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7562afc6._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7562afc6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c1262d08._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_02e01240._.js +1 -1
- package/web/.next/server/chunks/ssr/_02e01240._.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/_0727935d._.js +1 -1
- package/web/.next/server/chunks/ssr/_0727935d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0dc06d07._.js +1 -1
- package/web/.next/server/chunks/ssr/_0dc06d07._.js.map +1 -1
- 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/_18886033._.js +1 -1
- package/web/.next/server/chunks/ssr/_18886033._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_22e00a14._.js +1 -1
- package/web/.next/server/chunks/ssr/_22e00a14._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_4d49a312._.js +3 -0
- package/web/.next/server/chunks/ssr/_4d49a312._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_506a3bc3._.js +9 -0
- package/web/.next/server/chunks/ssr/_506a3bc3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_5119a3df._.js +1 -1
- package/web/.next/server/chunks/ssr/_5119a3df._.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/_9215e9ec._.js +3 -0
- package/web/.next/server/chunks/ssr/_9215e9ec._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_9d8d649c._.js +3 -0
- package/web/.next/server/chunks/ssr/_9d8d649c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a5a5901d._.js +1 -1
- package/web/.next/server/chunks/ssr/_a5a5901d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_ad09f271._.js +1 -1
- package/web/.next/server/chunks/ssr/_ad09f271._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_c3f595c6._.js +1 -1
- package/web/.next/server/chunks/ssr/_c3f595c6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_40c4d64e._.js → _c552776f._.js} +2 -2
- package/web/.next/server/chunks/ssr/_c552776f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_ea9e1556._.js +1 -1
- package/web/.next/server/chunks/ssr/_ea9e1556._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f1ba9be6._.js +2 -2
- package/web/.next/server/chunks/ssr/_f1ba9be6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f33cd07e._.js +2 -2
- package/web/.next/server/chunks/ssr/_f33cd07e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f8b45233._.js +1 -1
- package/web/.next/server/chunks/ssr/_f8b45233._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_52567223._.js → _f92c664f._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_52567223._.js.map → _f92c664f._.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/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_1300ae39._.js +3 -0
- package/web/.next/server/chunks/ssr/node_modules__pnpm_1300ae39._.js.map +1 -0
- 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_app_actions_open-ide_ts_baaca5d5._.js.map +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 +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.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_db9fa0c2._.js +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
- 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 +195 -303
- package/web/.next/static/chunks/{81a9fa188d0bef95.js → 13acc1496333d248.js} +1 -1
- package/web/.next/static/chunks/1e6609edc3367244.css +1 -0
- package/web/.next/static/chunks/2b6dde8371c56840.js +1 -0
- package/web/.next/static/chunks/37e0c4a5491c430b.js +1 -0
- package/web/.next/static/chunks/{b2b1a749ec72f3a3.js → 4a33664239c920a4.js} +3 -3
- package/web/.next/static/chunks/{b810ab3e01ffa9cb.js → 58089b67c924f50d.js} +1 -1
- package/web/.next/static/chunks/{19e7ce7a45b9aba5.js → 594ebd426b1f107c.js} +1 -1
- package/web/.next/static/chunks/{517f9f7b52421b78.js → 5f27ad48b0d09dd9.js} +1 -1
- package/web/.next/static/chunks/{884fceb3e6a67215.js → 65440524d7ee7d13.js} +1 -1
- package/web/.next/static/chunks/{8aa61c1b439f38d6.js → 7480e93a8ab0fc19.js} +1 -1
- package/web/.next/static/chunks/{ed6f26a65c6e7da9.js → 7bdecf3df9b313ae.js} +1 -1
- package/web/.next/static/chunks/7ea9ac36bfba7858.js +1 -0
- package/web/.next/static/chunks/9b0aacedbcc8b705.js +5 -0
- package/web/.next/static/chunks/c0e13e7d1601bc5d.js +1 -0
- package/web/.next/static/chunks/{333b1f2c897337c9.js → ccabcd38a63a6e50.js} +2 -2
- package/web/.next/static/chunks/{2a9af061f4fbe7f5.js → d5366257d6b9f855.js} +1 -1
- package/web/.next/static/chunks/{785d6f99b66ca637.js → e94bdf59bcc28aa9.js} +1 -1
- package/web/public/icons/agents/copilot.svg +12 -0
- package/apis/json-schema/FeatureMode.yaml +0 -8
- package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.d.ts +0 -40
- package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.js +0 -125
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.d.ts +0 -19
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.js +0 -46
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.d.ts +0 -17
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.js +0 -37
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.d.ts +0 -12
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.js +0 -17
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.d.ts +0 -362
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.js +0 -72
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.d.ts +0 -18
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.js +0 -52
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.d.ts +0 -24
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.js +0 -38
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.d.ts +0 -31
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.js +0 -240
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.d.ts +0 -21
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.js +0 -134
- package/dist/src/presentation/cli/commands/feat/feedback.command.d.ts +0 -12
- package/dist/src/presentation/cli/commands/feat/feedback.command.d.ts.map +0 -1
- package/dist/src/presentation/cli/commands/feat/feedback.command.js +0 -64
- package/dist/src/presentation/cli/commands/feat/promote.command.d.ts +0 -13
- package/dist/src/presentation/cli/commands/feat/promote.command.d.ts.map +0 -1
- package/dist/src/presentation/cli/commands/feat/promote.command.js +0 -41
- package/dist/src/presentation/web/app/actions/discard-exploration.d.ts +0 -9
- package/dist/src/presentation/web/app/actions/discard-exploration.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/discard-exploration.js +0 -29
- package/dist/src/presentation/web/app/actions/promote-exploration.d.ts +0 -11
- package/dist/src/presentation/web/app/actions/promote-exploration.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/promote-exploration.js +0 -21
- package/dist/src/presentation/web/app/actions/submit-exploration-feedback.d.ts +0 -12
- package/dist/src/presentation/web/app/actions/submit-exploration-feedback.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/submit-exploration-feedback.js +0 -40
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.d.ts +0 -8
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.js +0 -33
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.d.ts +0 -10
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.js +0 -33
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.d.ts +0 -11
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.js +0 -34
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.d.ts +0 -16
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.js +0 -70
- package/dist/src/presentation/web/components/ui/toggle-group.d.ts +0 -10
- package/dist/src/presentation/web/components/ui/toggle-group.d.ts.map +0 -1
- package/dist/src/presentation/web/components/ui/toggle-group.js +0 -22
- package/dist/src/presentation/web/components/ui/toggle.d.ts +0 -10
- package/dist/src/presentation/web/components/ui/toggle.d.ts.map +0 -1
- package/dist/src/presentation/web/components/ui/toggle.js +0 -26
- package/web/.next/server/chunks/ssr/[root-of-the-server]__58a5b819._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__58a5b819._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__67a193c8._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__67a193c8._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__754fb18e._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__754fb18e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__96ba046b._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__96ba046b._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_12c98a3d._.js +0 -3
- package/web/.next/server/chunks/ssr/_12c98a3d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_40c4d64e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_5eb460b1._.js +0 -3
- package/web/.next/server/chunks/ssr/_5eb460b1._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_997b560b._.js +0 -3
- package/web/.next/server/chunks/ssr/_997b560b._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_acc5e43e._.js +0 -9
- package/web/.next/server/chunks/ssr/_acc5e43e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_b0efd563._.js +0 -3
- package/web/.next/server/chunks/ssr/_b0efd563._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_9453ce8b._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_9453ce8b._.js.map +0 -1
- package/web/.next/static/chunks/04636196914be502.js +0 -1
- package/web/.next/static/chunks/2ceebcc839ee0d4b.js +0 -1
- package/web/.next/static/chunks/51f2de96879281ea.js +0 -1
- package/web/.next/static/chunks/85c9f8d4601354cd.js +0 -1
- package/web/.next/static/chunks/904f10ee1f7ed44f.js +0 -5
- package/web/.next/static/chunks/985b80ac9fd25d02.css +0 -1
- package/web/.next/static/chunks/b474396c44f62500.js +0 -1
- /package/web/.next/static/{POB2JchXPeEvMtK9zhjns → r3FoPi_SX8oY8g4WhyvrZ}/_buildManifest.js +0 -0
- /package/web/.next/static/{POB2JchXPeEvMtK9zhjns → r3FoPi_SX8oY8g4WhyvrZ}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{POB2JchXPeEvMtK9zhjns → r3FoPi_SX8oY8g4WhyvrZ}/_ssgManifest.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/agent-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,QAAA,MAAM,IAAI;;;;;;;CAOmC,CAAC;AAE9C,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAOrB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAQvB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAOtB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAO1B,CAAC"}
|
|
1
|
+
{"version":3,"file":"agent-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/agent-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,QAAA,MAAM,IAAI;;;;;;;CAOmC,CAAC;AAE9C,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAOrB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAQvB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAOtB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAO1B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,KAOxB,CAAC"}
|
package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings-page-client.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.tsx"],"names":[],"mappings":"AA4CA,OAAO,KAAK,EACV,QAAQ,EAKT,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AA8B/E,MAAM,WAAW,uBAAuB;IACtC,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAC1C;AA+QD,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,kBAAkB,GACnB,EAAE,uBAAuB,
|
|
1
|
+
{"version":3,"file":"settings-page-client.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.tsx"],"names":[],"mappings":"AA4CA,OAAO,KAAK,EACV,QAAQ,EAKT,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AA8B/E,MAAM,WAAW,uBAAuB;IACtC,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAC1C;AA+QD,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,kBAAkB,GACnB,EAAE,uBAAuB,2CA24CzB"}
|
|
@@ -158,7 +158,7 @@ export function SettingsPageClient({ settings, shepHome, dbFileSize, availableTe
|
|
|
158
158
|
const [commitEvidence, setCommitEvidence] = useState(settings.workflow.commitEvidence);
|
|
159
159
|
const [ciWatchEnabled, setCiWatchEnabled] = useState(settings.workflow.ciWatchEnabled !== false);
|
|
160
160
|
const [hideCiStatus, setHideCiStatus] = useState(settings.workflow.hideCiStatus !== false);
|
|
161
|
-
const [
|
|
161
|
+
const [defaultFastMode, setDefaultFastMode] = useState(settings.workflow.defaultFastMode !== false);
|
|
162
162
|
// Auto-archive state
|
|
163
163
|
const [autoArchiveEnabled, setAutoArchiveEnabled] = useState((settings.workflow.autoArchiveDelayMinutes ?? 10) > 0);
|
|
164
164
|
const [autoArchiveDelay, setAutoArchiveDelay] = useState(String(settings.workflow.autoArchiveDelayMinutes ?? 10));
|
|
@@ -263,7 +263,7 @@ export function SettingsPageClient({ settings, shepHome, dbFileSize, availableTe
|
|
|
263
263
|
commitEvidence: overrides.commitEvidence ?? commitEvidence,
|
|
264
264
|
ciWatchEnabled: overrides.ciWatchEnabled ?? ciWatchEnabled,
|
|
265
265
|
hideCiStatus: overrides.hideCiStatus ?? hideCiStatus,
|
|
266
|
-
|
|
266
|
+
defaultFastMode: overrides.defaultFastMode ?? defaultFastMode,
|
|
267
267
|
autoArchiveDelayMinutes: archiveEnabled
|
|
268
268
|
? Number.isNaN(archiveDelay) || archiveDelay < 1
|
|
269
269
|
? 10
|
|
@@ -379,10 +379,10 @@ export function SettingsPageClient({ settings, shepHome, dbFileSize, availableTe
|
|
|
379
379
|
label: t('settings.environment.links.configurationGuide'),
|
|
380
380
|
href: 'https://github.com/shep-ai/shep/blob/main/docs/guides/configuration.md',
|
|
381
381
|
},
|
|
382
|
-
], children: t('settings.environment.hint') })] }), _jsxs("div", { id: "section-workflow", className: "grid scroll-mt-18 grid-cols-1 gap-x-5 rounded-lg lg:grid-cols-[1fr_280px]", children: [_jsxs(SettingsSection, { icon: GitBranch, title: t('settings.workflow.title'), description: t('settings.workflow.sectionDescription'), testId: "workflow-settings-section", children: [_jsx(
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
382
|
+
], children: t('settings.environment.hint') })] }), _jsxs("div", { id: "section-workflow", className: "grid scroll-mt-18 grid-cols-1 gap-x-5 rounded-lg lg:grid-cols-[1fr_280px]", children: [_jsxs(SettingsSection, { icon: GitBranch, title: t('settings.workflow.title'), description: t('settings.workflow.sectionDescription'), testId: "workflow-settings-section", children: [_jsx(SwitchRow, { label: t('settings.workflow.defaultFastMode'), description: t('settings.workflow.defaultFastModeDescription'), id: "default-fast-mode", testId: "switch-default-fast-mode", checked: defaultFastMode, onChange: (v) => {
|
|
383
|
+
setDefaultFastMode(v);
|
|
384
|
+
save(buildWorkflowPayload({ defaultFastMode: v }));
|
|
385
|
+
} }), _jsx(SubsectionLabel, { children: t('settings.workflow.subsections.approve') }), _jsx(SwitchRow, { label: t('settings.workflow.autoApprovePrd'), description: t('settings.workflow.autoApprovePrdDescription'), id: "allow-prd", testId: "switch-allow-prd", checked: allowPrd, onChange: (v) => {
|
|
386
386
|
setAllowPrd(v);
|
|
387
387
|
save(buildWorkflowPayload({ allowPrd: v }));
|
|
388
388
|
} }), _jsx(SwitchRow, { label: t('settings.workflow.autoApprovePlan'), description: t('settings.workflow.autoApprovePlanDescription'), id: "allow-plan", testId: "switch-allow-plan", checked: allowPlan, onChange: (v) => {
|
package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js
CHANGED
|
@@ -21,7 +21,7 @@ export const Default = {
|
|
|
21
21
|
ciWatchEnabled: true,
|
|
22
22
|
enableEvidence: false,
|
|
23
23
|
commitEvidence: false,
|
|
24
|
-
|
|
24
|
+
defaultFastMode: true,
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
};
|
|
@@ -53,7 +53,7 @@ export const AllEnabled = {
|
|
|
53
53
|
ciWatchEnabled: true,
|
|
54
54
|
enableEvidence: true,
|
|
55
55
|
commitEvidence: true,
|
|
56
|
-
|
|
56
|
+
defaultFastMode: true,
|
|
57
57
|
},
|
|
58
58
|
},
|
|
59
59
|
};
|
|
@@ -85,7 +85,7 @@ export const WithCiSettings = {
|
|
|
85
85
|
ciWatchEnabled: true,
|
|
86
86
|
enableEvidence: false,
|
|
87
87
|
commitEvidence: false,
|
|
88
|
-
|
|
88
|
+
defaultFastMode: true,
|
|
89
89
|
},
|
|
90
90
|
},
|
|
91
91
|
};
|
|
@@ -204,8 +204,6 @@
|
|
|
204
204
|
"pendingOption": "إنشاء الميزة بدون بدء الوكيل",
|
|
205
205
|
"fastOption": "تخطي مراحل SDLC والتنفيذ مباشرة من الأمر (الافتراضي: مفعّل)",
|
|
206
206
|
"noFastOption": "تشغيل جميع مراحل SDLC (تحليل → متطلبات → خطة → تنفيذ)",
|
|
207
|
-
"exploreOption": "Start an exploration/prototyping session for iterative design",
|
|
208
|
-
"exploreAndFastConflict": "Cannot use --explore and --fast together. Choose one mode.",
|
|
209
207
|
"modelOption": "معرّف نموذج LLM لهذا التشغيل (مثال: claude-opus-4-6)",
|
|
210
208
|
"noRebaseOption": "Skip syncing main from remote before creating the feature branch",
|
|
211
209
|
"attachOption": "إرفاق ملف (قابل للتكرار)",
|
|
@@ -416,28 +414,6 @@
|
|
|
416
414
|
"restoredLabel": "تمت الاستعادة:",
|
|
417
415
|
"failedToUnarchive": "فشل إلغاء أرشفة الميزة"
|
|
418
416
|
},
|
|
419
|
-
"feedback": {
|
|
420
|
-
"description": "Send feedback on an exploration prototype to iterate",
|
|
421
|
-
"idArgument": "Feature ID or prefix",
|
|
422
|
-
"feedbackArgument": "Feedback text for the next iteration",
|
|
423
|
-
"feedbackSubmitted": "Feedback submitted for: {{name}}",
|
|
424
|
-
"iterationLabel": "Iteration:",
|
|
425
|
-
"agentLabel": "Agent:",
|
|
426
|
-
"agentIterating": "iterating on feedback",
|
|
427
|
-
"notExploration": "Feature \"{{name}}\" is not in exploration mode (mode: {{mode}}, lifecycle: {{lifecycle}})",
|
|
428
|
-
"failedToSubmit": "Failed to submit feedback"
|
|
429
|
-
},
|
|
430
|
-
"promote": {
|
|
431
|
-
"description": "Promote an exploration feature to Regular or Fast mode",
|
|
432
|
-
"idArgument": "Feature ID or prefix",
|
|
433
|
-
"fastOption": "Promote to Fast mode (skip SDLC phases)",
|
|
434
|
-
"promoted": "Exploration promoted: {{name}}",
|
|
435
|
-
"modeLabel": "Mode:",
|
|
436
|
-
"statusLabel": "Status:",
|
|
437
|
-
"agentLabel": "Agent:",
|
|
438
|
-
"agentSpawned": "spawned for {{mode}} mode",
|
|
439
|
-
"failedToPromote": "Failed to promote exploration"
|
|
440
|
-
},
|
|
441
417
|
"resolveWaiting": {
|
|
442
418
|
"featureNotFound": "الميزة غير موجودة: \"{{id}}\"",
|
|
443
419
|
"noAgentRun": "الميزة \"{{name}}\" ليس لديها تشغيل وكيل",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"name": "Codex CLI",
|
|
16
16
|
"description": "وكيل Codex CLI من OpenAI للطرفية (نماذج GPT)"
|
|
17
17
|
},
|
|
18
|
+
"copilotCli": {
|
|
19
|
+
"name": "Copilot CLI",
|
|
20
|
+
"description": "GitHub Copilot CLI (الإعداد الافتراضي: Claude Sonnet 4.5، يتطلب اشتراك Copilot)"
|
|
21
|
+
},
|
|
18
22
|
"cursor": {
|
|
19
23
|
"name": "Cursor",
|
|
20
24
|
"description": "وكيل البرمجة بالذكاء الاصطناعي Cursor"
|
|
@@ -68,11 +68,8 @@
|
|
|
68
68
|
"title": "سير العمل",
|
|
69
69
|
"description": "تكوين سلوك PR وبوابات الموافقة وإعدادات CI",
|
|
70
70
|
"sectionDescription": "سلوك الأتمتة بعد التنفيذ",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"modeRegular": "عادي",
|
|
74
|
-
"modeFast": "سريع",
|
|
75
|
-
"modeExploration": "استكشاف",
|
|
71
|
+
"defaultFastMode": "الوضع السريع كافتراضي",
|
|
72
|
+
"defaultFastModeDescription": "تخطي مراحل SDLC والتنفيذ مباشرة من الأمر",
|
|
76
73
|
"subsections": {
|
|
77
74
|
"approve": "الموافقة",
|
|
78
75
|
"evidence": "الأدلة",
|
|
@@ -347,7 +344,6 @@
|
|
|
347
344
|
"cancel": "إلغاء",
|
|
348
345
|
"archive": "أرشفة",
|
|
349
346
|
"fastMode": "الوضع السريع",
|
|
350
|
-
"explorationMode": "Exploration Mode",
|
|
351
347
|
"specDriven": "مبني على المواصفات",
|
|
352
348
|
"copied": "تم النسخ!",
|
|
353
349
|
"chatWithAgent": "محادثة مع الوكيل",
|
|
@@ -204,8 +204,6 @@
|
|
|
204
204
|
"pendingOption": "Feature erstellen, ohne den Agenten zu starten",
|
|
205
205
|
"fastOption": "SDLC-Phasen überspringen und direkt nach Ihrem Prompt implementieren (Standard: ein)",
|
|
206
206
|
"noFastOption": "Alle SDLC-Phasen durchlaufen (Analyse → Anforderungen → Plan → Implementierung)",
|
|
207
|
-
"exploreOption": "Start an exploration/prototyping session for iterative design",
|
|
208
|
-
"exploreAndFastConflict": "Cannot use --explore and --fast together. Choose one mode.",
|
|
209
207
|
"modelOption": "LLM-Modellbezeichnung für diesen Lauf (z.B. claude-opus-4-6)",
|
|
210
208
|
"noRebaseOption": "Skip syncing main from remote before creating the feature branch",
|
|
211
209
|
"attachOption": "Eine Datei anhängen (wiederholbar)",
|
|
@@ -416,28 +414,6 @@
|
|
|
416
414
|
"restoredLabel": "Wiederhergestellt:",
|
|
417
415
|
"failedToUnarchive": "Feature konnte nicht wiederhergestellt werden"
|
|
418
416
|
},
|
|
419
|
-
"feedback": {
|
|
420
|
-
"description": "Send feedback on an exploration prototype to iterate",
|
|
421
|
-
"idArgument": "Feature ID or prefix",
|
|
422
|
-
"feedbackArgument": "Feedback text for the next iteration",
|
|
423
|
-
"feedbackSubmitted": "Feedback submitted for: {{name}}",
|
|
424
|
-
"iterationLabel": "Iteration:",
|
|
425
|
-
"agentLabel": "Agent:",
|
|
426
|
-
"agentIterating": "iterating on feedback",
|
|
427
|
-
"notExploration": "Feature \"{{name}}\" is not in exploration mode (mode: {{mode}}, lifecycle: {{lifecycle}})",
|
|
428
|
-
"failedToSubmit": "Failed to submit feedback"
|
|
429
|
-
},
|
|
430
|
-
"promote": {
|
|
431
|
-
"description": "Promote an exploration feature to Regular or Fast mode",
|
|
432
|
-
"idArgument": "Feature ID or prefix",
|
|
433
|
-
"fastOption": "Promote to Fast mode (skip SDLC phases)",
|
|
434
|
-
"promoted": "Exploration promoted: {{name}}",
|
|
435
|
-
"modeLabel": "Mode:",
|
|
436
|
-
"statusLabel": "Status:",
|
|
437
|
-
"agentLabel": "Agent:",
|
|
438
|
-
"agentSpawned": "spawned for {{mode}} mode",
|
|
439
|
-
"failedToPromote": "Failed to promote exploration"
|
|
440
|
-
},
|
|
441
417
|
"resolveWaiting": {
|
|
442
418
|
"featureNotFound": "Feature nicht gefunden: \"{{id}}\"",
|
|
443
419
|
"noAgentRun": "Feature \"{{name}}\" hat keinen Agentlauf",
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
"name": "Codex CLI",
|
|
10
10
|
"description": "OpenAI Codex CLI Terminal-Agent (GPT-Modelle)"
|
|
11
11
|
},
|
|
12
|
+
"copilotCli": {
|
|
13
|
+
"name": "Copilot CLI",
|
|
14
|
+
"description": "GitHub Copilot CLI (Standard: Claude Sonnet 4.5, erfordert Copilot-Abonnement)"
|
|
15
|
+
},
|
|
12
16
|
"cursor": { "name": "Cursor", "description": "Cursor KI-Coding-Agent" },
|
|
13
17
|
"devMock": {
|
|
14
18
|
"name": "Dev (Mock)",
|
|
@@ -66,11 +66,8 @@
|
|
|
66
66
|
"title": "Workflow",
|
|
67
67
|
"description": "Konfigurieren Sie PR-Verhalten, Genehmigungsstufen und CI-Einstellungen",
|
|
68
68
|
"sectionDescription": "Automatisierungsverhalten nach der Implementierung",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"modeRegular": "Standard",
|
|
72
|
-
"modeFast": "Schnell",
|
|
73
|
-
"modeExploration": "Erkundung",
|
|
69
|
+
"defaultFastMode": "Schnellmodus als Standard",
|
|
70
|
+
"defaultFastModeDescription": "SDLC-Phasen überspringen und direkt aus dem Prompt implementieren",
|
|
74
71
|
"subsections": { "approve": "Genehmigen", "evidence": "Nachweise", "git": "Git" },
|
|
75
72
|
"autoApprovePrd": "PRD automatisch genehmigen",
|
|
76
73
|
"autoApprovePrdDescription": "Manuelle Überprüfung der Anforderungen überspringen",
|
|
@@ -333,7 +330,6 @@
|
|
|
333
330
|
"cancel": "Abbrechen",
|
|
334
331
|
"archive": "Archivieren",
|
|
335
332
|
"fastMode": "Schnellmodus",
|
|
336
|
-
"explorationMode": "Exploration Mode",
|
|
337
333
|
"specDriven": "Spezifikationsbasiert",
|
|
338
334
|
"copied": "Kopiert!",
|
|
339
335
|
"chatWithAgent": "Chat mit Agent",
|
|
@@ -204,8 +204,6 @@
|
|
|
204
204
|
"pendingOption": "Create feature without starting the agent",
|
|
205
205
|
"fastOption": "Skip SDLC phases and implement directly from your prompt (default: on)",
|
|
206
206
|
"noFastOption": "Run full SDLC phases (analyze → requirements → plan → implement)",
|
|
207
|
-
"exploreOption": "Start an exploration/prototyping session for iterative design",
|
|
208
|
-
"exploreAndFastConflict": "Cannot use --explore and --fast together. Choose one mode.",
|
|
209
207
|
"modelOption": "LLM model identifier for this run (e.g. claude-opus-4-6)",
|
|
210
208
|
"noRebaseOption": "Skip syncing main from remote before creating the feature branch",
|
|
211
209
|
"attachOption": "Attach a file (repeatable)",
|
|
@@ -416,28 +414,6 @@
|
|
|
416
414
|
"restoredLabel": "Restored:",
|
|
417
415
|
"failedToUnarchive": "Failed to unarchive feature"
|
|
418
416
|
},
|
|
419
|
-
"feedback": {
|
|
420
|
-
"description": "Send feedback on an exploration prototype to iterate",
|
|
421
|
-
"idArgument": "Feature ID or prefix",
|
|
422
|
-
"feedbackArgument": "Feedback text for the next iteration",
|
|
423
|
-
"feedbackSubmitted": "Feedback submitted for: {{name}}",
|
|
424
|
-
"iterationLabel": "Iteration:",
|
|
425
|
-
"agentLabel": "Agent:",
|
|
426
|
-
"agentIterating": "iterating on feedback",
|
|
427
|
-
"notExploration": "Feature \"{{name}}\" is not in exploration mode (mode: {{mode}}, lifecycle: {{lifecycle}})",
|
|
428
|
-
"failedToSubmit": "Failed to submit feedback"
|
|
429
|
-
},
|
|
430
|
-
"promote": {
|
|
431
|
-
"description": "Promote an exploration feature to Regular or Fast mode",
|
|
432
|
-
"idArgument": "Feature ID or prefix",
|
|
433
|
-
"fastOption": "Promote to Fast mode (skip SDLC phases)",
|
|
434
|
-
"promoted": "Exploration promoted: {{name}}",
|
|
435
|
-
"modeLabel": "Mode:",
|
|
436
|
-
"statusLabel": "Status:",
|
|
437
|
-
"agentLabel": "Agent:",
|
|
438
|
-
"agentSpawned": "spawned for {{mode}} mode",
|
|
439
|
-
"failedToPromote": "Failed to promote exploration"
|
|
440
|
-
},
|
|
441
417
|
"resolveWaiting": {
|
|
442
418
|
"featureNotFound": "Feature not found: \"{{id}}\"",
|
|
443
419
|
"noAgentRun": "Feature \"{{name}}\" has no agent run",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"name": "Codex CLI",
|
|
16
16
|
"description": "OpenAI's Codex CLI terminal agent (GPT models)"
|
|
17
17
|
},
|
|
18
|
+
"copilotCli": {
|
|
19
|
+
"name": "Copilot CLI",
|
|
20
|
+
"description": "GitHub Copilot CLI (Claude Sonnet 4.5 default, requires Copilot subscription)"
|
|
21
|
+
},
|
|
18
22
|
"cursor": {
|
|
19
23
|
"name": "Cursor",
|
|
20
24
|
"description": "Cursor AI coding agent"
|
|
@@ -68,11 +68,8 @@
|
|
|
68
68
|
"title": "Workflow",
|
|
69
69
|
"description": "Configure PR behavior, approval gates, and CI settings",
|
|
70
70
|
"sectionDescription": "Automation behavior after implementation",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"modeRegular": "Regular",
|
|
74
|
-
"modeFast": "Fast",
|
|
75
|
-
"modeExploration": "Exploration",
|
|
71
|
+
"defaultFastMode": "Fast mode by default",
|
|
72
|
+
"defaultFastModeDescription": "Skip SDLC phases and implement directly from prompt",
|
|
76
73
|
"subsections": {
|
|
77
74
|
"approve": "Approve",
|
|
78
75
|
"evidence": "Evidence",
|
|
@@ -347,7 +344,6 @@
|
|
|
347
344
|
"cancel": "Cancel",
|
|
348
345
|
"archive": "Archive",
|
|
349
346
|
"fastMode": "Fast Mode",
|
|
350
|
-
"explorationMode": "Exploration Mode",
|
|
351
347
|
"specDriven": "Spec Driven",
|
|
352
348
|
"copied": "Copied!",
|
|
353
349
|
"chatWithAgent": "Chat with agent",
|
|
@@ -204,8 +204,6 @@
|
|
|
204
204
|
"pendingOption": "Crear funcionalidad sin iniciar el agente",
|
|
205
205
|
"fastOption": "Omitir las fases SDLC e implementar directamente desde tu prompt (predeterminado: activado)",
|
|
206
206
|
"noFastOption": "Ejecutar todas las fases SDLC (analizar → requisitos → plan → implementar)",
|
|
207
|
-
"exploreOption": "Start an exploration/prototyping session for iterative design",
|
|
208
|
-
"exploreAndFastConflict": "Cannot use --explore and --fast together. Choose one mode.",
|
|
209
207
|
"modelOption": "Identificador del modelo LLM para esta ejecución (ej., claude-opus-4-6)",
|
|
210
208
|
"noRebaseOption": "Skip syncing main from remote before creating the feature branch",
|
|
211
209
|
"attachOption": "Adjuntar un archivo (repetible)",
|
|
@@ -416,28 +414,6 @@
|
|
|
416
414
|
"restoredLabel": "Restaurado:",
|
|
417
415
|
"failedToUnarchive": "Error al desarchivar la funcionalidad"
|
|
418
416
|
},
|
|
419
|
-
"feedback": {
|
|
420
|
-
"description": "Send feedback on an exploration prototype to iterate",
|
|
421
|
-
"idArgument": "Feature ID or prefix",
|
|
422
|
-
"feedbackArgument": "Feedback text for the next iteration",
|
|
423
|
-
"feedbackSubmitted": "Feedback submitted for: {{name}}",
|
|
424
|
-
"iterationLabel": "Iteration:",
|
|
425
|
-
"agentLabel": "Agent:",
|
|
426
|
-
"agentIterating": "iterating on feedback",
|
|
427
|
-
"notExploration": "Feature \"{{name}}\" is not in exploration mode (mode: {{mode}}, lifecycle: {{lifecycle}})",
|
|
428
|
-
"failedToSubmit": "Failed to submit feedback"
|
|
429
|
-
},
|
|
430
|
-
"promote": {
|
|
431
|
-
"description": "Promote an exploration feature to Regular or Fast mode",
|
|
432
|
-
"idArgument": "Feature ID or prefix",
|
|
433
|
-
"fastOption": "Promote to Fast mode (skip SDLC phases)",
|
|
434
|
-
"promoted": "Exploration promoted: {{name}}",
|
|
435
|
-
"modeLabel": "Mode:",
|
|
436
|
-
"statusLabel": "Status:",
|
|
437
|
-
"agentLabel": "Agent:",
|
|
438
|
-
"agentSpawned": "spawned for {{mode}} mode",
|
|
439
|
-
"failedToPromote": "Failed to promote exploration"
|
|
440
|
-
},
|
|
441
417
|
"resolveWaiting": {
|
|
442
418
|
"featureNotFound": "Funcionalidad no encontrada: \"{{id}}\"",
|
|
443
419
|
"noAgentRun": "La funcionalidad \"{{name}}\" no tiene ejecución de agente",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"name": "Codex CLI",
|
|
16
16
|
"description": "Agente de terminal Codex CLI de OpenAI (modelos GPT)"
|
|
17
17
|
},
|
|
18
|
+
"copilotCli": {
|
|
19
|
+
"name": "Copilot CLI",
|
|
20
|
+
"description": "GitHub Copilot CLI (Claude Sonnet 4.5 por defecto, requiere suscripción a Copilot)"
|
|
21
|
+
},
|
|
18
22
|
"cursor": {
|
|
19
23
|
"name": "Cursor",
|
|
20
24
|
"description": "Agente de codificación AI Cursor"
|
|
@@ -68,11 +68,8 @@
|
|
|
68
68
|
"title": "Flujo de trabajo",
|
|
69
69
|
"description": "Configura el comportamiento de PR, puertas de aprobación y configuración de CI",
|
|
70
70
|
"sectionDescription": "Comportamiento de automatización después de la implementación",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"modeRegular": "Regular",
|
|
74
|
-
"modeFast": "Rápido",
|
|
75
|
-
"modeExploration": "Exploración",
|
|
71
|
+
"defaultFastMode": "Modo rápido por defecto",
|
|
72
|
+
"defaultFastModeDescription": "Omitir fases SDLC e implementar directamente desde el prompt",
|
|
76
73
|
"subsections": {
|
|
77
74
|
"approve": "Aprobar",
|
|
78
75
|
"evidence": "Evidencia",
|
|
@@ -347,7 +344,6 @@
|
|
|
347
344
|
"cancel": "Cancelar",
|
|
348
345
|
"archive": "Archivar",
|
|
349
346
|
"fastMode": "Modo rápido",
|
|
350
|
-
"explorationMode": "Exploration Mode",
|
|
351
347
|
"specDriven": "Basado en especificación",
|
|
352
348
|
"copied": "¡Copiado!",
|
|
353
349
|
"chatWithAgent": "Chat con agente",
|
|
@@ -204,8 +204,6 @@
|
|
|
204
204
|
"pendingOption": "Créer la fonctionnalité sans démarrer l'agent",
|
|
205
205
|
"fastOption": "Ignorer les phases SDLC et implémenter directement à partir de votre invite (par défaut: activé)",
|
|
206
206
|
"noFastOption": "Exécuter toutes les phases SDLC (analyser → exigences → plan → implémenter)",
|
|
207
|
-
"exploreOption": "Start an exploration/prototyping session for iterative design",
|
|
208
|
-
"exploreAndFastConflict": "Cannot use --explore and --fast together. Choose one mode.",
|
|
209
207
|
"modelOption": "Identifiant du modèle LLM pour cette exécution (par ex. claude-opus-4-6)",
|
|
210
208
|
"noRebaseOption": "Skip syncing main from remote before creating the feature branch",
|
|
211
209
|
"attachOption": "Joindre un fichier (répétable)",
|
|
@@ -416,28 +414,6 @@
|
|
|
416
414
|
"restoredLabel": "Restauré :",
|
|
417
415
|
"failedToUnarchive": "Échec de la désarchivation de la fonctionnalité"
|
|
418
416
|
},
|
|
419
|
-
"feedback": {
|
|
420
|
-
"description": "Send feedback on an exploration prototype to iterate",
|
|
421
|
-
"idArgument": "Feature ID or prefix",
|
|
422
|
-
"feedbackArgument": "Feedback text for the next iteration",
|
|
423
|
-
"feedbackSubmitted": "Feedback submitted for: {{name}}",
|
|
424
|
-
"iterationLabel": "Iteration:",
|
|
425
|
-
"agentLabel": "Agent:",
|
|
426
|
-
"agentIterating": "iterating on feedback",
|
|
427
|
-
"notExploration": "Feature \"{{name}}\" is not in exploration mode (mode: {{mode}}, lifecycle: {{lifecycle}})",
|
|
428
|
-
"failedToSubmit": "Failed to submit feedback"
|
|
429
|
-
},
|
|
430
|
-
"promote": {
|
|
431
|
-
"description": "Promote an exploration feature to Regular or Fast mode",
|
|
432
|
-
"idArgument": "Feature ID or prefix",
|
|
433
|
-
"fastOption": "Promote to Fast mode (skip SDLC phases)",
|
|
434
|
-
"promoted": "Exploration promoted: {{name}}",
|
|
435
|
-
"modeLabel": "Mode:",
|
|
436
|
-
"statusLabel": "Status:",
|
|
437
|
-
"agentLabel": "Agent:",
|
|
438
|
-
"agentSpawned": "spawned for {{mode}} mode",
|
|
439
|
-
"failedToPromote": "Failed to promote exploration"
|
|
440
|
-
},
|
|
441
417
|
"resolveWaiting": {
|
|
442
418
|
"featureNotFound": "Fonctionnalité introuvable : \"{{id}}\"",
|
|
443
419
|
"noAgentRun": "La fonctionnalité \"{{name}}\" n'a pas d'exécution d'agent",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"name": "Codex CLI",
|
|
16
16
|
"description": "Agent terminal Codex CLI d'OpenAI (modèles GPT)"
|
|
17
17
|
},
|
|
18
|
+
"copilotCli": {
|
|
19
|
+
"name": "Copilot CLI",
|
|
20
|
+
"description": "GitHub Copilot CLI (Claude Sonnet 4.5 par défaut, abonnement Copilot requis)"
|
|
21
|
+
},
|
|
18
22
|
"cursor": {
|
|
19
23
|
"name": "Cursor",
|
|
20
24
|
"description": "Agent de codage IA Cursor"
|
|
@@ -68,11 +68,8 @@
|
|
|
68
68
|
"title": "Workflow",
|
|
69
69
|
"description": "Configurez le comportement des PR, les portes d'approbation et les paramètres CI",
|
|
70
70
|
"sectionDescription": "Comportement d'automatisation après l'implémentation",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"modeRegular": "Standard",
|
|
74
|
-
"modeFast": "Rapide",
|
|
75
|
-
"modeExploration": "Exploration",
|
|
71
|
+
"defaultFastMode": "Mode rapide par défaut",
|
|
72
|
+
"defaultFastModeDescription": "Ignorer les phases SDLC et implémenter directement depuis le prompt",
|
|
76
73
|
"subsections": {
|
|
77
74
|
"approve": "Approuver",
|
|
78
75
|
"evidence": "Preuves",
|
|
@@ -347,7 +344,6 @@
|
|
|
347
344
|
"cancel": "Annuler",
|
|
348
345
|
"archive": "Archiver",
|
|
349
346
|
"fastMode": "Mode rapide",
|
|
350
|
-
"explorationMode": "Exploration Mode",
|
|
351
347
|
"specDriven": "Basé sur les spécifications",
|
|
352
348
|
"copied": "Copié !",
|
|
353
349
|
"chatWithAgent": "Chat avec l'agent",
|
|
@@ -204,8 +204,6 @@
|
|
|
204
204
|
"pendingOption": "צור פיצ'ר מבלי להפעיל את הסוכן",
|
|
205
205
|
"fastOption": "דלג על שלבי SDLC ומימש ישירות מההנחיה שלך (ברירת מחדל: מופעל)",
|
|
206
206
|
"noFastOption": "הרץ את כל שלבי ה-SDLC (ניתוח → דרישות → תוכנית → מימוש)",
|
|
207
|
-
"exploreOption": "Start an exploration/prototyping session for iterative design",
|
|
208
|
-
"exploreAndFastConflict": "Cannot use --explore and --fast together. Choose one mode.",
|
|
209
207
|
"modelOption": "מזהה מודל LLM להרצה זו (לדוגמה claude-opus-4-6)",
|
|
210
208
|
"noRebaseOption": "Skip syncing main from remote before creating the feature branch",
|
|
211
209
|
"attachOption": "צרף קובץ (ניתן לחזור)",
|
|
@@ -416,28 +414,6 @@
|
|
|
416
414
|
"restoredLabel": "שוחזר:",
|
|
417
415
|
"failedToUnarchive": "שחזור הפיצ'ר מארכיון נכשל"
|
|
418
416
|
},
|
|
419
|
-
"feedback": {
|
|
420
|
-
"description": "Send feedback on an exploration prototype to iterate",
|
|
421
|
-
"idArgument": "Feature ID or prefix",
|
|
422
|
-
"feedbackArgument": "Feedback text for the next iteration",
|
|
423
|
-
"feedbackSubmitted": "Feedback submitted for: {{name}}",
|
|
424
|
-
"iterationLabel": "Iteration:",
|
|
425
|
-
"agentLabel": "Agent:",
|
|
426
|
-
"agentIterating": "iterating on feedback",
|
|
427
|
-
"notExploration": "Feature \"{{name}}\" is not in exploration mode (mode: {{mode}}, lifecycle: {{lifecycle}})",
|
|
428
|
-
"failedToSubmit": "Failed to submit feedback"
|
|
429
|
-
},
|
|
430
|
-
"promote": {
|
|
431
|
-
"description": "Promote an exploration feature to Regular or Fast mode",
|
|
432
|
-
"idArgument": "Feature ID or prefix",
|
|
433
|
-
"fastOption": "Promote to Fast mode (skip SDLC phases)",
|
|
434
|
-
"promoted": "Exploration promoted: {{name}}",
|
|
435
|
-
"modeLabel": "Mode:",
|
|
436
|
-
"statusLabel": "Status:",
|
|
437
|
-
"agentLabel": "Agent:",
|
|
438
|
-
"agentSpawned": "spawned for {{mode}} mode",
|
|
439
|
-
"failedToPromote": "Failed to promote exploration"
|
|
440
|
-
},
|
|
441
417
|
"resolveWaiting": {
|
|
442
418
|
"featureNotFound": "פיצ'ר לא נמצא: \"{{id}}\"",
|
|
443
419
|
"noAgentRun": "לפיצ'ר \"{{name}}\" אין הרצת סוכן",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"name": "Codex CLI",
|
|
16
16
|
"description": "סוכן טרמינל Codex CLI של OpenAI (מודלי GPT)"
|
|
17
17
|
},
|
|
18
|
+
"copilotCli": {
|
|
19
|
+
"name": "Copilot CLI",
|
|
20
|
+
"description": "GitHub Copilot CLI (ברירת מחדל: Claude Sonnet 4.5, דורש מנוי Copilot)"
|
|
21
|
+
},
|
|
18
22
|
"cursor": {
|
|
19
23
|
"name": "Cursor",
|
|
20
24
|
"description": "סוכן קידוד Cursor AI"
|
|
@@ -68,11 +68,8 @@
|
|
|
68
68
|
"title": "תהליך עבודה",
|
|
69
69
|
"description": "הגדר התנהגות PR, שערי אישור והגדרות CI",
|
|
70
70
|
"sectionDescription": "התנהגות אוטומציה לאחר מימוש",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"modeRegular": "רגיל",
|
|
74
|
-
"modeFast": "מהיר",
|
|
75
|
-
"modeExploration": "חקירה",
|
|
71
|
+
"defaultFastMode": "מצב מהיר כברירת מחדל",
|
|
72
|
+
"defaultFastModeDescription": "דילוג על שלבי SDLC ויישום ישירות מהפרומפט",
|
|
76
73
|
"subsections": {
|
|
77
74
|
"approve": "אישור",
|
|
78
75
|
"evidence": "ראיות",
|
|
@@ -347,7 +344,6 @@
|
|
|
347
344
|
"cancel": "ביטול",
|
|
348
345
|
"archive": "ארכיון",
|
|
349
346
|
"fastMode": "מצב מהיר",
|
|
350
|
-
"explorationMode": "Exploration Mode",
|
|
351
347
|
"specDriven": "מבוסס מפרט",
|
|
352
348
|
"copied": "הועתק!",
|
|
353
349
|
"chatWithAgent": "צ'אט עם הסוכן",
|
|
@@ -204,8 +204,6 @@
|
|
|
204
204
|
"pendingOption": "Criar recurso sem iniciar o agente",
|
|
205
205
|
"fastOption": "Pular fases do SDLC e implementar diretamente a partir do seu prompt (padrão: ativado)",
|
|
206
206
|
"noFastOption": "Executar todas as fases do SDLC (analisar → requisitos → plano → implementar)",
|
|
207
|
-
"exploreOption": "Start an exploration/prototyping session for iterative design",
|
|
208
|
-
"exploreAndFastConflict": "Cannot use --explore and --fast together. Choose one mode.",
|
|
209
207
|
"modelOption": "Identificador do modelo LLM para esta execução (ex: claude-opus-4-6)",
|
|
210
208
|
"noRebaseOption": "Skip syncing main from remote before creating the feature branch",
|
|
211
209
|
"attachOption": "Anexar um arquivo (repetível)",
|
|
@@ -416,28 +414,6 @@
|
|
|
416
414
|
"restoredLabel": "Restaurado:",
|
|
417
415
|
"failedToUnarchive": "Falha ao desarquivar recurso"
|
|
418
416
|
},
|
|
419
|
-
"feedback": {
|
|
420
|
-
"description": "Send feedback on an exploration prototype to iterate",
|
|
421
|
-
"idArgument": "Feature ID or prefix",
|
|
422
|
-
"feedbackArgument": "Feedback text for the next iteration",
|
|
423
|
-
"feedbackSubmitted": "Feedback submitted for: {{name}}",
|
|
424
|
-
"iterationLabel": "Iteration:",
|
|
425
|
-
"agentLabel": "Agent:",
|
|
426
|
-
"agentIterating": "iterating on feedback",
|
|
427
|
-
"notExploration": "Feature \"{{name}}\" is not in exploration mode (mode: {{mode}}, lifecycle: {{lifecycle}})",
|
|
428
|
-
"failedToSubmit": "Failed to submit feedback"
|
|
429
|
-
},
|
|
430
|
-
"promote": {
|
|
431
|
-
"description": "Promote an exploration feature to Regular or Fast mode",
|
|
432
|
-
"idArgument": "Feature ID or prefix",
|
|
433
|
-
"fastOption": "Promote to Fast mode (skip SDLC phases)",
|
|
434
|
-
"promoted": "Exploration promoted: {{name}}",
|
|
435
|
-
"modeLabel": "Mode:",
|
|
436
|
-
"statusLabel": "Status:",
|
|
437
|
-
"agentLabel": "Agent:",
|
|
438
|
-
"agentSpawned": "spawned for {{mode}} mode",
|
|
439
|
-
"failedToPromote": "Failed to promote exploration"
|
|
440
|
-
},
|
|
441
417
|
"resolveWaiting": {
|
|
442
418
|
"featureNotFound": "Recurso não encontrado: \"{{id}}\"",
|
|
443
419
|
"noAgentRun": "Recurso \"{{name}}\" não tem execução de agente",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"name": "Codex CLI",
|
|
16
16
|
"description": "Agente de terminal Codex CLI da OpenAI (modelos GPT)"
|
|
17
17
|
},
|
|
18
|
+
"copilotCli": {
|
|
19
|
+
"name": "Copilot CLI",
|
|
20
|
+
"description": "GitHub Copilot CLI (padrão: Claude Sonnet 4.5, requer assinatura Copilot)"
|
|
21
|
+
},
|
|
18
22
|
"cursor": {
|
|
19
23
|
"name": "Cursor",
|
|
20
24
|
"description": "Agente de codificação AI Cursor"
|
|
@@ -68,11 +68,8 @@
|
|
|
68
68
|
"title": "Fluxo de Trabalho",
|
|
69
69
|
"description": "Configure o comportamento de PR, portas de aprovação e configurações de CI",
|
|
70
70
|
"sectionDescription": "Comportamento de automação após a implementação",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"modeRegular": "Regular",
|
|
74
|
-
"modeFast": "Rápido",
|
|
75
|
-
"modeExploration": "Exploração",
|
|
71
|
+
"defaultFastMode": "Modo rápido por padrão",
|
|
72
|
+
"defaultFastModeDescription": "Pular fases SDLC e implementar direto do prompt",
|
|
76
73
|
"subsections": {
|
|
77
74
|
"approve": "Aprovar",
|
|
78
75
|
"evidence": "Evidência",
|
|
@@ -347,7 +344,6 @@
|
|
|
347
344
|
"cancel": "Cancelar",
|
|
348
345
|
"archive": "Arquivar",
|
|
349
346
|
"fastMode": "Modo rápido",
|
|
350
|
-
"explorationMode": "Exploration Mode",
|
|
351
347
|
"specDriven": "Baseado em especificação",
|
|
352
348
|
"copied": "Copiado!",
|
|
353
349
|
"chatWithAgent": "Chat com agente",
|