@shepai/cli 1.148.0 → 1.149.0-pr463.3fd9e4e
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/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.js +4 -0
- package/dist/src/presentation/web/app/api/agent-events/route.js +1 -1
- package/dist/src/presentation/web/app/api/sessions/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/sessions/route.js +2 -268
- package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts +17 -0
- package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts.map +1 -0
- package/dist/src/presentation/web/app/api/sessions-batch/route.js +61 -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 +6 -3
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.d.ts +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.js +15 -73
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.stories.js +18 -17
- package/dist/src/presentation/web/components/features/control-center/control-center.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center.js +2 -1
- 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 +4 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +32 -33
- package/dist/src/presentation/web/hooks/sessions-provider.d.ts +12 -0
- package/dist/src/presentation/web/hooks/sessions-provider.d.ts.map +1 -0
- package/dist/src/presentation/web/hooks/sessions-provider.js +57 -0
- package/dist/src/presentation/web/hooks/use-deploy-action.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/use-deploy-action.js +8 -54
- package/dist/src/presentation/web/lib/session-scanner.d.ts +27 -0
- package/dist/src/presentation/web/lib/session-scanner.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/session-scanner.js +255 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/app-path-routes-manifest.json +1 -0
- 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 +3 -3
- package/web/.next/required-server-files.json +3 -3
- package/web/.next/routes-manifest.json +6 -0
- 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/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/api/sessions/route.js +2 -3
- package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
- package/web/.next/server/app/api/sessions-batch/route/app-paths-manifest.json +3 -0
- package/web/.next/server/app/api/sessions-batch/route/build-manifest.json +11 -0
- package/web/.next/server/app/api/sessions-batch/route/server-reference-manifest.json +4 -0
- package/web/.next/server/app/api/sessions-batch/route.js +7 -0
- package/web/.next/server/app/api/sessions-batch/route.js.map +5 -0
- package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -0
- package/web/.next/server/app/api/sessions-batch/route_client-reference-manifest.js +2 -0
- 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/app-paths-manifest.json +1 -0
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_sessions-batch_route_actions_4859f283.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__0d33c29e._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__0d33c29e._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +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]__2138fa7e._.js +2 -2
- 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]__684a868c._.js +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 +3 -3
- 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]__c16bf5de._.js +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]__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/_05c23ad9._.js +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.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/_16eb4fec._.js +1 -1
- package/web/.next/server/chunks/ssr/_16eb4fec._.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/_8fcc39d4._.js +1 -1
- 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/_cd7fb17f._.js +4 -0
- package/web/.next/server/chunks/ssr/_cd7fb17f._.js.map +1 -0
- 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/{_fe63a7f9._.js → _fff03050._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_fe63a7f9._.js.map → _fff03050._.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__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_7b2fda40._.js → src_presentation_web_bc27a88f._.js} +2 -2
- package/web/.next/server/chunks/ssr/{src_presentation_web_7b2fda40._.js.map → src_presentation_web_bc27a88f._.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/{6f76e63ead3fac2e.js → 121c2afa739794c8.js} +1 -1
- package/web/.next/static/chunks/3fc3c48d5fc1d34b.js +1 -0
- package/web/.next/static/chunks/6fb988bb7502376a.js +1 -0
- package/web/.next/static/chunks/7510c0f6c2e3f7ed.js +1 -0
- package/web/.next/static/chunks/{c731682077fbac4f.js → 768af4e247048769.js} +1 -1
- package/web/.next/static/chunks/834e374897ece7a3.js +1 -0
- package/web/.next/static/chunks/{7c5131e33516a325.js → 9d71dd508eeb2a7b.js} +1 -1
- package/web/.next/static/chunks/{48850e202dd814ac.js → ab62defde8095aaf.js} +1 -1
- package/web/.next/static/chunks/{9dad6769d10a32df.js → b2e8d1bb057a5233.js} +1 -1
- package/web/.next/static/chunks/{04869f1d3f5d9071.js → b9170990200dc7f7.js} +1 -1
- package/web/.next/static/chunks/{0137d4850cab3c45.js → ca75d824df20fe75.js} +3 -3
- package/web/.next/static/chunks/fdebfc97662845ff.js +2 -0
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_ff60e4a5.js +0 -3
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_ff60e4a5.js.map +0 -1
- package/web/.next/server/chunks/[externals]__448264a3._.js +0 -3
- package/web/.next/server/chunks/ssr/_4533d6f8._.js +0 -4
- package/web/.next/server/chunks/ssr/_4533d6f8._.js.map +0 -1
- package/web/.next/static/chunks/063a24b49d9818a0.js +0 -1
- package/web/.next/static/chunks/21e82fee1a7e1668.js +0 -1
- package/web/.next/static/chunks/682563e4503cbd58.js +0 -1
- package/web/.next/static/chunks/683b1d85e789c2eb.js +0 -2
- package/web/.next/static/chunks/d62ae5e449d87057.js +0 -1
- /package/web/.next/server/chunks/{[externals]__448264a3._.js.map → 744ca_web__next-internal_server_app_api_sessions-batch_route_actions_4859f283.js.map} +0 -0
- /package/web/.next/static/{zYKuE1zbe1UWwAJv5EVwg → uf467r-P2iBzLS8YsN7j2}/_buildManifest.js +0 -0
- /package/web/.next/static/{zYKuE1zbe1UWwAJv5EVwg → uf467r-P2iBzLS8YsN7j2}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{zYKuE1zbe1UWwAJv5EVwg → uf467r-P2iBzLS8YsN7j2}/_ssgManifest.js +0 -0
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
7:I[66658,["/_next/static/chunks/ab02eec995295bef.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"ViewportBoundary"]
|
|
7
7
|
9:I[66658,["/_next/static/chunks/ab02eec995295bef.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"MetadataBoundary"]
|
|
8
8
|
b:I[42726,["/_next/static/chunks/ab02eec995295bef.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"default"]
|
|
9
|
-
0:{"P":null,"b":"
|
|
9
|
+
0:{"P":null,"b":"uf467r-P2iBzLS8YsN7j2","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/ab02eec995295bef.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/fe70e73feb07bcfd.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],null]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
|
10
10
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
11
11
|
6:null
|
|
12
12
|
a:[]
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[66658,["/_next/static/chunks/ab02eec995295bef.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"ViewportBoundary"]
|
|
3
3
|
3:I[66658,["/_next/static/chunks/ab02eec995295bef.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"MetadataBoundary"]
|
|
4
4
|
4:"$Sreact.suspense"
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"uf467r-P2iBzLS8YsN7j2","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],null]}],"loading":null,"isPartial":false}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[40799,["/_next/static/chunks/ab02eec995295bef.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"default"]
|
|
3
3
|
3:I[73006,["/_next/static/chunks/ab02eec995295bef.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"default"]
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"uf467r-P2iBzLS8YsN7j2","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0:{"buildId":"
|
|
1
|
+
0:{"buildId":"uf467r-P2iBzLS8YsN7j2","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false},"staleTime":300}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"002fb504b58d1948672c52df00af379847885e1267": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/_not-found/page": {
|
|
6
6
|
"moduleId": 23271,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"exportedName": "pickFolder",
|
|
16
16
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
17
17
|
},
|
|
18
|
-
"
|
|
18
|
+
"40af8f5d6f923d30f5fe5911f73e1d18ec9f8954ff": {
|
|
19
19
|
"workers": {
|
|
20
20
|
"app/_not-found/page": {
|
|
21
21
|
"moduleId": 23271,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"exportedName": "listGitHubRepositories",
|
|
31
31
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"40e89c37381b42d2c5244f966fc1ff4d9083640ed3": {
|
|
34
34
|
"workers": {
|
|
35
35
|
"app/_not-found/page": {
|
|
36
36
|
"moduleId": 23271,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
|
|
2
|
-
globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx <module evaluation>":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx <module evaluation>":{"id":87292,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/6f76e63ead3fac2e.js","/_next/static/chunks/682563e4503cbd58.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/b70dd4985a814b27.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/6f76e63ead3fac2e.js","/_next/static/chunks/682563e4503cbd58.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/b70dd4985a814b27.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/6f76e63ead3fac2e.js","/_next/static/chunks/682563e4503cbd58.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/b70dd4985a814b27.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/6f76e63ead3fac2e.js","/_next/static/chunks/682563e4503cbd58.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/b70dd4985a814b27.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx <module evaluation>":{"id":75921,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/6f76e63ead3fac2e.js","/_next/static/chunks/682563e4503cbd58.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/b70dd4985a814b27.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx":{"id":75921,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/6f76e63ead3fac2e.js","/_next/static/chunks/682563e4503cbd58.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/b70dd4985a814b27.js"],"async":false}},"ssrModuleMapping":{"40799":{"*":{"id":69218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"73006":{"*":{"id":76926,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"67804":{"*":{"id":78378,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"50122":{"*":{"id":18508,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"19292":{"*":{"id":55259,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"30088":{"*":{"id":33028,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"66658":{"*":{"id":42422,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"98295":{"*":{"id":84831,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"87292":{"*":{"id":66560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__d48c5b11._.js","server/chunks/ssr/_4093a637._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_0020fddd._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_01046927._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__d48c5b11._.js","server/chunks/ssr/_4093a637._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_0020fddd._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_01046927._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"75921":{"*":{"id":21333,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__d48c5b11._.js","server/chunks/ssr/_4093a637._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_0020fddd._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_01046927._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40799":{"*":{"id":48035,"name":"*","chunks":[],"async":false}},"73006":{"*":{"id":22994,"name":"*","chunks":[],"async":false}},"67804":{"*":{"id":21809,"name":"*","chunks":[],"async":false}},"50122":{"*":{"id":70251,"name":"*","chunks":[],"async":false}},"19292":{"*":{"id":39498,"name":"*","chunks":[],"async":false}},"30088":{"*":{"id":2021,"name":"*","chunks":[],"async":false}},"66658":{"*":{"id":47390,"name":"*","chunks":[],"async":false}},"98295":{"*":{"id":73449,"name":"*","chunks":[],"async":false}},"87292":{"*":{"id":34168,"name":"*","chunks":[],"async":false}},"25251":{"*":{"id":11900,"name":"*","chunks":[],"async":false}},"75921":{"*":{"id":59259,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/presentation/web/app/global-error":[],"[project]/src/presentation/web/app/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/8180973e9cd6a99e.css","inlined":false},{"path":"static/chunks/9b8678597fa1db84.css","inlined":false}]},"entryJSFiles":{"[project]/src/presentation/web/app/global-error":["static/chunks/356ebc89a2a97627.js","static/chunks/fe70e73feb07bcfd.js"],"[project]/src/presentation/web/app/layout":["static/chunks/83fc7ea32e18c9a5.js","static/chunks/672e3da3ad26005b.js","static/chunks/6f76e63ead3fac2e.js","static/chunks/682563e4503cbd58.js","static/chunks/08baac5434d9528e.js","static/chunks/b70dd4985a814b27.js"]}}
|
|
2
|
+
globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40799,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":73006,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":67804,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":50122,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":19292,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":30088,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":66658,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx <module evaluation>":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/app/global-error.tsx":{"id":98295,"name":"*","chunks":["/_next/static/chunks/356ebc89a2a97627.js","/_next/static/chunks/fe70e73feb07bcfd.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx <module evaluation>":{"id":87292,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/121c2afa739794c8.js","/_next/static/chunks/b70dd4985a814b27.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/3fc3c48d5fc1d34b.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/121c2afa739794c8.js","/_next/static/chunks/b70dd4985a814b27.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/3fc3c48d5fc1d34b.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/121c2afa739794c8.js","/_next/static/chunks/b70dd4985a814b27.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/3fc3c48d5fc1d34b.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/121c2afa739794c8.js","/_next/static/chunks/b70dd4985a814b27.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/3fc3c48d5fc1d34b.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx <module evaluation>":{"id":75921,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/121c2afa739794c8.js","/_next/static/chunks/b70dd4985a814b27.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/3fc3c48d5fc1d34b.js"],"async":false},"[project]/src/presentation/web/hooks/feature-flags-context.tsx":{"id":75921,"name":"*","chunks":["/_next/static/chunks/83fc7ea32e18c9a5.js","/_next/static/chunks/672e3da3ad26005b.js","/_next/static/chunks/121c2afa739794c8.js","/_next/static/chunks/b70dd4985a814b27.js","/_next/static/chunks/08baac5434d9528e.js","/_next/static/chunks/3fc3c48d5fc1d34b.js"],"async":false}},"ssrModuleMapping":{"40799":{"*":{"id":69218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"73006":{"*":{"id":76926,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"67804":{"*":{"id":78378,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"50122":{"*":{"id":18508,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"19292":{"*":{"id":55259,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"30088":{"*":{"id":33028,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"66658":{"*":{"id":42422,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"98295":{"*":{"id":84831,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__b062b383._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"87292":{"*":{"id":66560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__d48c5b11._.js","server/chunks/ssr/_4093a637._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_0020fddd._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_01046927._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__d48c5b11._.js","server/chunks/ssr/_4093a637._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_0020fddd._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_01046927._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}},"75921":{"*":{"id":21333,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__d48c5b11._.js","server/chunks/ssr/_4093a637._.js","server/chunks/ssr/_b5fc318a._.js","server/chunks/ssr/_1b7dae9a._.js","server/chunks/ssr/_0020fddd._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_d4b20e29._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_01046927._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40799":{"*":{"id":48035,"name":"*","chunks":[],"async":false}},"73006":{"*":{"id":22994,"name":"*","chunks":[],"async":false}},"67804":{"*":{"id":21809,"name":"*","chunks":[],"async":false}},"50122":{"*":{"id":70251,"name":"*","chunks":[],"async":false}},"19292":{"*":{"id":39498,"name":"*","chunks":[],"async":false}},"30088":{"*":{"id":2021,"name":"*","chunks":[],"async":false}},"66658":{"*":{"id":47390,"name":"*","chunks":[],"async":false}},"98295":{"*":{"id":73449,"name":"*","chunks":[],"async":false}},"87292":{"*":{"id":34168,"name":"*","chunks":[],"async":false}},"25251":{"*":{"id":11900,"name":"*","chunks":[],"async":false}},"75921":{"*":{"id":59259,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/presentation/web/app/global-error":[],"[project]/src/presentation/web/app/layout":[{"path":"static/chunks/61c4d617e4b83d4b.css","inlined":false},{"path":"static/chunks/8180973e9cd6a99e.css","inlined":false},{"path":"static/chunks/9b8678597fa1db84.css","inlined":false}]},"entryJSFiles":{"[project]/src/presentation/web/app/global-error":["static/chunks/356ebc89a2a97627.js","static/chunks/fe70e73feb07bcfd.js"],"[project]/src/presentation/web/app/layout":["static/chunks/83fc7ea32e18c9a5.js","static/chunks/672e3da3ad26005b.js","static/chunks/121c2afa739794c8.js","static/chunks/b70dd4985a814b27.js","static/chunks/08baac5434d9528e.js","static/chunks/3fc3c48d5fc1d34b.js"]}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/constants.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/interop-default.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/is-error.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/semver-noop.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/load-manifest.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/response-cache/types.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/package.json","../../../../../../../../../node_modules/next","../../../../../../CLAUDE.md","../../../../../../app/(dashboard)/@drawer/adopt/page.tsx","../../../../../../app/(dashboard)/@drawer/create/page.tsx","../../../../../../app/(dashboard)/@drawer/default.tsx","../../../../../../app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.tsx","../../../../../../app/(dashboard)/@drawer/feature/[featureId]/page.tsx","../../../../../../app/(dashboard)/@drawer/repository/[repositoryId]/page.tsx","../../../../../../app/(dashboard)/create/page.tsx","../../../../../../app/(dashboard)/feature/[featureId]/[tab]/page.tsx","../../../../../../app/(dashboard)/feature/[featureId]/page.tsx","../../../../../../app/(dashboard)/get-graph-data.ts","../../../../../../app/(dashboard)/layout.tsx","../../../../../../app/(dashboard)/page.tsx","../../../../../../app/(dashboard)/repository/[repositoryId]/page.tsx","../../../../../../app/actions/add-repository.ts","../../../../../../app/actions/adopt-branch.ts","../../../../../../app/actions/agent-setup-flag.ts","../../../../../../app/actions/approve-feature.ts","../../../../../../app/actions/archive-feature.ts","../../../../../../app/actions/check-agent-auth.ts","../../../../../../app/actions/check-agent-tool.ts","../../../../../../app/actions/check-tool-status.ts","../../../../../../app/actions/compose-user-input.ts","../../../../../../app/actions/create-feature.ts","../../../../../../app/actions/delete-feature.ts","../../../../../../app/actions/delete-repository.ts","../../../../../../app/actions/deploy-feature.ts","../../../../../../app/actions/deploy-repository.ts","../../../../../../app/actions/get-all-agent-models.ts","../../../../../../app/actions/get-available-terminals.ts","../../../../../../app/actions/get-branch-sync-status.ts","../../../../../../app/actions/get-deployment-logs.ts","../../../../../../app/actions/get-deployment-status.ts","../../../../../../app/actions/get-feature-artifact.ts","../../../../../../app/actions/get-feature-drawer-data.ts","../../../../../../app/actions/get-feature-metadata.ts","../../../../../../app/actions/get-feature-phase-timings.ts","../../../../../../app/actions/get-feature-plan.ts","../../../../../../app/actions/get-merge-review-data.ts","../../../../../../app/actions/get-research-artifact.ts","../../../../../../app/actions/get-supported-models.ts","../../../../../../app/actions/get-workflow-defaults.ts","../../../../../../app/actions/import-github-repository.ts","../../../../../../app/actions/list-branches.ts","../../../../../../app/actions/list-github-repositories.ts","../../../../../../app/actions/load-settings.ts","../../../../../../app/actions/open-folder.ts","../../../../../../app/actions/open-ide.ts","../../../../../../app/actions/open-shell.ts","../../../../../../app/actions/pick-folder.ts","../../../../../../app/actions/rebase-feature.ts","../../../../../../app/actions/reject-feature.ts","../../../../../../app/actions/resume-feature.ts","../../../../../../app/actions/start-feature.ts","../../../../../../app/actions/stop-deployment.ts","../../../../../../app/actions/stop-feature.ts","../../../../../../app/actions/sync-repository.ts","../../../../../../app/actions/unarchive-feature.ts","../../../../../../app/actions/update-agent-and-model.ts","../../../../../../app/actions/update-model.ts","../../../../../../app/actions/update-settings.ts","../../../../../../app/api/agent-events/health/route.ts","../../../../../../app/api/agent-events/route.ts","../../../../../../app/api/attachments/preview/route.ts","../../../../../../app/api/attachments/upload-from-path/route.ts","../../../../../../app/api/attachments/upload/route.ts","../../../../../../app/api/cli-upgrade/route.ts","../../../../../../app/api/deployment-logs/route.ts","../../../../../../app/api/dialog/pick-files/route.ts","../../../../../../app/api/directory/list/route.ts","../../../../../../app/api/evidence/route.ts","../../../../../../app/api/feature-logs/route.ts","../../../../../../app/api/graph-data/route.ts","../../../../../../app/api/npm-version/route.ts","../../../../../../app/api/sessions/route.ts","../../../../../../app/api/tools/[id]/install/route.ts","../../../../../../app/api/tools/[id]/install/stream/route.ts","../../../../../../app/api/tools/[id]/launch/route.ts","../../../../../../app/api/tools/route.ts","../../../../../../app/api/version/route.ts","../../../../../../app/build-feature-node-data.ts","../../../../../../app/build-graph-nodes.ts","../../../../../../app/derive-state.ts","../../../../../../app/global-error.tsx","../../../../../../app/globals.css","../../../../../../app/layout.tsx","../../../../../../app/not-found.tsx","../../../../../../app/settings/page.tsx","../../../../../../app/skills/page.tsx","../../../../../../app/tools/page.tsx","../../../../../../app/version/page.tsx","../../../../../../components.json","../../../../../../components/common/action-button/action-button.stories.tsx","../../../../../../components/common/action-button/action-button.tsx","../../../../../../components/common/action-button/index.ts","../../../../../../components/common/add-repository-button/add-repository-button.tsx","../../../../../../components/common/add-repository-button/index.ts","../../../../../../components/common/add-repository-button/pick-folder.ts","../../../../../../components/common/attachment-card/attachment-card.stories.tsx","../../../../../../components/common/attachment-card/attachment-card.tsx","../../../../../../components/common/attachment-card/index.ts","../../../../../../components/common/attachment-chip/attachment-chip.stories.tsx","../../../../../../components/common/attachment-chip/attachment-chip.tsx","../../../../../../components/common/attachment-chip/index.ts","../../../../../../components/common/base-drawer/base-drawer.stories.tsx","../../../../../../components/common/base-drawer/base-drawer.tsx","../../../../../../components/common/base-drawer/index.ts","../../../../../../components/common/ci-status-badge/ci-status-badge.stories.tsx","../../../../../../components/common/ci-status-badge/ci-status-badge.tsx","../../../../../../components/common/ci-status-badge/index.ts","../../../../../../components/common/control-center-drawer/adopt-branch-drawer.stories.tsx","../../../../../../components/common/control-center-drawer/adopt-branch-drawer.tsx","../../../../../../components/common/control-center-drawer/adopt-drawer-client.tsx","../../../../../../components/common/control-center-drawer/create-drawer-client.tsx","../../../../../../components/common/control-center-drawer/drawer-view.ts","../../../../../../components/common/control-center-drawer/feature-drawer-client.tsx","../../../../../../components/common/control-center-drawer/index.ts","../../../../../../components/common/control-center-drawer/repository-drawer-client.tsx","../../../../../../components/common/control-center-drawer/use-artifact-fetch.ts","../../../../../../components/common/control-center-drawer/use-drawer-sync.ts","../../../../../../components/common/delete-feature-dialog/delete-feature-dialog-config.ts","../../../../../../components/common/delete-feature-dialog/delete-feature-dialog.stories.tsx","../../../../../../components/common/delete-feature-dialog/delete-feature-dialog.tsx","../../../../../../components/common/delete-feature-dialog/index.ts","../../../../../../components/common/deployment-status-badge/deployment-status-badge.stories.tsx","../../../../../../components/common/deployment-status-badge/deployment-status-badge.tsx","../../../../../../components/common/deployment-status-badge/index.ts","../../../../../../components/common/drawer-action-bar/drawer-action-bar-config.ts","../../../../../../components/common/drawer-action-bar/drawer-action-bar.stories.tsx","../../../../../../components/common/drawer-action-bar/drawer-action-bar.tsx","../../../../../../components/common/drawer-action-bar/index.ts","../../../../../../components/common/drawer-revision-input/drawer-revision-input-config.ts","../../../../../../components/common/drawer-revision-input/drawer-revision-input.tsx","../../../../../../components/common/drawer-revision-input/index.ts","../../../../../../components/common/editor-type-icons.tsx","../../../../../../components/common/elapsed-time/elapsed-time.stories.tsx","../../../../../../components/common/elapsed-time/elapsed-time.tsx","../../../../../../components/common/elapsed-time/index.ts","../../../../../../components/common/empty-state/empty-state.stories.tsx","../../../../../../components/common/empty-state/empty-state.tsx","../../../../../../components/common/empty-state/index.ts","../../../../../../components/common/feature-create-drawer/feature-create-drawer.stories.tsx","../../../../../../components/common/feature-create-drawer/feature-create-drawer.tsx","../../../../../../components/common/feature-create-drawer/index.ts","../../../../../../components/common/feature-create-drawer/pick-files.ts","../../../../../../components/common/feature-create-drawer/repository-combobox.stories.tsx","../../../../../../components/common/feature-drawer-tabs/activity-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/activity-tab.tsx","../../../../../../components/common/feature-drawer-tabs/branch-sync-status.stories.tsx","../../../../../../components/common/feature-drawer-tabs/branch-sync-status.tsx","../../../../../../components/common/feature-drawer-tabs/event-log-viewer.stories.tsx","../../../../../../components/common/feature-drawer-tabs/event-log-viewer.tsx","../../../../../../components/common/feature-drawer-tabs/feature-drawer-tabs.stories.tsx","../../../../../../components/common/feature-drawer-tabs/feature-drawer-tabs.tsx","../../../../../../components/common/feature-drawer-tabs/index.ts","../../../../../../components/common/feature-drawer-tabs/log-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/log-tab.tsx","../../../../../../components/common/feature-drawer-tabs/overview-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/overview-tab.tsx","../../../../../../components/common/feature-drawer-tabs/plan-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/plan-tab.tsx","../../../../../../components/common/feature-drawer-tabs/use-tab-data-fetch.ts","../../../../../../components/common/feature-drawer/index.ts","../../../../../../components/common/feature-drawer/use-feature-actions.ts","../../../../../../components/common/feature-list-item/feature-list-item.stories.tsx","../../../../../../components/common/feature-list-item/feature-list-item.tsx","../../../../../../components/common/feature-list-item/index.ts","../../../../../../components/common/feature-node/agent-type-icons.stories.tsx","../../../../../../components/common/feature-node/agent-type-icons.tsx","../../../../../../components/common/feature-node/derive-feature-state.ts","../../../../../../components/common/feature-node/feature-node-state-config.ts","../../../../../../components/common/feature-node/feature-node.stories.tsx","../../../../../../components/common/feature-node/feature-node.tsx","../../../../../../components/common/feature-node/feature-sessions-dropdown.stories.tsx","../../../../../../components/common/feature-node/feature-sessions-dropdown.tsx","../../../../../../components/common/feature-node/index.ts","../../../../../../components/common/feature-status-badges/feature-status-badges.stories.tsx","../../../../../../components/common/feature-status-badges/feature-status-badges.tsx","../../../../../../components/common/feature-status-badges/index.ts","../../../../../../components/common/feature-status-config.ts","../../../../../../components/common/feature-status-group/feature-status-group.stories.tsx","../../../../../../components/common/feature-status-group/feature-status-group.tsx","../../../../../../components/common/feature-status-group/index.ts","../../../../../../components/common/floating-action-button/floating-action-button.stories.tsx","../../../../../../components/common/floating-action-button/floating-action-button.tsx","../../../../../../components/common/floating-action-button/index.ts","../../../../../../components/common/github-import-dialog/github-import-dialog.stories.tsx","../../../../../../components/common/github-import-dialog/github-import-dialog.tsx","../../../../../../components/common/github-import-dialog/github-repo-browser.stories.tsx","../../../../../../components/common/github-import-dialog/github-repo-browser.tsx","../../../../../../components/common/github-import-dialog/github-url-input.stories.tsx","../../../../../../components/common/github-import-dialog/github-url-input.tsx","../../../../../../components/common/github-import-dialog/index.ts","../../../../../../components/common/index.ts","../../../../../../components/common/inline-attachments/index.ts","../../../../../../components/common/inline-attachments/inline-attachments.stories.tsx","../../../../../../components/common/inline-attachments/inline-attachments.tsx","../../../../../../components/common/loading-skeleton/index.ts","../../../../../../components/common/loading-skeleton/loading-skeleton.stories.tsx","../../../../../../components/common/loading-skeleton/loading-skeleton.tsx","../../../../../../components/common/merge-review/diff-view.stories.tsx","../../../../../../components/common/merge-review/diff-view.tsx","../../../../../../components/common/merge-review/index.ts","../../../../../../components/common/merge-review/merge-review-config.ts","../../../../../../components/common/merge-review/merge-review.stories.tsx","../../../../../../components/common/merge-review/merge-review.tsx","../../../../../../components/common/open-action-menu/config.ts","../../../../../../components/common/open-action-menu/index.ts","../../../../../../components/common/open-action-menu/open-action-menu.stories.tsx","../../../../../../components/common/open-action-menu/open-action-menu.tsx","../../../../../../components/common/page-header/index.ts","../../../../../../components/common/page-header/page-header.stories.tsx","../../../../../../components/common/page-header/page-header.tsx","../../../../../../components/common/prd-questionnaire/index.ts","../../../../../../components/common/prd-questionnaire/prd-questionnaire-config.ts","../../../../../../components/common/prd-questionnaire/prd-questionnaire.stories.tsx","../../../../../../components/common/prd-questionnaire/prd-questionnaire.tsx","../../../../../../components/common/product-decisions-summary/index.ts","../../../../../../components/common/product-decisions-summary/product-decisions-summary-config.ts","../../../../../../components/common/product-decisions-summary/product-decisions-summary.stories.tsx","../../../../../../components/common/product-decisions-summary/product-decisions-summary.tsx","../../../../../../components/common/react-file-manager-dialog/index.ts","../../../../../../components/common/react-file-manager-dialog/react-file-manager-dialog-config.ts","../../../../../../components/common/react-file-manager-dialog/react-file-manager-dialog.stories.tsx","../../../../../../components/common/react-file-manager-dialog/react-file-manager-dialog.tsx","../../../../../../components/common/reject-feedback-dialog/index.ts","../../../../../../components/common/reject-feedback-dialog/reject-feedback-dialog-config.ts","../../../../../../components/common/reject-feedback-dialog/reject-feedback-dialog.stories.tsx","../../../../../../components/common/reject-feedback-dialog/reject-feedback-dialog.tsx","../../../../../../components/common/repository-node/index.ts","../../../../../../components/common/repository-node/repository-drawer.stories.tsx","../../../../../../components/common/repository-node/repository-drawer.tsx","../../../../../../components/common/repository-node/repository-node-config.ts","../../../../../../components/common/repository-node/repository-node.stories.tsx","../../../../../../components/common/repository-node/repository-node.tsx","../../../../../../components/common/repository-node/use-repository-actions.ts","../../../../../../components/common/server-log-viewer/index.ts","../../../../../../components/common/server-log-viewer/server-log-viewer.stories.tsx","../../../../../../components/common/server-log-viewer/server-log-viewer.tsx","../../../../../../components/common/shep-logo/index.ts","../../../../../../components/common/shep-logo/shep-logo.stories.tsx","../../../../../../components/common/shep-logo/shep-logo.tsx","../../../../../../components/common/sidebar-collapse-toggle/index.ts","../../../../../../components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.stories.tsx","../../../../../../components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.tsx","../../../../../../components/common/sidebar-nav-item/index.ts","../../../../../../components/common/sidebar-nav-item/sidebar-nav-item.stories.tsx","../../../../../../components/common/sidebar-nav-item/sidebar-nav-item.tsx","../../../../../../components/common/sidebar-section-header/index.ts","../../../../../../components/common/sidebar-section-header/sidebar-section-header.stories.tsx","../../../../../../components/common/sidebar-section-header/sidebar-section-header.tsx","../../../../../../components/common/sound-toggle/index.ts","../../../../../../components/common/sound-toggle/sound-toggle.stories.tsx","../../../../../../components/common/sound-toggle/sound-toggle.tsx","../../../../../../components/common/task-progress-view/index.ts","../../../../../../components/common/task-progress-view/task-progress-view.stories.tsx","../../../../../../components/common/task-progress-view/task-progress-view.tsx","../../../../../../components/common/tech-decisions-review/index.ts","../../../../../../components/common/tech-decisions-review/tech-decisions-review-config.ts","../../../../../../components/common/tech-decisions-review/tech-decisions-review.stories.tsx","../../../../../../components/common/tech-decisions-review/tech-decisions-review.tsx","../../../../../../components/common/theme-toggle/index.ts","../../../../../../components/common/theme-toggle/theme-toggle.stories.tsx","../../../../../../components/common/theme-toggle/theme-toggle.tsx","../../../../../../components/common/version-badge/index.ts","../../../../../../components/common/version-badge/version-badge.stories.tsx","../../../../../../components/common/version-badge/version-badge.tsx","../../../../../../components/features/control-center/control-center-empty-state.stories.tsx","../../../../../../components/features/control-center/control-center-empty-state.tsx","../../../../../../components/features/control-center/control-center-inner.tsx","../../../../../../components/features/control-center/control-center.stories.tsx","../../../../../../components/features/control-center/control-center.tsx","../../../../../../components/features/control-center/index.ts","../../../../../../components/features/control-center/use-control-center-state.ts","../../../../../../components/features/control-center/welcome-agent-setup.stories.tsx","../../../../../../components/features/control-center/welcome-agent-setup.tsx","../../../../../../components/features/features-canvas/dependency-edge.stories.tsx","../../../../../../components/features/features-canvas/dependency-edge.tsx","../../../../../../components/features/features-canvas/features-canvas.stories.tsx","../../../../../../components/features/features-canvas/features-canvas.tsx","../../../../../../components/features/features-canvas/index.ts","../../../../../../components/features/index.ts","../../../../../../components/features/settings/AgentModelPicker/AgentModelPicker.stories.tsx","../../../../../../components/features/settings/AgentModelPicker/index.tsx","../../../../../../components/features/settings/ModelPicker/ModelPicker.stories.tsx","../../../../../../components/features/settings/ModelPicker/index.tsx","../../../../../../components/features/settings/agent-settings-section.stories.tsx","../../../../../../components/features/settings/agent-settings-section.tsx","../../../../../../components/features/settings/database-settings-section.stories.tsx","../../../../../../components/features/settings/database-settings-section.tsx","../../../../../../components/features/settings/environment-settings-section.stories.tsx","../../../../../../components/features/settings/environment-settings-section.tsx","../../../../../../components/features/settings/feature-flags-settings-section.stories.tsx","../../../../../../components/features/settings/feature-flags-settings-section.tsx","../../../../../../components/features/settings/notification-settings-section.stories.tsx","../../../../../../components/features/settings/notification-settings-section.tsx","../../../../../../components/features/settings/settings-page-client.stories.tsx","../../../../../../components/features/settings/settings-page-client.tsx","../../../../../../components/features/settings/timeout-slider.stories.tsx","../../../../../../components/features/settings/timeout-slider.tsx","../../../../../../components/features/settings/workflow-settings-section.stories.tsx","../../../../../../components/features/settings/workflow-settings-section.tsx","../../../../../../components/features/skills/category-filter.stories.tsx","../../../../../../components/features/skills/category-filter.tsx","../../../../../../components/features/skills/index.ts","../../../../../../components/features/skills/skill-card.stories.tsx","../../../../../../components/features/skills/skill-card.tsx","../../../../../../components/features/skills/skill-detail-drawer.stories.tsx","../../../../../../components/features/skills/skill-detail-drawer.tsx","../../../../../../components/features/skills/skill-list.stories.tsx","../../../../../../components/features/skills/skill-list.tsx","../../../../../../components/features/skills/skills-page-client.stories.tsx","../../../../../../components/features/skills/skills-page-client.tsx","../../../../../../components/features/tools/index.ts","../../../../../../components/features/tools/tool-card.stories.tsx","../../../../../../components/features/tools/tool-card.tsx","../../../../../../components/features/tools/tool-detail-drawer.stories.tsx","../../../../../../components/features/tools/tool-detail-drawer.tsx","../../../../../../components/features/tools/tools-page-client.stories.tsx","../../../../../../components/features/tools/tools-page-client.tsx","../../../../../../components/features/version/version-page-client.tsx","../../../../../../components/layouts/app-shell/app-shell.tsx","../../../../../../components/layouts/app-shell/index.ts","../../../../../../components/layouts/app-sidebar/app-sidebar.stories.tsx","../../../../../../components/layouts/app-sidebar/app-sidebar.tsx","../../../../../../components/layouts/app-sidebar/index.ts","../../../../../../components/layouts/dashboard-layout/dashboard-layout.stories.tsx","../../../../../../components/layouts/dashboard-layout/dashboard-layout.tsx","../../../../../../components/layouts/dashboard-layout/index.ts","../../../../../../components/layouts/header/header.stories.tsx","../../../../../../components/layouts/header/header.tsx","../../../../../../components/layouts/header/index.ts","../../../../../../components/layouts/index.ts","../../../../../../components/layouts/sidebar/index.ts","../../../../../../components/layouts/sidebar/sidebar.stories.tsx","../../../../../../components/layouts/sidebar/sidebar.tsx","../../../../../../components/ui/accordion.stories.tsx","../../../../../../components/ui/accordion.tsx","../../../../../../components/ui/alert-dialog.stories.tsx","../../../../../../components/ui/alert-dialog.tsx","../../../../../../components/ui/alert.stories.tsx","../../../../../../components/ui/alert.tsx","../../../../../../components/ui/badge.stories.tsx","../../../../../../components/ui/badge.tsx","../../../../../../components/ui/button.stories.tsx","../../../../../../components/ui/button.tsx","../../../../../../components/ui/card.stories.tsx","../../../../../../components/ui/card.tsx","../../../../../../components/ui/checkbox-group-item.stories.tsx","../../../../../../components/ui/checkbox-group-item.tsx","../../../../../../components/ui/checkbox-group.stories.tsx","../../../../../../components/ui/checkbox-group.tsx","../../../../../../components/ui/checkbox.stories.tsx","../../../../../../components/ui/checkbox.tsx","../../../../../../components/ui/comet-spinner.stories.tsx","../../../../../../components/ui/comet-spinner.tsx","../../../../../../components/ui/command.tsx","../../../../../../components/ui/dialog.stories.tsx","../../../../../../components/ui/dialog.tsx","../../../../../../components/ui/drawer.stories.tsx","../../../../../../components/ui/drawer.tsx","../../../../../../components/ui/dropdown-menu.tsx","../../../../../../components/ui/input.stories.tsx","../../../../../../components/ui/input.tsx","../../../../../../components/ui/label.stories.tsx","../../../../../../components/ui/label.tsx","../../../../../../components/ui/popover.stories.tsx","../../../../../../components/ui/popover.tsx","../../../../../../components/ui/scroll-area.tsx","../../../../../../components/ui/select.stories.tsx","../../../../../../components/ui/select.tsx","../../../../../../components/ui/separator.tsx","../../../../../../components/ui/sheet.tsx","../../../../../../components/ui/sidebar.tsx","../../../../../../components/ui/skeleton.tsx","../../../../../../components/ui/slider.stories.tsx","../../../../../../components/ui/slider.tsx","../../../../../../components/ui/sonner.stories.tsx","../../../../../../components/ui/sonner.tsx","../../../../../../components/ui/spinner.stories.tsx","../../../../../../components/ui/spinner.tsx","../../../../../../components/ui/switch.tsx","../../../../../../components/ui/tabs.stories.tsx","../../../../../../components/ui/tabs.tsx","../../../../../../components/ui/textarea.stories.tsx","../../../../../../components/ui/textarea.tsx","../../../../../../components/ui/tooltip.tsx","../../../../../../dev-server.ts","../../../../../../docs/Colors.mdx","../../../../../../docs/GettingStarted.mdx","../../../../../../docs/Typography.mdx","../../../../../../eslint.config.mjs","../../../../../../hooks/agent-events-provider.tsx","../../../../../../hooks/drawer-close-guard.tsx","../../../../../../hooks/feature-flags-context.tsx","../../../../../../hooks/sidebar-features-context.tsx","../../../../../../hooks/use-agent-events.ts","../../../../../../hooks/use-branch-sync-status.ts","../../../../../../hooks/use-cli-upgrade.ts","../../../../../../hooks/use-deferred-mount.ts","../../../../../../hooks/use-deploy-action.ts","../../../../../../hooks/use-deployment-logs.ts","../../../../../../hooks/use-feature-logs.ts","../../../../../../hooks/use-graph-state.ts","../../../../../../hooks/use-mobile.ts","../../../../../../hooks/use-notifications.stories.tsx","../../../../../../hooks/use-notifications.ts","../../../../../../hooks/use-npm-version-check.ts","../../../../../../hooks/use-selected-feature-id.ts","../../../../../../hooks/use-selected-repository.ts","../../../../../../hooks/use-sound-action.stories.tsx","../../../../../../hooks/use-sound-action.ts","../../../../../../hooks/use-sound-enabled.ts","../../../../../../hooks/use-sound.stories.tsx","../../../../../../hooks/use-sound.ts","../../../../../../hooks/use-tool-install-stream.ts","../../../../../../hooks/use-version.ts","../../../../../../hooks/use-viewport-persistence.ts","../../../../../../hooks/useTheme.ts","../../../../../../instrumentation.ts","../../../../../../lib/compare-versions.ts","../../../../../../lib/derive-graph.ts","../../../../../../lib/feature-flags.ts","../../../../../../lib/format-duration.ts","../../../../../../lib/is-same-shep-instance.ts","../../../../../../lib/layout-with-dagre.ts","../../../../../../lib/logger.ts","../../../../../../lib/model-metadata.ts","../../../../../../lib/parse-log-line.ts","../../../../../../lib/server-container.ts","../../../../../../lib/skills.ts","../../../../../../lib/utils.ts","../../../../../../lib/version.ts","../../../../../../next.config.ts","../../../../../../node_modules/next","../../../../../../package.json","../../../../../../postcss.config.mjs","../../../../../../public/agent-events-sw.js","../../../../../../public/favicon-dark.svg","../../../../../../public/favicon-light.svg","../../../../../../public/icons/agents/aider.png","../../../../../../public/icons/agents/claude-ai-icon.svg","../../../../../../public/icons/agents/claude-code.jpeg","../../../../../../public/icons/agents/continue.jpeg","../../../../../../public/icons/agents/cursor.jpeg","../../../../../../public/icons/agents/gemini-cli.jpeg","../../../../../../public/icons/editors/vscode.svg","../../../../../../public/icons/editors/windsurf.svg","../../../../../../public/icons/editors/zed.svg","../../../../../../public/sounds/button.wav","../../../../../../public/sounds/caution.wav","../../../../../../public/sounds/celebration.wav","../../../../../../public/sounds/disabled.wav","../../../../../../public/sounds/notification.wav","../../../../../../public/sounds/progress_loop.wav","../../../../../../public/sounds/ringtone_loop.wav","../../../../../../public/sounds/select.wav","../../../../../../public/sounds/swipe.wav","../../../../../../public/sounds/swipe_01.wav","../../../../../../public/sounds/swipe_02.wav","../../../../../../public/sounds/swipe_03.wav","../../../../../../public/sounds/swipe_04.wav","../../../../../../public/sounds/swipe_05.wav","../../../../../../public/sounds/tap_01.wav","../../../../../../public/sounds/tap_02.wav","../../../../../../public/sounds/tap_03.wav","../../../../../../public/sounds/tap_04.wav","../../../../../../public/sounds/tap_05.wav","../../../../../../public/sounds/toggle_off.wav","../../../../../../public/sounds/toggle_on.wav","../../../../../../public/sounds/transition_down.wav","../../../../../../public/sounds/transition_up.wav","../../../../../../public/sounds/type_01.wav","../../../../../../public/sounds/type_02.wav","../../../../../../public/sounds/type_03.wav","../../../../../../public/sounds/type_04.wav","../../../../../../public/sounds/type_05.wav","../../../../../../tsconfig.json","../../../../../../types/theme.ts","../../../../chunks/403f9_next_567de315._.js","../../../../chunks/744ca_web__next-internal_server_app_api_attachments_preview_route_actions_0f48c3e9.js","../../../../chunks/[root-of-the-server]__26565141._.js","../../../../chunks/[root-of-the-server]__57104a4c._.js","../../../../chunks/[turbopack]_runtime.js","./route_client-reference-manifest.js"]}
|
|
1
|
+
{"version":1,"files":["../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/constants.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/interop-default.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/is-error.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/lib/semver-noop.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/load-manifest.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/response-cache/types.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../../../node_modules/.pnpm/next@16.1.6_@babel+core@7.29.0_@playwright+test@1.58.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/package.json","../../../../../../../../../node_modules/next","../../../../../../CLAUDE.md","../../../../../../app/(dashboard)/@drawer/adopt/page.tsx","../../../../../../app/(dashboard)/@drawer/create/page.tsx","../../../../../../app/(dashboard)/@drawer/default.tsx","../../../../../../app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.tsx","../../../../../../app/(dashboard)/@drawer/feature/[featureId]/page.tsx","../../../../../../app/(dashboard)/@drawer/repository/[repositoryId]/page.tsx","../../../../../../app/(dashboard)/create/page.tsx","../../../../../../app/(dashboard)/feature/[featureId]/[tab]/page.tsx","../../../../../../app/(dashboard)/feature/[featureId]/page.tsx","../../../../../../app/(dashboard)/get-graph-data.ts","../../../../../../app/(dashboard)/layout.tsx","../../../../../../app/(dashboard)/page.tsx","../../../../../../app/(dashboard)/repository/[repositoryId]/page.tsx","../../../../../../app/actions/add-repository.ts","../../../../../../app/actions/adopt-branch.ts","../../../../../../app/actions/agent-setup-flag.ts","../../../../../../app/actions/approve-feature.ts","../../../../../../app/actions/archive-feature.ts","../../../../../../app/actions/check-agent-auth.ts","../../../../../../app/actions/check-agent-tool.ts","../../../../../../app/actions/check-tool-status.ts","../../../../../../app/actions/compose-user-input.ts","../../../../../../app/actions/create-feature.ts","../../../../../../app/actions/delete-feature.ts","../../../../../../app/actions/delete-repository.ts","../../../../../../app/actions/deploy-feature.ts","../../../../../../app/actions/deploy-repository.ts","../../../../../../app/actions/get-all-agent-models.ts","../../../../../../app/actions/get-available-terminals.ts","../../../../../../app/actions/get-branch-sync-status.ts","../../../../../../app/actions/get-deployment-logs.ts","../../../../../../app/actions/get-deployment-status.ts","../../../../../../app/actions/get-feature-artifact.ts","../../../../../../app/actions/get-feature-drawer-data.ts","../../../../../../app/actions/get-feature-metadata.ts","../../../../../../app/actions/get-feature-phase-timings.ts","../../../../../../app/actions/get-feature-plan.ts","../../../../../../app/actions/get-merge-review-data.ts","../../../../../../app/actions/get-research-artifact.ts","../../../../../../app/actions/get-supported-models.ts","../../../../../../app/actions/get-workflow-defaults.ts","../../../../../../app/actions/import-github-repository.ts","../../../../../../app/actions/list-branches.ts","../../../../../../app/actions/list-github-repositories.ts","../../../../../../app/actions/load-settings.ts","../../../../../../app/actions/open-folder.ts","../../../../../../app/actions/open-ide.ts","../../../../../../app/actions/open-shell.ts","../../../../../../app/actions/pick-folder.ts","../../../../../../app/actions/rebase-feature.ts","../../../../../../app/actions/reject-feature.ts","../../../../../../app/actions/resume-feature.ts","../../../../../../app/actions/start-feature.ts","../../../../../../app/actions/stop-deployment.ts","../../../../../../app/actions/stop-feature.ts","../../../../../../app/actions/sync-repository.ts","../../../../../../app/actions/unarchive-feature.ts","../../../../../../app/actions/update-agent-and-model.ts","../../../../../../app/actions/update-model.ts","../../../../../../app/actions/update-settings.ts","../../../../../../app/api/agent-events/health/route.ts","../../../../../../app/api/agent-events/route.ts","../../../../../../app/api/attachments/preview/route.ts","../../../../../../app/api/attachments/upload-from-path/route.ts","../../../../../../app/api/attachments/upload/route.ts","../../../../../../app/api/cli-upgrade/route.ts","../../../../../../app/api/deployment-logs/route.ts","../../../../../../app/api/dialog/pick-files/route.ts","../../../../../../app/api/directory/list/route.ts","../../../../../../app/api/evidence/route.ts","../../../../../../app/api/feature-logs/route.ts","../../../../../../app/api/graph-data/route.ts","../../../../../../app/api/npm-version/route.ts","../../../../../../app/api/sessions-batch/route.ts","../../../../../../app/api/sessions/route.ts","../../../../../../app/api/tools/[id]/install/route.ts","../../../../../../app/api/tools/[id]/install/stream/route.ts","../../../../../../app/api/tools/[id]/launch/route.ts","../../../../../../app/api/tools/route.ts","../../../../../../app/api/version/route.ts","../../../../../../app/build-feature-node-data.ts","../../../../../../app/build-graph-nodes.ts","../../../../../../app/derive-state.ts","../../../../../../app/global-error.tsx","../../../../../../app/globals.css","../../../../../../app/layout.tsx","../../../../../../app/not-found.tsx","../../../../../../app/settings/page.tsx","../../../../../../app/skills/page.tsx","../../../../../../app/tools/page.tsx","../../../../../../app/version/page.tsx","../../../../../../components.json","../../../../../../components/common/action-button/action-button.stories.tsx","../../../../../../components/common/action-button/action-button.tsx","../../../../../../components/common/action-button/index.ts","../../../../../../components/common/add-repository-button/add-repository-button.tsx","../../../../../../components/common/add-repository-button/index.ts","../../../../../../components/common/add-repository-button/pick-folder.ts","../../../../../../components/common/attachment-card/attachment-card.stories.tsx","../../../../../../components/common/attachment-card/attachment-card.tsx","../../../../../../components/common/attachment-card/index.ts","../../../../../../components/common/attachment-chip/attachment-chip.stories.tsx","../../../../../../components/common/attachment-chip/attachment-chip.tsx","../../../../../../components/common/attachment-chip/index.ts","../../../../../../components/common/base-drawer/base-drawer.stories.tsx","../../../../../../components/common/base-drawer/base-drawer.tsx","../../../../../../components/common/base-drawer/index.ts","../../../../../../components/common/ci-status-badge/ci-status-badge.stories.tsx","../../../../../../components/common/ci-status-badge/ci-status-badge.tsx","../../../../../../components/common/ci-status-badge/index.ts","../../../../../../components/common/control-center-drawer/adopt-branch-drawer.stories.tsx","../../../../../../components/common/control-center-drawer/adopt-branch-drawer.tsx","../../../../../../components/common/control-center-drawer/adopt-drawer-client.tsx","../../../../../../components/common/control-center-drawer/create-drawer-client.tsx","../../../../../../components/common/control-center-drawer/drawer-view.ts","../../../../../../components/common/control-center-drawer/feature-drawer-client.tsx","../../../../../../components/common/control-center-drawer/index.ts","../../../../../../components/common/control-center-drawer/repository-drawer-client.tsx","../../../../../../components/common/control-center-drawer/use-artifact-fetch.ts","../../../../../../components/common/control-center-drawer/use-drawer-sync.ts","../../../../../../components/common/delete-feature-dialog/delete-feature-dialog-config.ts","../../../../../../components/common/delete-feature-dialog/delete-feature-dialog.stories.tsx","../../../../../../components/common/delete-feature-dialog/delete-feature-dialog.tsx","../../../../../../components/common/delete-feature-dialog/index.ts","../../../../../../components/common/deployment-status-badge/deployment-status-badge.stories.tsx","../../../../../../components/common/deployment-status-badge/deployment-status-badge.tsx","../../../../../../components/common/deployment-status-badge/index.ts","../../../../../../components/common/drawer-action-bar/drawer-action-bar-config.ts","../../../../../../components/common/drawer-action-bar/drawer-action-bar.stories.tsx","../../../../../../components/common/drawer-action-bar/drawer-action-bar.tsx","../../../../../../components/common/drawer-action-bar/index.ts","../../../../../../components/common/drawer-revision-input/drawer-revision-input-config.ts","../../../../../../components/common/drawer-revision-input/drawer-revision-input.tsx","../../../../../../components/common/drawer-revision-input/index.ts","../../../../../../components/common/editor-type-icons.tsx","../../../../../../components/common/elapsed-time/elapsed-time.stories.tsx","../../../../../../components/common/elapsed-time/elapsed-time.tsx","../../../../../../components/common/elapsed-time/index.ts","../../../../../../components/common/empty-state/empty-state.stories.tsx","../../../../../../components/common/empty-state/empty-state.tsx","../../../../../../components/common/empty-state/index.ts","../../../../../../components/common/feature-create-drawer/feature-create-drawer.stories.tsx","../../../../../../components/common/feature-create-drawer/feature-create-drawer.tsx","../../../../../../components/common/feature-create-drawer/index.ts","../../../../../../components/common/feature-create-drawer/pick-files.ts","../../../../../../components/common/feature-create-drawer/repository-combobox.stories.tsx","../../../../../../components/common/feature-drawer-tabs/activity-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/activity-tab.tsx","../../../../../../components/common/feature-drawer-tabs/branch-sync-status.stories.tsx","../../../../../../components/common/feature-drawer-tabs/branch-sync-status.tsx","../../../../../../components/common/feature-drawer-tabs/event-log-viewer.stories.tsx","../../../../../../components/common/feature-drawer-tabs/event-log-viewer.tsx","../../../../../../components/common/feature-drawer-tabs/feature-drawer-tabs.stories.tsx","../../../../../../components/common/feature-drawer-tabs/feature-drawer-tabs.tsx","../../../../../../components/common/feature-drawer-tabs/index.ts","../../../../../../components/common/feature-drawer-tabs/log-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/log-tab.tsx","../../../../../../components/common/feature-drawer-tabs/overview-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/overview-tab.tsx","../../../../../../components/common/feature-drawer-tabs/plan-tab.stories.tsx","../../../../../../components/common/feature-drawer-tabs/plan-tab.tsx","../../../../../../components/common/feature-drawer-tabs/use-tab-data-fetch.ts","../../../../../../components/common/feature-drawer/index.ts","../../../../../../components/common/feature-drawer/use-feature-actions.ts","../../../../../../components/common/feature-list-item/feature-list-item.stories.tsx","../../../../../../components/common/feature-list-item/feature-list-item.tsx","../../../../../../components/common/feature-list-item/index.ts","../../../../../../components/common/feature-node/agent-type-icons.stories.tsx","../../../../../../components/common/feature-node/agent-type-icons.tsx","../../../../../../components/common/feature-node/derive-feature-state.ts","../../../../../../components/common/feature-node/feature-node-state-config.ts","../../../../../../components/common/feature-node/feature-node.stories.tsx","../../../../../../components/common/feature-node/feature-node.tsx","../../../../../../components/common/feature-node/feature-sessions-dropdown.stories.tsx","../../../../../../components/common/feature-node/feature-sessions-dropdown.tsx","../../../../../../components/common/feature-node/index.ts","../../../../../../components/common/feature-status-badges/feature-status-badges.stories.tsx","../../../../../../components/common/feature-status-badges/feature-status-badges.tsx","../../../../../../components/common/feature-status-badges/index.ts","../../../../../../components/common/feature-status-config.ts","../../../../../../components/common/feature-status-group/feature-status-group.stories.tsx","../../../../../../components/common/feature-status-group/feature-status-group.tsx","../../../../../../components/common/feature-status-group/index.ts","../../../../../../components/common/floating-action-button/floating-action-button.stories.tsx","../../../../../../components/common/floating-action-button/floating-action-button.tsx","../../../../../../components/common/floating-action-button/index.ts","../../../../../../components/common/github-import-dialog/github-import-dialog.stories.tsx","../../../../../../components/common/github-import-dialog/github-import-dialog.tsx","../../../../../../components/common/github-import-dialog/github-repo-browser.stories.tsx","../../../../../../components/common/github-import-dialog/github-repo-browser.tsx","../../../../../../components/common/github-import-dialog/github-url-input.stories.tsx","../../../../../../components/common/github-import-dialog/github-url-input.tsx","../../../../../../components/common/github-import-dialog/index.ts","../../../../../../components/common/index.ts","../../../../../../components/common/inline-attachments/index.ts","../../../../../../components/common/inline-attachments/inline-attachments.stories.tsx","../../../../../../components/common/inline-attachments/inline-attachments.tsx","../../../../../../components/common/loading-skeleton/index.ts","../../../../../../components/common/loading-skeleton/loading-skeleton.stories.tsx","../../../../../../components/common/loading-skeleton/loading-skeleton.tsx","../../../../../../components/common/merge-review/diff-view.stories.tsx","../../../../../../components/common/merge-review/diff-view.tsx","../../../../../../components/common/merge-review/index.ts","../../../../../../components/common/merge-review/merge-review-config.ts","../../../../../../components/common/merge-review/merge-review.stories.tsx","../../../../../../components/common/merge-review/merge-review.tsx","../../../../../../components/common/open-action-menu/config.ts","../../../../../../components/common/open-action-menu/index.ts","../../../../../../components/common/open-action-menu/open-action-menu.stories.tsx","../../../../../../components/common/open-action-menu/open-action-menu.tsx","../../../../../../components/common/page-header/index.ts","../../../../../../components/common/page-header/page-header.stories.tsx","../../../../../../components/common/page-header/page-header.tsx","../../../../../../components/common/prd-questionnaire/index.ts","../../../../../../components/common/prd-questionnaire/prd-questionnaire-config.ts","../../../../../../components/common/prd-questionnaire/prd-questionnaire.stories.tsx","../../../../../../components/common/prd-questionnaire/prd-questionnaire.tsx","../../../../../../components/common/product-decisions-summary/index.ts","../../../../../../components/common/product-decisions-summary/product-decisions-summary-config.ts","../../../../../../components/common/product-decisions-summary/product-decisions-summary.stories.tsx","../../../../../../components/common/product-decisions-summary/product-decisions-summary.tsx","../../../../../../components/common/react-file-manager-dialog/index.ts","../../../../../../components/common/react-file-manager-dialog/react-file-manager-dialog-config.ts","../../../../../../components/common/react-file-manager-dialog/react-file-manager-dialog.stories.tsx","../../../../../../components/common/react-file-manager-dialog/react-file-manager-dialog.tsx","../../../../../../components/common/reject-feedback-dialog/index.ts","../../../../../../components/common/reject-feedback-dialog/reject-feedback-dialog-config.ts","../../../../../../components/common/reject-feedback-dialog/reject-feedback-dialog.stories.tsx","../../../../../../components/common/reject-feedback-dialog/reject-feedback-dialog.tsx","../../../../../../components/common/repository-node/index.ts","../../../../../../components/common/repository-node/repository-drawer.stories.tsx","../../../../../../components/common/repository-node/repository-drawer.tsx","../../../../../../components/common/repository-node/repository-node-config.ts","../../../../../../components/common/repository-node/repository-node.stories.tsx","../../../../../../components/common/repository-node/repository-node.tsx","../../../../../../components/common/repository-node/use-repository-actions.ts","../../../../../../components/common/server-log-viewer/index.ts","../../../../../../components/common/server-log-viewer/server-log-viewer.stories.tsx","../../../../../../components/common/server-log-viewer/server-log-viewer.tsx","../../../../../../components/common/shep-logo/index.ts","../../../../../../components/common/shep-logo/shep-logo.stories.tsx","../../../../../../components/common/shep-logo/shep-logo.tsx","../../../../../../components/common/sidebar-collapse-toggle/index.ts","../../../../../../components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.stories.tsx","../../../../../../components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.tsx","../../../../../../components/common/sidebar-nav-item/index.ts","../../../../../../components/common/sidebar-nav-item/sidebar-nav-item.stories.tsx","../../../../../../components/common/sidebar-nav-item/sidebar-nav-item.tsx","../../../../../../components/common/sidebar-section-header/index.ts","../../../../../../components/common/sidebar-section-header/sidebar-section-header.stories.tsx","../../../../../../components/common/sidebar-section-header/sidebar-section-header.tsx","../../../../../../components/common/sound-toggle/index.ts","../../../../../../components/common/sound-toggle/sound-toggle.stories.tsx","../../../../../../components/common/sound-toggle/sound-toggle.tsx","../../../../../../components/common/task-progress-view/index.ts","../../../../../../components/common/task-progress-view/task-progress-view.stories.tsx","../../../../../../components/common/task-progress-view/task-progress-view.tsx","../../../../../../components/common/tech-decisions-review/index.ts","../../../../../../components/common/tech-decisions-review/tech-decisions-review-config.ts","../../../../../../components/common/tech-decisions-review/tech-decisions-review.stories.tsx","../../../../../../components/common/tech-decisions-review/tech-decisions-review.tsx","../../../../../../components/common/theme-toggle/index.ts","../../../../../../components/common/theme-toggle/theme-toggle.stories.tsx","../../../../../../components/common/theme-toggle/theme-toggle.tsx","../../../../../../components/common/version-badge/index.ts","../../../../../../components/common/version-badge/version-badge.stories.tsx","../../../../../../components/common/version-badge/version-badge.tsx","../../../../../../components/features/control-center/control-center-empty-state.stories.tsx","../../../../../../components/features/control-center/control-center-empty-state.tsx","../../../../../../components/features/control-center/control-center-inner.tsx","../../../../../../components/features/control-center/control-center.stories.tsx","../../../../../../components/features/control-center/control-center.tsx","../../../../../../components/features/control-center/index.ts","../../../../../../components/features/control-center/use-control-center-state.ts","../../../../../../components/features/control-center/welcome-agent-setup.stories.tsx","../../../../../../components/features/control-center/welcome-agent-setup.tsx","../../../../../../components/features/features-canvas/dependency-edge.stories.tsx","../../../../../../components/features/features-canvas/dependency-edge.tsx","../../../../../../components/features/features-canvas/features-canvas.stories.tsx","../../../../../../components/features/features-canvas/features-canvas.tsx","../../../../../../components/features/features-canvas/index.ts","../../../../../../components/features/index.ts","../../../../../../components/features/settings/AgentModelPicker/AgentModelPicker.stories.tsx","../../../../../../components/features/settings/AgentModelPicker/index.tsx","../../../../../../components/features/settings/ModelPicker/ModelPicker.stories.tsx","../../../../../../components/features/settings/ModelPicker/index.tsx","../../../../../../components/features/settings/agent-settings-section.stories.tsx","../../../../../../components/features/settings/agent-settings-section.tsx","../../../../../../components/features/settings/database-settings-section.stories.tsx","../../../../../../components/features/settings/database-settings-section.tsx","../../../../../../components/features/settings/environment-settings-section.stories.tsx","../../../../../../components/features/settings/environment-settings-section.tsx","../../../../../../components/features/settings/feature-flags-settings-section.stories.tsx","../../../../../../components/features/settings/feature-flags-settings-section.tsx","../../../../../../components/features/settings/notification-settings-section.stories.tsx","../../../../../../components/features/settings/notification-settings-section.tsx","../../../../../../components/features/settings/settings-page-client.stories.tsx","../../../../../../components/features/settings/settings-page-client.tsx","../../../../../../components/features/settings/timeout-slider.stories.tsx","../../../../../../components/features/settings/timeout-slider.tsx","../../../../../../components/features/settings/workflow-settings-section.stories.tsx","../../../../../../components/features/settings/workflow-settings-section.tsx","../../../../../../components/features/skills/category-filter.stories.tsx","../../../../../../components/features/skills/category-filter.tsx","../../../../../../components/features/skills/index.ts","../../../../../../components/features/skills/skill-card.stories.tsx","../../../../../../components/features/skills/skill-card.tsx","../../../../../../components/features/skills/skill-detail-drawer.stories.tsx","../../../../../../components/features/skills/skill-detail-drawer.tsx","../../../../../../components/features/skills/skill-list.stories.tsx","../../../../../../components/features/skills/skill-list.tsx","../../../../../../components/features/skills/skills-page-client.stories.tsx","../../../../../../components/features/skills/skills-page-client.tsx","../../../../../../components/features/tools/index.ts","../../../../../../components/features/tools/tool-card.stories.tsx","../../../../../../components/features/tools/tool-card.tsx","../../../../../../components/features/tools/tool-detail-drawer.stories.tsx","../../../../../../components/features/tools/tool-detail-drawer.tsx","../../../../../../components/features/tools/tools-page-client.stories.tsx","../../../../../../components/features/tools/tools-page-client.tsx","../../../../../../components/features/version/version-page-client.tsx","../../../../../../components/layouts/app-shell/app-shell.tsx","../../../../../../components/layouts/app-shell/index.ts","../../../../../../components/layouts/app-sidebar/app-sidebar.stories.tsx","../../../../../../components/layouts/app-sidebar/app-sidebar.tsx","../../../../../../components/layouts/app-sidebar/index.ts","../../../../../../components/layouts/dashboard-layout/dashboard-layout.stories.tsx","../../../../../../components/layouts/dashboard-layout/dashboard-layout.tsx","../../../../../../components/layouts/dashboard-layout/index.ts","../../../../../../components/layouts/header/header.stories.tsx","../../../../../../components/layouts/header/header.tsx","../../../../../../components/layouts/header/index.ts","../../../../../../components/layouts/index.ts","../../../../../../components/layouts/sidebar/index.ts","../../../../../../components/layouts/sidebar/sidebar.stories.tsx","../../../../../../components/layouts/sidebar/sidebar.tsx","../../../../../../components/ui/accordion.stories.tsx","../../../../../../components/ui/accordion.tsx","../../../../../../components/ui/alert-dialog.stories.tsx","../../../../../../components/ui/alert-dialog.tsx","../../../../../../components/ui/alert.stories.tsx","../../../../../../components/ui/alert.tsx","../../../../../../components/ui/badge.stories.tsx","../../../../../../components/ui/badge.tsx","../../../../../../components/ui/button.stories.tsx","../../../../../../components/ui/button.tsx","../../../../../../components/ui/card.stories.tsx","../../../../../../components/ui/card.tsx","../../../../../../components/ui/checkbox-group-item.stories.tsx","../../../../../../components/ui/checkbox-group-item.tsx","../../../../../../components/ui/checkbox-group.stories.tsx","../../../../../../components/ui/checkbox-group.tsx","../../../../../../components/ui/checkbox.stories.tsx","../../../../../../components/ui/checkbox.tsx","../../../../../../components/ui/comet-spinner.stories.tsx","../../../../../../components/ui/comet-spinner.tsx","../../../../../../components/ui/command.tsx","../../../../../../components/ui/dialog.stories.tsx","../../../../../../components/ui/dialog.tsx","../../../../../../components/ui/drawer.stories.tsx","../../../../../../components/ui/drawer.tsx","../../../../../../components/ui/dropdown-menu.tsx","../../../../../../components/ui/input.stories.tsx","../../../../../../components/ui/input.tsx","../../../../../../components/ui/label.stories.tsx","../../../../../../components/ui/label.tsx","../../../../../../components/ui/popover.stories.tsx","../../../../../../components/ui/popover.tsx","../../../../../../components/ui/scroll-area.tsx","../../../../../../components/ui/select.stories.tsx","../../../../../../components/ui/select.tsx","../../../../../../components/ui/separator.tsx","../../../../../../components/ui/sheet.tsx","../../../../../../components/ui/sidebar.tsx","../../../../../../components/ui/skeleton.tsx","../../../../../../components/ui/slider.stories.tsx","../../../../../../components/ui/slider.tsx","../../../../../../components/ui/sonner.stories.tsx","../../../../../../components/ui/sonner.tsx","../../../../../../components/ui/spinner.stories.tsx","../../../../../../components/ui/spinner.tsx","../../../../../../components/ui/switch.tsx","../../../../../../components/ui/tabs.stories.tsx","../../../../../../components/ui/tabs.tsx","../../../../../../components/ui/textarea.stories.tsx","../../../../../../components/ui/textarea.tsx","../../../../../../components/ui/tooltip.tsx","../../../../../../dev-server.ts","../../../../../../docs/Colors.mdx","../../../../../../docs/GettingStarted.mdx","../../../../../../docs/Typography.mdx","../../../../../../eslint.config.mjs","../../../../../../hooks/agent-events-provider.tsx","../../../../../../hooks/drawer-close-guard.tsx","../../../../../../hooks/feature-flags-context.tsx","../../../../../../hooks/sessions-provider.tsx","../../../../../../hooks/sidebar-features-context.tsx","../../../../../../hooks/use-agent-events.ts","../../../../../../hooks/use-branch-sync-status.ts","../../../../../../hooks/use-cli-upgrade.ts","../../../../../../hooks/use-deferred-mount.ts","../../../../../../hooks/use-deploy-action.ts","../../../../../../hooks/use-deployment-logs.ts","../../../../../../hooks/use-feature-logs.ts","../../../../../../hooks/use-graph-state.ts","../../../../../../hooks/use-mobile.ts","../../../../../../hooks/use-notifications.stories.tsx","../../../../../../hooks/use-notifications.ts","../../../../../../hooks/use-npm-version-check.ts","../../../../../../hooks/use-selected-feature-id.ts","../../../../../../hooks/use-selected-repository.ts","../../../../../../hooks/use-sound-action.stories.tsx","../../../../../../hooks/use-sound-action.ts","../../../../../../hooks/use-sound-enabled.ts","../../../../../../hooks/use-sound.stories.tsx","../../../../../../hooks/use-sound.ts","../../../../../../hooks/use-tool-install-stream.ts","../../../../../../hooks/use-version.ts","../../../../../../hooks/use-viewport-persistence.ts","../../../../../../hooks/useTheme.ts","../../../../../../instrumentation.ts","../../../../../../lib/compare-versions.ts","../../../../../../lib/derive-graph.ts","../../../../../../lib/feature-flags.ts","../../../../../../lib/format-duration.ts","../../../../../../lib/is-same-shep-instance.ts","../../../../../../lib/layout-with-dagre.ts","../../../../../../lib/logger.ts","../../../../../../lib/model-metadata.ts","../../../../../../lib/parse-log-line.ts","../../../../../../lib/server-container.ts","../../../../../../lib/session-scanner.ts","../../../../../../lib/skills.ts","../../../../../../lib/utils.ts","../../../../../../lib/version.ts","../../../../../../next.config.ts","../../../../../../node_modules/next","../../../../../../package.json","../../../../../../postcss.config.mjs","../../../../../../public/agent-events-sw.js","../../../../../../public/favicon-dark.svg","../../../../../../public/favicon-light.svg","../../../../../../public/icons/agents/aider.png","../../../../../../public/icons/agents/claude-ai-icon.svg","../../../../../../public/icons/agents/claude-code.jpeg","../../../../../../public/icons/agents/continue.jpeg","../../../../../../public/icons/agents/cursor.jpeg","../../../../../../public/icons/agents/gemini-cli.jpeg","../../../../../../public/icons/editors/vscode.svg","../../../../../../public/icons/editors/windsurf.svg","../../../../../../public/icons/editors/zed.svg","../../../../../../public/sounds/button.wav","../../../../../../public/sounds/caution.wav","../../../../../../public/sounds/celebration.wav","../../../../../../public/sounds/disabled.wav","../../../../../../public/sounds/notification.wav","../../../../../../public/sounds/progress_loop.wav","../../../../../../public/sounds/ringtone_loop.wav","../../../../../../public/sounds/select.wav","../../../../../../public/sounds/swipe.wav","../../../../../../public/sounds/swipe_01.wav","../../../../../../public/sounds/swipe_02.wav","../../../../../../public/sounds/swipe_03.wav","../../../../../../public/sounds/swipe_04.wav","../../../../../../public/sounds/swipe_05.wav","../../../../../../public/sounds/tap_01.wav","../../../../../../public/sounds/tap_02.wav","../../../../../../public/sounds/tap_03.wav","../../../../../../public/sounds/tap_04.wav","../../../../../../public/sounds/tap_05.wav","../../../../../../public/sounds/toggle_off.wav","../../../../../../public/sounds/toggle_on.wav","../../../../../../public/sounds/transition_down.wav","../../../../../../public/sounds/transition_up.wav","../../../../../../public/sounds/type_01.wav","../../../../../../public/sounds/type_02.wav","../../../../../../public/sounds/type_03.wav","../../../../../../public/sounds/type_04.wav","../../../../../../public/sounds/type_05.wav","../../../../../../tsconfig.json","../../../../../../types/theme.ts","../../../../chunks/403f9_next_567de315._.js","../../../../chunks/744ca_web__next-internal_server_app_api_attachments_preview_route_actions_0f48c3e9.js","../../../../chunks/[root-of-the-server]__26565141._.js","../../../../chunks/[root-of-the-server]__57104a4c._.js","../../../../chunks/[turbopack]_runtime.js","./route_client-reference-manifest.js"]}
|