@shepai/cli 1.145.0 → 1.146.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/json-schema/Feature.yaml +25 -0
- package/apis/json-schema/PullRequest.yaml +11 -0
- package/apis/json-schema/SdlcLifecycle.yaml +1 -0
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +5 -0
- 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/git-fork-service.interface.d.ts +79 -0
- package/dist/packages/core/src/application/ports/output/services/git-fork-service.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/git-fork-service.interface.js +31 -0
- 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 +5 -0
- 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 +10 -0
- package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +10 -0
- 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/poll-upstream-pr.use-case.d.ts +23 -0
- package/dist/packages/core/src/application/use-cases/features/poll-upstream-pr.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/features/poll-upstream-pr.use-case.js +84 -0
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +2 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +33 -0
- 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 +2 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +8 -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 +18 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/045-add-fork-and-pr-columns.d.ts +13 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/045-add-fork-and-pr-columns.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/045-add-fork-and-pr-columns.js +30 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/046-add-per-feature-workflow-columns.d.ts +12 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/046-add-per-feature-workflow-columns.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/046-add-per-feature-workflow-columns.js +23 -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 +23 -4
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +25 -0
- 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 +85 -0
- 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 +5 -0
- 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 +15 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +5 -0
- 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 +23 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts +2 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.js +50 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts +8 -0
- 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 +40 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/analyze.prompt.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/analyze.prompt.js +11 -9
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.js +5 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/plan.prompt.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/plan.prompt.js +8 -6
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/requirements.prompt.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/requirements.prompt.js +11 -9
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/research.prompt.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/research.prompt.js +8 -6
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/spec.schema.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/spec.schema.js +3 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/validation.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/validation.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/validation.js +9 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +5 -0
- 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 +20 -0
- package/dist/packages/core/src/infrastructure/services/git/git-fork.service.d.ts +25 -0
- package/dist/packages/core/src/infrastructure/services/git/git-fork.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/git/git-fork.service.js +145 -0
- package/dist/packages/core/src/infrastructure/services/pr-sync/pr-sync-watcher.service.d.ts +17 -3
- package/dist/packages/core/src/infrastructure/services/pr-sync/pr-sync-watcher.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/pr-sync/pr-sync-watcher.service.js +98 -15
- package/dist/src/presentation/cli/commands/ui.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/ui.command.js +2 -1
- package/dist/src/presentation/web/app/actions/create-feature.d.ts +10 -0
- package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/create-feature.js +8 -1
- 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/app/build-feature-node-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/build-feature-node-data.js +5 -3
- package/dist/src/presentation/web/app/build-graph-nodes.js +5 -3
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +4 -0
- 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 +24 -7
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts +12 -0
- 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 +35 -0
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +7 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +5 -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 +12 -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 +1 -0
- package/dist/src/presentation/web/dev-server.js +2 -1
- 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 +2 -2
- package/web/.next/required-server-files.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.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 +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.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 +26 -26
- 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 +28 -28
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +26 -26
- package/web/.next/server/app/(dashboard)/page.js.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 +26 -26
- 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/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_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_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]__0b150ddf._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2138fa7e._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2138fa7e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__29580090._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__29580090._.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]__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]__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]__c094882b._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c094882b._.js.map +1 -1
- 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]__dac5dbf1._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dac5dbf1._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__df7c1cd3._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__df7c1cd3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fae8b355._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fae8b355._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0c5f56e3._.js +2 -2
- package/web/.next/server/chunks/ssr/_0c5f56e3._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_1b719e7f._.js +1 -1
- package/web/.next/server/chunks/ssr/_1b719e7f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_37e8548b._.js +1 -1
- package/web/.next/server/chunks/ssr/_37e8548b._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_55d763e2._.js +1 -1
- package/web/.next/server/chunks/ssr/_55d763e2._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_6256a985._.js +1 -1
- package/web/.next/server/chunks/ssr/_6256a985._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_64bdfc6f._.js +2 -2
- package/web/.next/server/chunks/ssr/_64bdfc6f._.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/_8fcc39d4._.js +3 -0
- package/web/.next/server/chunks/ssr/_8fcc39d4._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_b71645b4._.js +1 -1
- package/web/.next/server/chunks/ssr/_b71645b4._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_d4b20e29._.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/{_2a415784._.js → _f0507de3._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_2a415784._.js.map → _f0507de3._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_1fa6f5f0._.js → _f3428a54._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_1fa6f5f0._.js.map → _f3428a54._.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/src_presentation_web_3f392ed3._.js +3 -0
- package/web/.next/server/chunks/ssr/{src_presentation_web_721fb773._.js.map → src_presentation_web_3f392ed3._.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_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 +44 -44
- package/web/.next/static/chunks/{f2a6406394a41d3c.js → 00c975ddd2b87528.js} +1 -1
- package/web/.next/static/chunks/{74ee98538b63a4b2.css → 0b18c50740356276.css} +1 -1
- package/web/.next/static/chunks/{266fe61224d14058.js → 0ead3bd3449a6efe.js} +1 -1
- package/web/.next/static/chunks/{18c49ba954b15750.js → 5afa709c97ad44c3.js} +1 -1
- package/web/.next/static/chunks/{ed43f5ec24322234.js → 64a97bd60c175b9e.js} +1 -1
- package/web/.next/static/chunks/6dad9c4718b9ef1c.js +1 -0
- package/web/.next/static/chunks/{c0fd9ae3d7b3ebe3.js → 7558964bf146f27c.js} +1 -1
- package/web/.next/static/chunks/{7559d0ac9e155de8.js → 86bc398562d84b1d.js} +2 -2
- package/web/.next/static/chunks/{e2e3d8a7d339c110.js → 8ff013b5490a9111.js} +1 -1
- package/web/.next/static/chunks/{41667f7f505952e6.js → 96fb06a2ff46e152.js} +1 -1
- package/web/.next/static/chunks/b3ee28e6d690043f.js +2 -0
- package/web/.next/static/chunks/bb466ffb8a013811.js +1 -0
- package/web/.next/static/chunks/d8364c7cbc1a8432.js +1 -0
- package/web/.next/static/chunks/fa556c575c788679.js +1 -0
- 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/_a9f57758._.js +0 -3
- package/web/.next/server/chunks/ssr/_a9f57758._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_721fb773._.js +0 -3
- package/web/.next/static/chunks/149c88eadafaf835.js +0 -1
- package/web/.next/static/chunks/37b065777853153c.js +0 -2
- package/web/.next/static/chunks/6a370f2709c81d83.js +0 -1
- package/web/.next/static/chunks/a6f8230f1756f318.js +0 -1
- package/web/.next/static/chunks/d1c52a649f1c7704.js +0 -1
- /package/web/.next/static/{CrBDjRQwzIQuEXTobFPfK → i_fav2t7dzinMjPL3vmUY}/_buildManifest.js +0 -0
- /package/web/.next/static/{CrBDjRQwzIQuEXTobFPfK → i_fav2t7dzinMjPL3vmUY}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{CrBDjRQwzIQuEXTobFPfK → i_fav2t7dzinMjPL3vmUY}/_ssgManifest.js +0 -0
package/package.json
CHANGED
package/web/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
i_fav2t7dzinMjPL3vmUY
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"static/chunks/a6dad97d9634a72d.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
10
|
+
"static/i_fav2t7dzinMjPL3vmUY/_ssgManifest.js",
|
|
11
|
+
"static/i_fav2t7dzinMjPL3vmUY/_buildManifest.js"
|
|
12
12
|
],
|
|
13
13
|
"rootMainFiles": [
|
|
14
14
|
"static/chunks/4cec255f2754e5ec.js",
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"polyfillFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/i_fav2t7dzinMjPL3vmUY/_ssgManifest.js",
|
|
9
|
+
"static/i_fav2t7dzinMjPL3vmUY/_buildManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": []
|
|
12
12
|
}
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"dynamicRoutes": {},
|
|
30
30
|
"notFoundRoutes": [],
|
|
31
31
|
"preview": {
|
|
32
|
-
"previewModeId": "
|
|
33
|
-
"previewModeSigningKey": "
|
|
34
|
-
"previewModeEncryptionKey": "
|
|
32
|
+
"previewModeId": "adaab8fea83745080590b5e8a7e89dd1",
|
|
33
|
+
"previewModeSigningKey": "c30532fa3eff849b42d90bfc5cc57e07e1d8a940bffe8a21d377d5c72ea00487",
|
|
34
|
+
"previewModeEncryptionKey": "15ea7965cbf64dc85b51c6c1fd3523b169a7df8ffe11d0a2922153e2f36c20e7"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -2,11 +2,11 @@ self.__SERVER_FILES_MANIFEST={
|
|
|
2
2
|
"version": 1,
|
|
3
3
|
"config": {
|
|
4
4
|
"env": {
|
|
5
|
-
"NEXT_PUBLIC_SHEP_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHEP_VERSION": "1.145.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
8
|
"NEXT_PUBLIC_SHEP_BRANCH": "main",
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "b8a6a2c7646144e1f9f17faa2b8765a89d6c3048",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"version": 1,
|
|
3
3
|
"config": {
|
|
4
4
|
"env": {
|
|
5
|
-
"NEXT_PUBLIC_SHEP_VERSION": "1.
|
|
5
|
+
"NEXT_PUBLIC_SHEP_VERSION": "1.145.0",
|
|
6
6
|
"NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
|
|
7
7
|
"NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
|
|
8
8
|
"NEXT_PUBLIC_SHEP_BRANCH": "main",
|
|
9
|
-
"NEXT_PUBLIC_SHEP_COMMIT": "
|
|
9
|
+
"NEXT_PUBLIC_SHEP_COMMIT": "b8a6a2c7646144e1f9f17faa2b8765a89d6c3048",
|
|
10
10
|
"NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
|
|
11
11
|
},
|
|
12
12
|
"webpack": null,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"00732642a4a6737d75db0fffae894e3434b5bfeb6f": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
6
6
|
"moduleId": 45831,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"exportedName": "pickFolder",
|
|
16
16
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
17
17
|
},
|
|
18
|
-
"
|
|
18
|
+
"408e0579ffdb3116437384094ef7e8225e89f7314b": {
|
|
19
19
|
"workers": {
|
|
20
20
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
21
21
|
"moduleId": 45831,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"exportedName": "listGitHubRepositories",
|
|
31
31
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"407b29a62b0633cf776d9a97078185c2479bbf97f6": {
|
|
34
34
|
"workers": {
|
|
35
35
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
36
36
|
"moduleId": 45831,
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"exportedName": "importGitHubRepository",
|
|
46
46
|
"filename": "src/presentation/web/app/actions/import-github-repository.ts"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"4041288b78ea9385382bcecf0470b5f918303b94bb": {
|
|
49
49
|
"workers": {
|
|
50
50
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
51
51
|
"moduleId": 45831,
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"exportedName": "deployFeature",
|
|
61
61
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"40eb056bfb6d6892bd8091b5c177beae080b2755d2": {
|
|
64
64
|
"workers": {
|
|
65
65
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
66
66
|
"moduleId": 45831,
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"exportedName": "deployRepository",
|
|
76
76
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
77
77
|
},
|
|
78
|
-
"
|
|
78
|
+
"40bfd94e511e08b5b0d2fda10b6ac1e376ba969855": {
|
|
79
79
|
"workers": {
|
|
80
80
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
81
81
|
"moduleId": 45831,
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"exportedName": "stopDeployment",
|
|
91
91
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
92
92
|
},
|
|
93
|
-
"
|
|
93
|
+
"4018d080179a87a50cd0dd9fcdf8d124279e72b879": {
|
|
94
94
|
"workers": {
|
|
95
95
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
96
96
|
"moduleId": 45831,
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"exportedName": "getDeploymentStatus",
|
|
106
106
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
107
107
|
},
|
|
108
|
-
"
|
|
108
|
+
"404d490a2dad4ebfea6a777337249a90b5c1656d84": {
|
|
109
109
|
"workers": {
|
|
110
110
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
111
111
|
"moduleId": 45831,
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"exportedName": "openIde",
|
|
121
121
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"40558b303cdf58f1a01ce4e5558b1a2e5b89254b9e": {
|
|
124
124
|
"workers": {
|
|
125
125
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
126
126
|
"moduleId": 45831,
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"exportedName": "openShell",
|
|
136
136
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
137
137
|
},
|
|
138
|
-
"
|
|
138
|
+
"40a279d988574148008a0fda1fbadd9255ccdd39bd": {
|
|
139
139
|
"workers": {
|
|
140
140
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
141
141
|
"moduleId": 45831,
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
"exportedName": "openFolder",
|
|
151
151
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
152
152
|
},
|
|
153
|
-
"
|
|
153
|
+
"4081061b170d14c6ea664666add1e0be3bdcec3e45": {
|
|
154
154
|
"workers": {
|
|
155
155
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
156
156
|
"moduleId": 45831,
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"exportedName": "syncRepository",
|
|
166
166
|
"filename": "src/presentation/web/app/actions/sync-repository.ts"
|
|
167
167
|
},
|
|
168
|
-
"
|
|
168
|
+
"40252064b7f977f14548877a9370a87066ac0cfff9": {
|
|
169
169
|
"workers": {
|
|
170
170
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
171
171
|
"moduleId": 45831,
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"exportedName": "getDeploymentLogs",
|
|
181
181
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
182
182
|
},
|
|
183
|
-
"
|
|
183
|
+
"00b850f065b0b96d759c03f4f8c8bde4d79f90e7cc": {
|
|
184
184
|
"workers": {
|
|
185
185
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
186
186
|
"moduleId": 45831,
|
|
@@ -195,7 +195,7 @@
|
|
|
195
195
|
"exportedName": "isAgentSetupComplete",
|
|
196
196
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
197
197
|
},
|
|
198
|
-
"
|
|
198
|
+
"00045e64d7d3898521c2d87b5b7be5a9d5b3047b17": {
|
|
199
199
|
"workers": {
|
|
200
200
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
201
201
|
"moduleId": 45831,
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
"exportedName": "checkAgentAuth",
|
|
211
211
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
212
212
|
},
|
|
213
|
-
"
|
|
213
|
+
"001dbe8ef69ff587542bdbccf580050f13abaf6e95": {
|
|
214
214
|
"workers": {
|
|
215
215
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
216
216
|
"moduleId": 45831,
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"exportedName": "checkToolStatus",
|
|
226
226
|
"filename": "src/presentation/web/app/actions/check-tool-status.ts"
|
|
227
227
|
},
|
|
228
|
-
"
|
|
228
|
+
"0000957a9480fabc4bc0b2bd8e7d7c90669fbc99ea": {
|
|
229
229
|
"workers": {
|
|
230
230
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
231
231
|
"moduleId": 45831,
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"exportedName": "getAllAgentModels",
|
|
241
241
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
242
242
|
},
|
|
243
|
-
"
|
|
243
|
+
"608d9bce6aad6cb7e26b0dfcc88f3bbd53e8c78d89": {
|
|
244
244
|
"workers": {
|
|
245
245
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
246
246
|
"moduleId": 45831,
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
"exportedName": "updateAgentAndModel",
|
|
256
256
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
257
257
|
},
|
|
258
|
-
"
|
|
258
|
+
"4022a0ce215aedbae8a2f8402dc462a0f9e39e765f": {
|
|
259
259
|
"workers": {
|
|
260
260
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
261
261
|
"moduleId": 45831,
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"exportedName": "archiveFeature",
|
|
271
271
|
"filename": "src/presentation/web/app/actions/archive-feature.ts"
|
|
272
272
|
},
|
|
273
|
-
"
|
|
273
|
+
"78945e07aaeed73a0b16f0ffbea2c69808c11662ed": {
|
|
274
274
|
"workers": {
|
|
275
275
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
276
276
|
"moduleId": 45831,
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
"exportedName": "deleteFeature",
|
|
286
286
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
287
287
|
},
|
|
288
|
-
"
|
|
288
|
+
"400dee6a00e7b0bdfb11228f70cfaaa305e877bf7b": {
|
|
289
289
|
"workers": {
|
|
290
290
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
291
291
|
"moduleId": 45831,
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
"exportedName": "resumeFeature",
|
|
301
301
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
302
302
|
},
|
|
303
|
-
"
|
|
303
|
+
"403f10d83c3d3b8f7946607a1852138d271532424a": {
|
|
304
304
|
"workers": {
|
|
305
305
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
306
306
|
"moduleId": 45831,
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
"exportedName": "startFeature",
|
|
316
316
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
317
317
|
},
|
|
318
|
-
"
|
|
318
|
+
"402bc072443d70f80d55dae7d7c42b490ecf087781": {
|
|
319
319
|
"workers": {
|
|
320
320
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
321
321
|
"moduleId": 45831,
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
"exportedName": "stopFeature",
|
|
331
331
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
332
332
|
},
|
|
333
|
-
"
|
|
333
|
+
"406d14a8d12f68f5d3ea467f48b4059f138ca2f68f": {
|
|
334
334
|
"workers": {
|
|
335
335
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
336
336
|
"moduleId": 45831,
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
"exportedName": "unarchiveFeature",
|
|
346
346
|
"filename": "src/presentation/web/app/actions/unarchive-feature.ts"
|
|
347
347
|
},
|
|
348
|
-
"
|
|
348
|
+
"40cb73f9dd0861051761e83eccf20b86be4b24edde": {
|
|
349
349
|
"workers": {
|
|
350
350
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
351
351
|
"moduleId": 45831,
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"exportedName": "addRepository",
|
|
361
361
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
362
362
|
},
|
|
363
|
-
"
|
|
363
|
+
"4044cca5da4a25658ede50e6166aa67817f07383de": {
|
|
364
364
|
"workers": {
|
|
365
365
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
366
366
|
"moduleId": 45831,
|
|
@@ -375,7 +375,7 @@
|
|
|
375
375
|
"exportedName": "deleteRepository",
|
|
376
376
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
377
377
|
},
|
|
378
|
-
"
|
|
378
|
+
"4092a9150a4502521633e093bab202114308e15ea1": {
|
|
379
379
|
"workers": {
|
|
380
380
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
381
381
|
"moduleId": 45831,
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
"exportedName": "getFeatureMetadata",
|
|
391
391
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
392
392
|
},
|
|
393
|
-
"
|
|
393
|
+
"403b8101a3e6451bc1cc911ffdb45cc946f77c5192": {
|
|
394
394
|
"workers": {
|
|
395
395
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
396
396
|
"moduleId": 45831,
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
"exportedName": "adoptBranch",
|
|
406
406
|
"filename": "src/presentation/web/app/actions/adopt-branch.ts"
|
|
407
407
|
},
|
|
408
|
-
"
|
|
408
|
+
"4031044700ca5d0a2c4e92cdb17c7f7bef70493766": {
|
|
409
409
|
"workers": {
|
|
410
410
|
"app/(dashboard)/@drawer/adopt/page": {
|
|
411
411
|
"moduleId": 45831,
|