@shepai/cli 1.136.0-pr396.e077930 → 1.136.0-pr440.bb6800a
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/Feature.yaml +3 -0
- package/apis/json-schema/FeatureFlags.yaml +0 -5
- package/apis/json-schema/SdlcLifecycle.yaml +1 -0
- package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts +2 -0
- package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts +5 -91
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.js +4 -6
- package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts +20 -0
- package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.js +74 -0
- package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts +20 -0
- package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.js +65 -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 +0 -1
- package/dist/packages/core/src/domain/generated/output.d.ts +6 -5
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +1 -0
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +10 -20
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +1 -0
- 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 +6 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +0 -1
- 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 +0 -2
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts +12 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.js +16 -0
- 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 +7 -2
- 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 +2 -3
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +0 -10
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +0 -150
- package/dist/src/presentation/cli/commands/feat/archive.command.d.ts +18 -0
- package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/feat/archive.command.js +54 -0
- package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/index.js +5 -1
- package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/ls.command.js +5 -0
- package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts +17 -0
- package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/feat/unarchive.command.js +42 -0
- 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 +18 -6
- package/dist/src/presentation/web/app/actions/archive-feature.d.ts +6 -0
- package/dist/src/presentation/web/app/actions/archive-feature.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/archive-feature.js +16 -0
- package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts +6 -0
- package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/unarchive-feature.js +16 -0
- 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 +1 -0
- 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 -16
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +4 -4
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts +0 -4
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.js +1 -32
- 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 +0 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +1 -9
- 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 +2 -2
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts +1 -9
- 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 +2 -3
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts +0 -6
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.js +0 -30
- 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 +6 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +3 -1
- 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 +11 -1
- 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 +16 -2
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts +5 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +75 -1
- package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.js +0 -3
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +3 -5
- package/dist/src/presentation/web/components/common/repository-node/repository-node.js +1 -1
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts +0 -4
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.js +0 -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 +13 -4
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts +6 -0
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +70 -0
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +6 -0
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +43 -2
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +0 -3
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +0 -3
- 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 +0 -5
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +0 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +0 -1
- package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/feature-flags-context.js +0 -1
- package/dist/src/presentation/web/hooks/sidebar-features-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/sidebar-features-context.js +1 -0
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.js +17 -2
- package/dist/src/presentation/web/lib/derive-graph.d.ts +4 -0
- package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/derive-graph.js +12 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts +0 -2
- package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/feature-flags.js +0 -5
- 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 +80 -65
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -1
- 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/create/page/server-reference-manifest.json +80 -65
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
- 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 +92 -107
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -1
- 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 +92 -107
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
- 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]/page/server-reference-manifest.json +76 -61
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
- 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)/create/page/server-reference-manifest.json +80 -65
- package/web/.next/server/app/(dashboard)/create/page.js +1 -1
- 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 +92 -107
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -1
- 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 +92 -107
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
- 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 +76 -61
- package/web/.next/server/app/(dashboard)/page.js +1 -1
- 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]/page/server-reference-manifest.json +76 -61
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
- 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 +3 -3
- 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/settings/page/server-reference-manifest.json +8 -8
- 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 +8 -8
- 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 +8 -8
- 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 +3 -3
- 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 +2 -2
- 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]__c6e32a23._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.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/[root-of-the-server]__357d99f9._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__61564698._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__61564698._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__74ab160c._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__74ab160c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b3dbadca._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b3dbadca._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd16cded._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd16cded._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f14fffe1._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f14fffe1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0020fddd._.js +1 -1
- package/web/.next/server/chunks/ssr/_0020fddd._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_02ec1aea._.js +1 -1
- package/web/.next/server/chunks/ssr/_02ec1aea._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_149f6559._.js → _2fdfd9ab._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_149f6559._.js.map → _2fdfd9ab._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_36059d08._.js +4 -0
- package/web/.next/server/chunks/ssr/_36059d08._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_48a8ee28._.js → _65f6e0e0._.js} +3 -3
- package/web/.next/server/chunks/ssr/{_6e8c85b1._.js.map → _65f6e0e0._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_7dca1882._.js +1 -1
- package/web/.next/server/chunks/ssr/_7dca1882._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_913fb649._.js +3 -0
- package/web/.next/server/chunks/ssr/_913fb649._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_a37f5f18._.js +1 -1
- package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_1a09002f._.js → _a51673dd._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_1a09002f._.js.map → _a51673dd._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_a9f57758._.js +1 -1
- package/web/.next/server/chunks/ssr/{_939287c5._.js → _ae587066._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_939287c5._.js.map → _ae587066._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_83220ba0._.js → _d162e30d._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_83220ba0._.js.map → _d162e30d._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_6e8c85b1._.js → _d763f022._.js} +3 -3
- package/web/.next/server/chunks/ssr/{_48a8ee28._.js.map → _d763f022._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_d8575088._.js +1 -1
- package/web/.next/server/chunks/ssr/_d8575088._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f39a1adb._.js +1 -1
- package/web/.next/server/chunks/ssr/_f39a1adb._.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 +3 -0
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{src_presentation_web_28f803bd._.js → src_presentation_web_97dc2fb0._.js} +2 -2
- package/web/.next/server/chunks/ssr/{src_presentation_web_28f803bd._.js.map → src_presentation_web_97dc2fb0._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.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_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_e599bb8c._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.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/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +463 -457
- package/web/.next/static/chunks/{f070c67389a686ff.js → 0b7fe2ac4f078f54.js} +1 -1
- package/web/.next/static/chunks/{aa2236a4b7c3bd45.js → 2d6eb4409cc6324d.js} +1 -1
- package/web/.next/static/chunks/{20a66a7159b97299.js → 3a7ff215d6a2c489.js} +2 -2
- package/web/.next/static/chunks/{5f67ffe1879b8536.js → 4b3e7454c2b07877.js} +1 -1
- package/web/.next/static/chunks/{f010c3293515ab73.js → 791e64500a080d4f.js} +1 -1
- package/web/.next/static/chunks/79c9871d46b22bf8.css +1 -0
- package/web/.next/static/chunks/7ee0606f698b032c.js +1 -0
- package/web/.next/static/chunks/87640f53f3bff3a6.js +1 -0
- package/web/.next/static/chunks/{6bfc9e17e141ac36.js → bb5bd1b5aafc70cd.js} +1 -1
- package/web/.next/static/chunks/{9db1dd8ad063626c.js → bf0a401666f990e2.js} +1 -1
- package/web/.next/static/chunks/c4c3fcf18262b386.js +2 -0
- package/web/.next/static/chunks/{4148e7a319ea7ec4.js → cd14232b3d8f5052.js} +1 -1
- package/web/.next/static/chunks/d0dff217a94d4ee1.js +1 -0
- package/web/.next/static/chunks/{ed248df9e975fd1f.js → dd8f2197640aea64.js} +1 -1
- package/web/.next/static/chunks/eb9841ec4d80af01.js +1 -0
- package/web/.next/static/chunks/{eeec829933170d8a.js → fc442d957b35bd5e.js} +1 -1
- package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.d.ts +0 -25
- package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.js +0 -62
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts +0 -34
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js +0 -139
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts +0 -16
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.js +0 -43
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.d.ts +0 -11
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.js +0 -17
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts +0 -35
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.js +0 -66
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts +0 -42
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.js +0 -169
- package/dist/src/presentation/web/app/actions/get-branch-sync-status.d.ts +0 -11
- package/dist/src/presentation/web/app/actions/get-branch-sync-status.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/get-branch-sync-status.js +0 -22
- package/dist/src/presentation/web/app/actions/rebase-feature.d.ts +0 -5
- package/dist/src/presentation/web/app/actions/rebase-feature.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/rebase-feature.js +0 -16
- package/dist/src/presentation/web/app/actions/sync-repository.d.ts +0 -5
- package/dist/src/presentation/web/app/actions/sync-repository.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/sync-repository.js +0 -16
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts +0 -12
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.js +0 -13
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.d.ts +0 -15
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.js +0 -86
- package/dist/src/presentation/web/hooks/use-branch-sync-status.d.ts +0 -14
- package/dist/src/presentation/web/hooks/use-branch-sync-status.d.ts.map +0 -1
- package/dist/src/presentation/web/hooks/use-branch-sync-status.js +0 -67
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1626f5d7._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1626f5d7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__49557873._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__49557873._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__90fdc0ee._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__90fdc0ee._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a7259d16._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a7259d16._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__cb850066._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__cb850066._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_13f3c0ec._.js +0 -4
- package/web/.next/server/chunks/ssr/_13f3c0ec._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_51ed80a4._.js +0 -3
- package/web/.next/server/chunks/ssr/_51ed80a4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +0 -3
- package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +0 -1
- package/web/.next/static/chunks/031e65a4305571f7.js +0 -1
- package/web/.next/static/chunks/132d824e337f12fe.js +0 -2
- package/web/.next/static/chunks/6a370f2709c81d83.js +0 -1
- package/web/.next/static/chunks/ab3afb0b942c1eb2.css +0 -1
- package/web/.next/static/chunks/b3cc94a1e319bee8.js +0 -1
- package/web/.next/static/chunks/f66c996402a430f5.js +0 -1
- /package/web/.next/static/{8o0yazCw1kyy56LNhgtTp → JaRBeVSDLWZLQIl_k7ChK}/_buildManifest.js +0 -0
- /package/web/.next/static/{8o0yazCw1kyy56LNhgtTp → JaRBeVSDLWZLQIl_k7ChK}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{8o0yazCw1kyy56LNhgtTp → JaRBeVSDLWZLQIl_k7ChK}/_ssgManifest.js +0 -0
package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js
DELETED
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Rebase Feature on Main Use Case
|
|
3
|
-
*
|
|
4
|
-
* Rebases a feature branch onto the latest main branch with auto-sync
|
|
5
|
-
* and agent-powered conflict resolution.
|
|
6
|
-
*
|
|
7
|
-
* Flow: resolve feature → create standalone agent run → record phase timing →
|
|
8
|
-
* determine cwd (worktree or repo root) → sync main → rebase →
|
|
9
|
-
* on conflict, delegate to ConflictResolutionService → complete timing.
|
|
10
|
-
*/
|
|
11
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
12
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
13
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
14
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
15
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
16
|
-
};
|
|
17
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
18
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
19
|
-
};
|
|
20
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
21
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
22
|
-
};
|
|
23
|
-
import { injectable, inject } from 'tsyringe';
|
|
24
|
-
import { randomUUID } from 'node:crypto';
|
|
25
|
-
import { GitPrError, GitPrErrorCode, } from '../../ports/output/services/git-pr-service.interface.js';
|
|
26
|
-
import { AgentRunStatus, AgentType } from '../../../domain/generated/output.js';
|
|
27
|
-
let RebaseFeatureOnMainUseCase = class RebaseFeatureOnMainUseCase {
|
|
28
|
-
featureRepo;
|
|
29
|
-
gitPrService;
|
|
30
|
-
worktreeService;
|
|
31
|
-
conflictResolutionService;
|
|
32
|
-
agentRunRepo;
|
|
33
|
-
phaseTimingRepo;
|
|
34
|
-
constructor(featureRepo, gitPrService, worktreeService, conflictResolutionService, agentRunRepo, phaseTimingRepo) {
|
|
35
|
-
this.featureRepo = featureRepo;
|
|
36
|
-
this.gitPrService = gitPrService;
|
|
37
|
-
this.worktreeService = worktreeService;
|
|
38
|
-
this.conflictResolutionService = conflictResolutionService;
|
|
39
|
-
this.agentRunRepo = agentRunRepo;
|
|
40
|
-
this.phaseTimingRepo = phaseTimingRepo;
|
|
41
|
-
}
|
|
42
|
-
async execute(featureId) {
|
|
43
|
-
// Resolve feature by exact ID or prefix
|
|
44
|
-
const feature = (await this.featureRepo.findById(featureId)) ??
|
|
45
|
-
(await this.featureRepo.findByIdPrefix(featureId));
|
|
46
|
-
if (!feature) {
|
|
47
|
-
throw new Error(`Feature not found: "${featureId}"`);
|
|
48
|
-
}
|
|
49
|
-
// Create standalone agent run + phase timing for activity timeline
|
|
50
|
-
const now = new Date().toISOString();
|
|
51
|
-
const agentRunId = randomUUID();
|
|
52
|
-
const phaseTimingId = randomUUID();
|
|
53
|
-
await this.agentRunRepo.create({
|
|
54
|
-
id: agentRunId,
|
|
55
|
-
agentType: AgentType.ClaudeCode,
|
|
56
|
-
agentName: 'rebase',
|
|
57
|
-
status: AgentRunStatus.running,
|
|
58
|
-
prompt: `Rebase ${feature.branch} on main`,
|
|
59
|
-
threadId: agentRunId,
|
|
60
|
-
startedAt: now,
|
|
61
|
-
featureId: feature.id,
|
|
62
|
-
repositoryPath: feature.repositoryPath,
|
|
63
|
-
createdAt: now,
|
|
64
|
-
updatedAt: now,
|
|
65
|
-
});
|
|
66
|
-
await this.phaseTimingRepo.save({
|
|
67
|
-
id: phaseTimingId,
|
|
68
|
-
agentRunId,
|
|
69
|
-
phase: 'rebase',
|
|
70
|
-
startedAt: now,
|
|
71
|
-
createdAt: now,
|
|
72
|
-
updatedAt: now,
|
|
73
|
-
});
|
|
74
|
-
const startMs = Date.now();
|
|
75
|
-
try {
|
|
76
|
-
// Determine working directory — worktree path if it exists, else repo root
|
|
77
|
-
const cwd = await this.resolveCwd(feature.repositoryPath, feature.branch);
|
|
78
|
-
const defaultBranch = await this.gitPrService.getDefaultBranch(feature.repositoryPath);
|
|
79
|
-
// Auto-sync main before rebasing (per spec decision)
|
|
80
|
-
await this.gitPrService.syncMain(cwd, defaultBranch);
|
|
81
|
-
// Attempt rebase
|
|
82
|
-
try {
|
|
83
|
-
await this.gitPrService.rebaseOnMain(cwd, feature.branch, defaultBranch);
|
|
84
|
-
}
|
|
85
|
-
catch (error) {
|
|
86
|
-
if (error instanceof GitPrError && error.code === GitPrErrorCode.REBASE_CONFLICT) {
|
|
87
|
-
// Delegate to agent-powered conflict resolution
|
|
88
|
-
await this.conflictResolutionService.resolve(cwd, feature.branch, defaultBranch);
|
|
89
|
-
// Conflict resolution succeeded — complete timing as success
|
|
90
|
-
await this.completeTiming(agentRunId, phaseTimingId, startMs, 'success');
|
|
91
|
-
return;
|
|
92
|
-
}
|
|
93
|
-
throw error;
|
|
94
|
-
}
|
|
95
|
-
// Rebase succeeded without conflicts
|
|
96
|
-
await this.completeTiming(agentRunId, phaseTimingId, startMs, 'success');
|
|
97
|
-
}
|
|
98
|
-
catch (error) {
|
|
99
|
-
// Record failure in timing
|
|
100
|
-
const message = error instanceof Error ? error.message : String(error);
|
|
101
|
-
await this.completeTiming(agentRunId, phaseTimingId, startMs, 'error', message);
|
|
102
|
-
throw error;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
async completeTiming(agentRunId, phaseTimingId, startMs, exitCode, errorMessage) {
|
|
106
|
-
const completedAt = new Date().toISOString();
|
|
107
|
-
const durationMs = Date.now() - startMs;
|
|
108
|
-
await this.phaseTimingRepo.update(phaseTimingId, {
|
|
109
|
-
completedAt,
|
|
110
|
-
durationMs: BigInt(durationMs),
|
|
111
|
-
exitCode,
|
|
112
|
-
...(errorMessage && { errorMessage }),
|
|
113
|
-
});
|
|
114
|
-
await this.agentRunRepo.updateStatus(agentRunId, exitCode === 'success' ? AgentRunStatus.completed : AgentRunStatus.failed, { completedAt, ...(errorMessage && { error: errorMessage }) });
|
|
115
|
-
}
|
|
116
|
-
/**
|
|
117
|
-
* Resolve the correct working directory for the feature.
|
|
118
|
-
* Uses the worktree path if a worktree exists for this branch,
|
|
119
|
-
* otherwise falls back to the repository root.
|
|
120
|
-
*/
|
|
121
|
-
async resolveCwd(repositoryPath, branch) {
|
|
122
|
-
const hasWorktree = await this.worktreeService.exists(repositoryPath, branch);
|
|
123
|
-
if (hasWorktree) {
|
|
124
|
-
return this.worktreeService.getWorktreePath(repositoryPath, branch);
|
|
125
|
-
}
|
|
126
|
-
return repositoryPath;
|
|
127
|
-
}
|
|
128
|
-
};
|
|
129
|
-
RebaseFeatureOnMainUseCase = __decorate([
|
|
130
|
-
injectable(),
|
|
131
|
-
__param(0, inject('IFeatureRepository')),
|
|
132
|
-
__param(1, inject('IGitPrService')),
|
|
133
|
-
__param(2, inject('IWorktreeService')),
|
|
134
|
-
__param(3, inject('ConflictResolutionService')),
|
|
135
|
-
__param(4, inject('IAgentRunRepository')),
|
|
136
|
-
__param(5, inject('IPhaseTimingRepository')),
|
|
137
|
-
__metadata("design:paramtypes", [Object, Object, Object, Function, Object, Object])
|
|
138
|
-
], RebaseFeatureOnMainUseCase);
|
|
139
|
-
export { RebaseFeatureOnMainUseCase };
|
package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Sync Repository Main Use Case
|
|
3
|
-
*
|
|
4
|
-
* Syncs a repository's local main branch with the remote.
|
|
5
|
-
* Resolves the repository by ID, determines its path and default branch,
|
|
6
|
-
* then delegates to IGitPrService.syncMain().
|
|
7
|
-
*/
|
|
8
|
-
import type { IRepositoryRepository } from '../../ports/output/repositories/repository-repository.interface.js';
|
|
9
|
-
import type { IGitPrService } from '../../ports/output/services/git-pr-service.interface.js';
|
|
10
|
-
export declare class SyncRepositoryMainUseCase {
|
|
11
|
-
private readonly repositoryRepo;
|
|
12
|
-
private readonly gitPrService;
|
|
13
|
-
constructor(repositoryRepo: IRepositoryRepository, gitPrService: IGitPrService);
|
|
14
|
-
execute(repoId: string): Promise<void>;
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=sync-repository-main.use-case.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sync-repository-main.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,oEAAoE,CAAC;AAChH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yDAAyD,CAAC;AAE7F,qBACa,yBAAyB;IAGlC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAE/B,OAAO,CAAC,QAAQ,CAAC,YAAY;gBAFZ,cAAc,EAAE,qBAAqB,EAErC,YAAY,EAAE,aAAa;IAGxC,OAAO,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAS7C"}
|
package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Sync Repository Main Use Case
|
|
3
|
-
*
|
|
4
|
-
* Syncs a repository's local main branch with the remote.
|
|
5
|
-
* Resolves the repository by ID, determines its path and default branch,
|
|
6
|
-
* then delegates to IGitPrService.syncMain().
|
|
7
|
-
*/
|
|
8
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
9
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
10
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
11
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
13
|
-
};
|
|
14
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
15
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
16
|
-
};
|
|
17
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
18
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
19
|
-
};
|
|
20
|
-
import { injectable, inject } from 'tsyringe';
|
|
21
|
-
let SyncRepositoryMainUseCase = class SyncRepositoryMainUseCase {
|
|
22
|
-
repositoryRepo;
|
|
23
|
-
gitPrService;
|
|
24
|
-
constructor(repositoryRepo, gitPrService) {
|
|
25
|
-
this.repositoryRepo = repositoryRepo;
|
|
26
|
-
this.gitPrService = gitPrService;
|
|
27
|
-
}
|
|
28
|
-
async execute(repoId) {
|
|
29
|
-
const repository = await this.repositoryRepo.findById(repoId);
|
|
30
|
-
if (!repository) {
|
|
31
|
-
throw new Error(`Repository not found: "${repoId}"`);
|
|
32
|
-
}
|
|
33
|
-
const defaultBranch = await this.gitPrService.getDefaultBranch(repository.path);
|
|
34
|
-
await this.gitPrService.syncMain(repository.path, defaultBranch);
|
|
35
|
-
}
|
|
36
|
-
};
|
|
37
|
-
SyncRepositoryMainUseCase = __decorate([
|
|
38
|
-
injectable(),
|
|
39
|
-
__param(0, inject('IRepositoryRepository')),
|
|
40
|
-
__param(1, inject('IGitPrService')),
|
|
41
|
-
__metadata("design:paramtypes", [Object, Object])
|
|
42
|
-
], SyncRepositoryMainUseCase);
|
|
43
|
-
export { SyncRepositoryMainUseCase };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Migration 042: Add feature_flag_git_rebase_sync column to settings table.
|
|
3
|
-
*
|
|
4
|
-
* Adds a boolean (INTEGER 0/1) column for the git rebase-sync feature flag.
|
|
5
|
-
* Defaults to 0 (disabled).
|
|
6
|
-
*/
|
|
7
|
-
import type { MigrationParams } from 'umzug';
|
|
8
|
-
import type Database from 'better-sqlite3';
|
|
9
|
-
export declare function up({ context: db }: MigrationParams<Database.Database>): Promise<void>;
|
|
10
|
-
export declare function down({ context: db }: MigrationParams<Database.Database>): Promise<void>;
|
|
11
|
-
//# sourceMappingURL=042-add-feature-flag-git-rebase-sync.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"042-add-feature-flag-git-rebase-sync.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,KAAK,QAAQ,MAAM,gBAAgB,CAAC;AAE3C,wBAAsB,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,eAAe,CAAC,QAAQ,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAS3F;AAED,wBAAsB,IAAI,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,eAAe,CAAC,QAAQ,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAG7F"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Migration 042: Add feature_flag_git_rebase_sync column to settings table.
|
|
3
|
-
*
|
|
4
|
-
* Adds a boolean (INTEGER 0/1) column for the git rebase-sync feature flag.
|
|
5
|
-
* Defaults to 0 (disabled).
|
|
6
|
-
*/
|
|
7
|
-
export async function up({ context: db }) {
|
|
8
|
-
const columns = db.pragma('table_info(settings)');
|
|
9
|
-
const existing = new Set(columns.map((c) => c.name));
|
|
10
|
-
if (!existing.has('feature_flag_git_rebase_sync')) {
|
|
11
|
-
db.exec('ALTER TABLE settings ADD COLUMN feature_flag_git_rebase_sync INTEGER NOT NULL DEFAULT 0');
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export async function down({ context: db }) {
|
|
15
|
-
// SQLite does not support DROP COLUMN before 3.35.0; column remains but is unused after rollback.
|
|
16
|
-
void db;
|
|
17
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Conflict Resolution Prompt Builder
|
|
3
|
-
*
|
|
4
|
-
* Builds prompts for the AI agent to resolve git rebase conflicts.
|
|
5
|
-
* Follows the merge-prompts.ts pattern of pure functions returning
|
|
6
|
-
* markdown strings.
|
|
7
|
-
*/
|
|
8
|
-
export interface ConflictedFile {
|
|
9
|
-
/** Relative file path from repo root */
|
|
10
|
-
path: string;
|
|
11
|
-
/** Full file contents including conflict markers */
|
|
12
|
-
content: string;
|
|
13
|
-
}
|
|
14
|
-
export interface ConflictResolutionPromptParams {
|
|
15
|
-
/** Files with conflict markers */
|
|
16
|
-
conflictedFiles: ConflictedFile[];
|
|
17
|
-
/** The feature branch being rebased */
|
|
18
|
-
featureBranch: string;
|
|
19
|
-
/** The base branch being rebased onto */
|
|
20
|
-
baseBranch: string;
|
|
21
|
-
/** 1-based attempt number */
|
|
22
|
-
attemptNumber: number;
|
|
23
|
-
/** Maximum allowed attempts */
|
|
24
|
-
maxAttempts: number;
|
|
25
|
-
/** Feedback from previous failed attempt (remaining markers info) */
|
|
26
|
-
previousFeedback?: string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Build a prompt for the conflict resolution agent.
|
|
30
|
-
*
|
|
31
|
-
* The agent receives conflicted file contents and instructions to resolve
|
|
32
|
-
* all conflict markers by editing files in the working directory.
|
|
33
|
-
*/
|
|
34
|
-
export declare function buildConflictResolutionPrompt(params: ConflictResolutionPromptParams): string;
|
|
35
|
-
//# sourceMappingURL=conflict-resolution.prompt.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"conflict-resolution.prompt.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,WAAW,cAAc;IAC7B,wCAAwC;IACxC,IAAI,EAAE,MAAM,CAAC;IACb,oDAAoD;IACpD,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,8BAA8B;IAC7C,kCAAkC;IAClC,eAAe,EAAE,cAAc,EAAE,CAAC;IAClC,uCAAuC;IACvC,aAAa,EAAE,MAAM,CAAC;IACtB,yCAAyC;IACzC,UAAU,EAAE,MAAM,CAAC;IACnB,6BAA6B;IAC7B,aAAa,EAAE,MAAM,CAAC;IACtB,+BAA+B;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,qEAAqE;IACrE,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;;;;GAKG;AACH,wBAAgB,6BAA6B,CAAC,MAAM,EAAE,8BAA8B,GAAG,MAAM,CAgE5F"}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Conflict Resolution Prompt Builder
|
|
3
|
-
*
|
|
4
|
-
* Builds prompts for the AI agent to resolve git rebase conflicts.
|
|
5
|
-
* Follows the merge-prompts.ts pattern of pure functions returning
|
|
6
|
-
* markdown strings.
|
|
7
|
-
*/
|
|
8
|
-
/**
|
|
9
|
-
* Build a prompt for the conflict resolution agent.
|
|
10
|
-
*
|
|
11
|
-
* The agent receives conflicted file contents and instructions to resolve
|
|
12
|
-
* all conflict markers by editing files in the working directory.
|
|
13
|
-
*/
|
|
14
|
-
export function buildConflictResolutionPrompt(params) {
|
|
15
|
-
const { conflictedFiles, featureBranch, baseBranch, attemptNumber, maxAttempts, previousFeedback, } = params;
|
|
16
|
-
const fileSection = conflictedFiles
|
|
17
|
-
.map((f) => `### \`${f.path}\`
|
|
18
|
-
|
|
19
|
-
\`\`\`
|
|
20
|
-
${f.content}
|
|
21
|
-
\`\`\``)
|
|
22
|
-
.join('\n\n');
|
|
23
|
-
const feedbackSection = previousFeedback
|
|
24
|
-
? `
|
|
25
|
-
## Previous Attempt Feedback
|
|
26
|
-
|
|
27
|
-
Your previous resolution attempt (${attemptNumber - 1}/${maxAttempts}) was incomplete:
|
|
28
|
-
|
|
29
|
-
${previousFeedback}
|
|
30
|
-
|
|
31
|
-
You MUST resolve all remaining conflict markers in this attempt.
|
|
32
|
-
`
|
|
33
|
-
: '';
|
|
34
|
-
return `You are resolving git rebase conflicts (attempt ${attemptNumber}/${maxAttempts}).
|
|
35
|
-
|
|
36
|
-
## Branch Context
|
|
37
|
-
|
|
38
|
-
- Feature branch: \`${featureBranch}\`
|
|
39
|
-
- Base branch: \`${baseBranch}\`
|
|
40
|
-
- The feature branch is being rebased onto the latest \`${baseBranch}\`.
|
|
41
|
-
${feedbackSection}
|
|
42
|
-
## Conflicted Files
|
|
43
|
-
|
|
44
|
-
The following files contain conflict markers that must be resolved:
|
|
45
|
-
|
|
46
|
-
${fileSection}
|
|
47
|
-
|
|
48
|
-
## Instructions
|
|
49
|
-
|
|
50
|
-
1. Read each conflicted file listed above
|
|
51
|
-
2. Resolve ALL conflict markers (\`<<<<<<<\`, \`=======\`, \`>>>>>>>\`) by editing the files
|
|
52
|
-
3. For each conflict, determine the correct resolution by understanding the intent of both sides:
|
|
53
|
-
- The \`<<<<<<< HEAD\` section contains changes from \`${baseBranch}\` (theirs during rebase)
|
|
54
|
-
- The \`>>>>>>> ...\` section contains changes from \`${featureBranch}\` (ours during rebase)
|
|
55
|
-
4. Produce a merged result that preserves the intent of both sides where possible
|
|
56
|
-
5. If the changes conflict logically (not just textually), prefer the feature branch changes but ensure compatibility with the base branch
|
|
57
|
-
|
|
58
|
-
## Constraints
|
|
59
|
-
|
|
60
|
-
- Edit ONLY the conflicted files listed above — do NOT modify any other files
|
|
61
|
-
- Remove ALL conflict markers (\`<<<<<<<\`, \`=======\`, \`>>>>>>>\`) from every conflicted file
|
|
62
|
-
- Do NOT add new files or delete files
|
|
63
|
-
- Do NOT run git commands — only edit files to resolve conflicts
|
|
64
|
-
- Do NOT run tests, builds, or linters — only resolve the conflict markers
|
|
65
|
-
- Every conflicted file must have zero remaining conflict markers when you are done`;
|
|
66
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Conflict Resolution Service
|
|
3
|
-
*
|
|
4
|
-
* Orchestrates agent-powered conflict resolution during git rebase.
|
|
5
|
-
* Follows the CI watch/fix loop pattern: detect conflict → invoke agent →
|
|
6
|
-
* validate resolution → stage files → continue rebase, with retry logic.
|
|
7
|
-
*/
|
|
8
|
-
import type { IAgentExecutorProvider } from '../../../../application/ports/output/agents/agent-executor-provider.interface.js';
|
|
9
|
-
import type { IGitPrService } from '../../../../application/ports/output/services/git-pr-service.interface.js';
|
|
10
|
-
export declare class ConflictResolutionService {
|
|
11
|
-
private readonly agentProvider;
|
|
12
|
-
private readonly gitPrService;
|
|
13
|
-
constructor(agentProvider: IAgentExecutorProvider, gitPrService: IGitPrService);
|
|
14
|
-
/**
|
|
15
|
-
* Resolve all conflicts during a rebase operation.
|
|
16
|
-
*
|
|
17
|
-
* Handles multi-commit rebases where each commit may introduce conflicts.
|
|
18
|
-
* For each conflicted commit: reads conflicted files, invokes agent to
|
|
19
|
-
* resolve, validates no remaining markers, stages resolved files, and
|
|
20
|
-
* continues the rebase. Retries up to MAX_RETRIES_PER_COMMIT times.
|
|
21
|
-
*
|
|
22
|
-
* If retries are exhausted, aborts the rebase and throws REBASE_CONFLICT.
|
|
23
|
-
*
|
|
24
|
-
* @param cwd - Working directory (repo root or worktree path)
|
|
25
|
-
* @param featureBranch - Feature branch being rebased
|
|
26
|
-
* @param baseBranch - Base branch being rebased onto
|
|
27
|
-
*/
|
|
28
|
-
resolve(cwd: string, featureBranch: string, baseBranch: string): Promise<void>;
|
|
29
|
-
/**
|
|
30
|
-
* Read the contents of conflicted files from the working directory.
|
|
31
|
-
*/
|
|
32
|
-
private readConflictedFileContents;
|
|
33
|
-
/**
|
|
34
|
-
* Validate that no conflict markers remain in the previously-conflicted files.
|
|
35
|
-
*/
|
|
36
|
-
private validateResolution;
|
|
37
|
-
/**
|
|
38
|
-
* Build feedback about remaining conflict markers for retry attempts.
|
|
39
|
-
*/
|
|
40
|
-
private buildFeedbackFromRemainingMarkers;
|
|
41
|
-
}
|
|
42
|
-
//# sourceMappingURL=conflict-resolution.service.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"conflict-resolution.service.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAKH,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,wEAAwE,CAAC;AACrH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iEAAiE,CAAC;AAerG,qBACa,yBAAyB;IAGlC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAE9B,OAAO,CAAC,QAAQ,CAAC,YAAY;gBAFZ,aAAa,EAAE,sBAAsB,EAErC,YAAY,EAAE,aAAa;IAG9C;;;;;;;;;;;;;OAaG;IACG,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAkEpF;;OAEG;IACH,OAAO,CAAC,0BAA0B;IAWlC;;OAEG;IACH,OAAO,CAAC,kBAAkB;IAgB1B;;OAEG;IACH,OAAO,CAAC,iCAAiC;CAyB1C"}
|
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Conflict Resolution Service
|
|
3
|
-
*
|
|
4
|
-
* Orchestrates agent-powered conflict resolution during git rebase.
|
|
5
|
-
* Follows the CI watch/fix loop pattern: detect conflict → invoke agent →
|
|
6
|
-
* validate resolution → stage files → continue rebase, with retry logic.
|
|
7
|
-
*/
|
|
8
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
9
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
10
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
11
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
13
|
-
};
|
|
14
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
15
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
16
|
-
};
|
|
17
|
-
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
18
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
19
|
-
};
|
|
20
|
-
import { injectable, inject } from 'tsyringe';
|
|
21
|
-
import { readFileSync } from 'node:fs';
|
|
22
|
-
import { join } from 'node:path';
|
|
23
|
-
import { GitPrError, GitPrErrorCode, } from '../../../../application/ports/output/services/git-pr-service.interface.js';
|
|
24
|
-
import { buildConflictResolutionPrompt, } from './conflict-resolution.prompt.js';
|
|
25
|
-
const MAX_RETRIES_PER_COMMIT = 3;
|
|
26
|
-
/** Conflict markers that indicate unresolved conflicts */
|
|
27
|
-
const CONFLICT_MARKERS = ['<<<<<<<', '=======', '>>>>>>>'];
|
|
28
|
-
let ConflictResolutionService = class ConflictResolutionService {
|
|
29
|
-
agentProvider;
|
|
30
|
-
gitPrService;
|
|
31
|
-
constructor(agentProvider, gitPrService) {
|
|
32
|
-
this.agentProvider = agentProvider;
|
|
33
|
-
this.gitPrService = gitPrService;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Resolve all conflicts during a rebase operation.
|
|
37
|
-
*
|
|
38
|
-
* Handles multi-commit rebases where each commit may introduce conflicts.
|
|
39
|
-
* For each conflicted commit: reads conflicted files, invokes agent to
|
|
40
|
-
* resolve, validates no remaining markers, stages resolved files, and
|
|
41
|
-
* continues the rebase. Retries up to MAX_RETRIES_PER_COMMIT times.
|
|
42
|
-
*
|
|
43
|
-
* If retries are exhausted, aborts the rebase and throws REBASE_CONFLICT.
|
|
44
|
-
*
|
|
45
|
-
* @param cwd - Working directory (repo root or worktree path)
|
|
46
|
-
* @param featureBranch - Feature branch being rebased
|
|
47
|
-
* @param baseBranch - Base branch being rebased onto
|
|
48
|
-
*/
|
|
49
|
-
async resolve(cwd, featureBranch, baseBranch) {
|
|
50
|
-
const executor = await this.agentProvider.getExecutor();
|
|
51
|
-
// Outer loop: handle multi-commit rebases where rebaseContinue
|
|
52
|
-
// may reveal conflicts on the next commit
|
|
53
|
-
while (true) {
|
|
54
|
-
const conflictedFiles = await this.gitPrService.getConflictedFiles(cwd);
|
|
55
|
-
if (conflictedFiles.length === 0) {
|
|
56
|
-
return; // No conflicts — rebase is complete
|
|
57
|
-
}
|
|
58
|
-
// Inner loop: retry agent resolution for the current commit's conflicts
|
|
59
|
-
let resolved = false;
|
|
60
|
-
for (let attempt = 1; attempt <= MAX_RETRIES_PER_COMMIT; attempt++) {
|
|
61
|
-
const fileContents = this.readConflictedFileContents(cwd, conflictedFiles);
|
|
62
|
-
const previousFeedback = attempt > 1 ? this.buildFeedbackFromRemainingMarkers(cwd, conflictedFiles) : undefined;
|
|
63
|
-
const prompt = buildConflictResolutionPrompt({
|
|
64
|
-
conflictedFiles: fileContents,
|
|
65
|
-
featureBranch,
|
|
66
|
-
baseBranch,
|
|
67
|
-
attemptNumber: attempt,
|
|
68
|
-
maxAttempts: MAX_RETRIES_PER_COMMIT,
|
|
69
|
-
previousFeedback,
|
|
70
|
-
});
|
|
71
|
-
await executor.execute(prompt, { cwd });
|
|
72
|
-
// Validate: check no conflict markers remain
|
|
73
|
-
if (this.validateResolution(cwd, conflictedFiles)) {
|
|
74
|
-
resolved = true;
|
|
75
|
-
break;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
if (!resolved) {
|
|
79
|
-
// Exhausted retries — abort and report
|
|
80
|
-
await this.gitPrService.rebaseAbort(cwd);
|
|
81
|
-
const remaining = conflictedFiles.join(', ');
|
|
82
|
-
throw new GitPrError(`Failed to resolve conflicts after ${MAX_RETRIES_PER_COMMIT} attempts. ` +
|
|
83
|
-
`Unresolved files: ${remaining}. The rebase has been aborted.`, GitPrErrorCode.REBASE_CONFLICT);
|
|
84
|
-
}
|
|
85
|
-
// Resolution succeeded — stage files and continue rebase
|
|
86
|
-
await this.gitPrService.stageFiles(cwd, conflictedFiles);
|
|
87
|
-
try {
|
|
88
|
-
await this.gitPrService.rebaseContinue(cwd);
|
|
89
|
-
// rebaseContinue succeeded — check if there are more conflicts
|
|
90
|
-
// from subsequent commits (loop continues)
|
|
91
|
-
return; // No more conflicts
|
|
92
|
-
}
|
|
93
|
-
catch (error) {
|
|
94
|
-
if (error instanceof GitPrError && error.code === GitPrErrorCode.REBASE_CONFLICT) {
|
|
95
|
-
// Next commit has conflicts — loop back to resolve them
|
|
96
|
-
continue;
|
|
97
|
-
}
|
|
98
|
-
throw error; // Unexpected error
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Read the contents of conflicted files from the working directory.
|
|
104
|
-
*/
|
|
105
|
-
readConflictedFileContents(cwd, filePaths) {
|
|
106
|
-
return filePaths.map((filePath) => {
|
|
107
|
-
try {
|
|
108
|
-
const content = readFileSync(join(cwd, filePath), 'utf-8');
|
|
109
|
-
return { path: filePath, content };
|
|
110
|
-
}
|
|
111
|
-
catch {
|
|
112
|
-
return { path: filePath, content: '(unable to read file)' };
|
|
113
|
-
}
|
|
114
|
-
});
|
|
115
|
-
}
|
|
116
|
-
/**
|
|
117
|
-
* Validate that no conflict markers remain in the previously-conflicted files.
|
|
118
|
-
*/
|
|
119
|
-
validateResolution(cwd, filePaths) {
|
|
120
|
-
for (const filePath of filePaths) {
|
|
121
|
-
try {
|
|
122
|
-
const content = readFileSync(join(cwd, filePath), 'utf-8');
|
|
123
|
-
for (const marker of CONFLICT_MARKERS) {
|
|
124
|
-
if (content.includes(marker)) {
|
|
125
|
-
return false;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
catch {
|
|
130
|
-
return false;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
return true;
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* Build feedback about remaining conflict markers for retry attempts.
|
|
137
|
-
*/
|
|
138
|
-
buildFeedbackFromRemainingMarkers(cwd, filePaths) {
|
|
139
|
-
const remaining = [];
|
|
140
|
-
for (const filePath of filePaths) {
|
|
141
|
-
try {
|
|
142
|
-
const content = readFileSync(join(cwd, filePath), 'utf-8');
|
|
143
|
-
const lines = content.split('\n');
|
|
144
|
-
const markerLines = [];
|
|
145
|
-
lines.forEach((line, index) => {
|
|
146
|
-
if (CONFLICT_MARKERS.some((marker) => line.includes(marker))) {
|
|
147
|
-
markerLines.push(index + 1);
|
|
148
|
-
}
|
|
149
|
-
});
|
|
150
|
-
if (markerLines.length > 0) {
|
|
151
|
-
remaining.push(`- \`${filePath}\`: conflict markers remain on lines ${markerLines.join(', ')}`);
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
catch {
|
|
155
|
-
remaining.push(`- \`${filePath}\`: unable to read file`);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
return remaining.length > 0
|
|
159
|
-
? remaining.join('\n')
|
|
160
|
-
: 'No specific markers found, but validation failed.';
|
|
161
|
-
}
|
|
162
|
-
};
|
|
163
|
-
ConflictResolutionService = __decorate([
|
|
164
|
-
injectable(),
|
|
165
|
-
__param(0, inject('IAgentExecutorProvider')),
|
|
166
|
-
__param(1, inject('IGitPrService')),
|
|
167
|
-
__metadata("design:paramtypes", [Object, Object])
|
|
168
|
-
], ConflictResolutionService);
|
|
169
|
-
export { ConflictResolutionService };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare function getBranchSyncStatus(featureId: string): Promise<{
|
|
2
|
-
success: boolean;
|
|
3
|
-
data?: {
|
|
4
|
-
ahead: number;
|
|
5
|
-
behind: number;
|
|
6
|
-
baseBranch: string;
|
|
7
|
-
checkedAt: string;
|
|
8
|
-
};
|
|
9
|
-
error?: string;
|
|
10
|
-
}>;
|
|
11
|
-
//# sourceMappingURL=get-branch-sync-status.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"get-branch-sync-status.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/web/app/actions/get-branch-sync-status.ts"],"names":[],"mappings":"AAKA,wBAAsB,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IACpE,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC;IAChF,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC,CAmBD"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
'use server';
|
|
2
|
-
import { resolve } from '../../lib/server-container.js';
|
|
3
|
-
export async function getBranchSyncStatus(featureId) {
|
|
4
|
-
if (!featureId?.trim()) {
|
|
5
|
-
return { success: false, error: 'Feature id is required' };
|
|
6
|
-
}
|
|
7
|
-
try {
|
|
8
|
-
const useCase = resolve('GetBranchSyncStatusUseCase');
|
|
9
|
-
const result = await useCase.execute(featureId);
|
|
10
|
-
return {
|
|
11
|
-
success: true,
|
|
12
|
-
data: {
|
|
13
|
-
...result,
|
|
14
|
-
checkedAt: new Date().toISOString(),
|
|
15
|
-
},
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
catch (error) {
|
|
19
|
-
const message = error instanceof Error ? error.message : 'Failed to get branch sync status';
|
|
20
|
-
return { success: false, error: message };
|
|
21
|
-
}
|
|
22
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"rebase-feature.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/web/app/actions/rebase-feature.ts"],"names":[],"mappings":"AAKA,wBAAsB,aAAa,CACjC,SAAS,EAAE,MAAM,GAChB,OAAO,CAAC;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC,CAa/C"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
'use server';
|
|
2
|
-
import { resolve } from '../../lib/server-container.js';
|
|
3
|
-
export async function rebaseFeature(featureId) {
|
|
4
|
-
if (!featureId?.trim()) {
|
|
5
|
-
return { success: false, error: 'Feature id is required' };
|
|
6
|
-
}
|
|
7
|
-
try {
|
|
8
|
-
const useCase = resolve('RebaseFeatureOnMainUseCase');
|
|
9
|
-
await useCase.execute(featureId);
|
|
10
|
-
return { success: true };
|
|
11
|
-
}
|
|
12
|
-
catch (error) {
|
|
13
|
-
const message = error instanceof Error ? error.message : 'Failed to rebase feature';
|
|
14
|
-
return { success: false, error: message };
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sync-repository.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/web/app/actions/sync-repository.ts"],"names":[],"mappings":"AAKA,wBAAsB,cAAc,CAClC,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC,CAa/C"}
|