@shepai/cli 1.76.0 → 1.77.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +1 -0
  2. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  3. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +4 -1
  4. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
  5. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +5 -2
  7. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +2 -0
  8. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts.map +1 -1
  9. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +220 -0
  10. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -0
  11. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.js +66 -0
  12. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +1 -0
  13. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  14. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -0
  15. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +1 -0
  16. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  17. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +10 -1
  18. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.d.ts.map +1 -1
  19. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.js +1 -0
  20. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts +21 -0
  21. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts.map +1 -0
  22. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.js +60 -0
  23. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts +25 -0
  24. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts.map +1 -0
  25. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.js +176 -0
  26. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -1
  27. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +8 -3
  29. package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
  30. package/dist/src/presentation/cli/commands/feat/new.command.js +2 -0
  31. package/dist/src/presentation/web/app/actions/create-feature.d.ts +2 -0
  32. package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
  33. package/dist/src/presentation/web/app/actions/create-feature.js +3 -1
  34. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +2 -0
  35. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  36. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +5 -1
  37. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts +18 -0
  38. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts.map +1 -1
  39. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.js +49 -0
  40. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  41. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +28 -4
  42. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +4 -1
  43. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  44. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +6 -3
  45. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +1 -1
  46. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts +1 -0
  47. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts.map +1 -1
  48. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +71 -2
  49. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +2 -0
  50. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  51. package/dist/src/presentation/web/hooks/use-graph-state.js +4 -0
  52. package/dist/src/presentation/web/hooks/use-viewport-persistence.d.ts +1 -0
  53. package/dist/src/presentation/web/hooks/use-viewport-persistence.d.ts.map +1 -1
  54. package/dist/tsconfig.build.tsbuildinfo +1 -1
  55. package/package.json +1 -1
  56. package/web/.next/BUILD_ID +1 -1
  57. package/web/.next/build-manifest.json +2 -2
  58. package/web/.next/cache/.previewinfo +1 -1
  59. package/web/.next/cache/.rscinfo +1 -1
  60. package/web/.next/cache/.tsbuildinfo +1 -1
  61. package/web/.next/cache/config.json +3 -3
  62. package/web/.next/fallback-build-manifest.json +2 -2
  63. package/web/.next/prerender-manifest.json +3 -3
  64. package/web/.next/required-server-files.js +1 -1
  65. package/web/.next/required-server-files.json +1 -1
  66. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
  67. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  68. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  69. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
  70. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  71. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  72. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  73. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  74. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  75. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
  76. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  77. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  78. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
  79. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  80. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  81. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
  82. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  83. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  84. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  85. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  86. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  87. package/web/.next/server/app/_global-error.html +2 -2
  88. package/web/.next/server/app/_global-error.rsc +1 -1
  89. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  90. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  91. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  92. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  93. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  94. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  95. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  96. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  97. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  98. package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  99. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  100. package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  101. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  102. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  103. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  104. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
  105. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js.map +1 -1
  106. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
  107. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js.map +1 -1
  108. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +2 -2
  109. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js.map +1 -1
  110. package/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +1 -1
  111. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +2 -2
  112. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js.map +1 -1
  113. package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +1 -1
  114. package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js.map +1 -1
  115. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
  116. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js.map +1 -1
  117. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +2 -2
  118. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
  119. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js.map +1 -1
  120. package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +1 -1
  121. package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js.map +1 -1
  122. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  123. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  124. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
  125. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js.map +1 -1
  126. package/web/.next/server/chunks/ssr/{_a3854150._.js → _2a862f34._.js} +2 -2
  127. package/web/.next/server/chunks/ssr/{_a3854150._.js.map → _2a862f34._.js.map} +1 -1
  128. package/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
  129. package/web/.next/server/chunks/ssr/_61351ed3._.js.map +1 -1
  130. package/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
  131. package/web/.next/server/chunks/ssr/_8400c8bb._.js.map +1 -1
  132. package/web/.next/server/chunks/ssr/_9f940437._.js +1 -1
  133. package/web/.next/server/chunks/ssr/_9f940437._.js.map +1 -1
  134. package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
  135. package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js.map +1 -1
  136. package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
  137. package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js.map +1 -1
  138. package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
  139. package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js.map +1 -1
  140. package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
  141. package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js.map +1 -1
  142. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
  143. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js.map +1 -1
  144. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  145. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  146. package/web/.next/server/pages/500.html +2 -2
  147. package/web/.next/server/server-reference-manifest.js +1 -1
  148. package/web/.next/server/server-reference-manifest.json +22 -22
  149. package/web/.next/standalone/src/presentation/web/.next/BUILD_ID +1 -1
  150. package/web/.next/standalone/src/presentation/web/.next/build-manifest.json +2 -2
  151. package/web/.next/standalone/src/presentation/web/.next/prerender-manifest.json +3 -3
  152. package/web/.next/standalone/src/presentation/web/.next/required-server-files.json +1 -1
  153. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
  154. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  155. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  156. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
  157. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  158. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  159. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  160. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  161. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  162. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
  163. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  164. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  165. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
  166. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  167. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  168. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
  169. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  170. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  171. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  172. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  173. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  174. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.html +2 -2
  175. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.rsc +1 -1
  176. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  177. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  178. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  179. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  180. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  181. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  182. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  183. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  184. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  185. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  186. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  187. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  188. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  189. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  190. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
  191. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
  192. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +2 -2
  193. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +1 -1
  194. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +2 -2
  195. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +1 -1
  196. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
  197. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +2 -2
  198. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
  199. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +1 -1
  200. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  201. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
  202. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{_a3854150._.js → _2a862f34._.js} +2 -2
  203. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
  204. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
  205. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9f940437._.js +1 -1
  206. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
  207. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
  208. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
  209. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
  210. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
  211. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  212. package/web/.next/standalone/src/presentation/web/.next/server/pages/500.html +2 -2
  213. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.js +1 -1
  214. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json +22 -22
  215. package/web/.next/standalone/src/presentation/web/app/actions/create-feature.ts +6 -1
  216. package/web/.next/standalone/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.tsx +57 -0
  217. package/web/.next/standalone/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.tsx +21 -0
  218. package/web/.next/standalone/src/presentation/web/components/features/control-center/control-center-inner.tsx +32 -4
  219. package/web/.next/standalone/src/presentation/web/components/features/control-center/use-control-center-state.ts +9 -4
  220. package/web/.next/standalone/src/presentation/web/components/features/features-canvas/features-canvas.stories.tsx +81 -2
  221. package/web/.next/standalone/src/presentation/web/components/features/features-canvas/features-canvas.tsx +1 -1
  222. package/web/.next/standalone/src/presentation/web/hooks/use-graph-state.ts +7 -0
  223. package/web/.next/standalone/src/presentation/web/hooks/use-viewport-persistence.ts +2 -0
  224. package/web/.next/standalone/src/presentation/web/server.js +1 -1
  225. package/web/.next/static/chunks/{293231ccc0b144fa.js → 5968047406179daf.js} +1 -1
  226. package/web/.next/static/chunks/{255140c45a023ff4.js → 6a45ff0fe9faf80e.js} +1 -1
  227. package/web/.next/static/chunks/{9a765e022ef2b815.js → 7ea9e0b8236d5f48.js} +1 -1
  228. package/web/.next/static/chunks/{6931ae67c2484ddf.js → a3a1392c422107d6.js} +1 -1
  229. package/web/.next/static/chunks/{3bc2a07d02372939.js → c558d0da468011b6.js} +1 -1
  230. package/web/.next/static/chunks/{c1dbeb3307dab443.js → ce67a6fcc19c61dc.js} +3 -3
  231. package/web/.next/static/chunks/d5b885838e1da36a.js +1 -0
  232. package/web/.next/static/chunks/{d7786685ec8efe10.js → e8637d52f6093074.js} +1 -1
  233. package/web/.next/static/chunks/{716547ef8d13139d.js → efaf0f0eb50be73f.js} +1 -1
  234. package/web/.next/trace +1 -1
  235. package/web/.next/trace-build +1 -1
  236. package/web/.next/static/chunks/11a6c88ffcbac93f.js +0 -1
  237. /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → TkQduVaaKmOXMiLB6CK5h}/_buildManifest.js +0 -0
  238. /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → TkQduVaaKmOXMiLB6CK5h}/_clientMiddlewareManifest.json +0 -0
  239. /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → TkQduVaaKmOXMiLB6CK5h}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "005101386c33eed0a9d09d016407557035e8aafa22": {
3
+ "00f63013e24c0f4c85fa9c48c05c7b980f6845385f": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/create/page": {
6
6
  "moduleId": 90842,
@@ -15,7 +15,7 @@
15
15
  "exportedName": "pickFolder",
16
16
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
17
17
  },
18
- "40a4ce9322d73f2b091e181ebe60681f82dfadd43c": {
18
+ "4046268f4eac84e42295d9219aa55dd5d3e72069f2": {
19
19
  "workers": {
20
20
  "app/(dashboard)/@drawer/create/page": {
21
21
  "moduleId": 90842,
@@ -30,7 +30,7 @@
30
30
  "exportedName": "getDeploymentLogs",
31
31
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
32
32
  },
33
- "40bbeb71465d6853434ce31d6751fb95e3d487764f": {
33
+ "4087971ffdb024aa1e9bf4537dbad06f73e2c22abd": {
34
34
  "workers": {
35
35
  "app/(dashboard)/@drawer/create/page": {
36
36
  "moduleId": 90842,
@@ -45,7 +45,7 @@
45
45
  "exportedName": "deployFeature",
46
46
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
47
47
  },
48
- "40da710191b67bfe20861e8fed5da370eceea977d3": {
48
+ "4096c592e6d14515a7e28ec7e1da86832cb5a53804": {
49
49
  "workers": {
50
50
  "app/(dashboard)/@drawer/create/page": {
51
51
  "moduleId": 90842,
@@ -60,7 +60,7 @@
60
60
  "exportedName": "deployRepository",
61
61
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
62
62
  },
63
- "40d68d2f8e56c8f60ea925c11a1b81eec1623e69f2": {
63
+ "40601095152c777c8fdb17d32f64a18fe976fe160f": {
64
64
  "workers": {
65
65
  "app/(dashboard)/@drawer/create/page": {
66
66
  "moduleId": 90842,
@@ -75,7 +75,7 @@
75
75
  "exportedName": "stopDeployment",
76
76
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
77
77
  },
78
- "40a4f6dc7f35746115c0acd5ea7f9b77d82a2a484b": {
78
+ "402d14b33ea35698a8f77f17bd515021ce203acb26": {
79
79
  "workers": {
80
80
  "app/(dashboard)/@drawer/create/page": {
81
81
  "moduleId": 90842,
@@ -90,7 +90,7 @@
90
90
  "exportedName": "getDeploymentStatus",
91
91
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
92
92
  },
93
- "4064f52b4324e2f1eaac40633a3136dc1b94e94aa0": {
93
+ "409f950233296bbbca099ed65ceef15572f2effccd": {
94
94
  "workers": {
95
95
  "app/(dashboard)/@drawer/create/page": {
96
96
  "moduleId": 90842,
@@ -105,7 +105,7 @@
105
105
  "exportedName": "openIde",
106
106
  "filename": "src/presentation/web/app/actions/open-ide.ts"
107
107
  },
108
- "409078876c80cdc5d4f30504dd7202cee2713ab8ff": {
108
+ "40d9e03b87a087fa4d68f74c66ff20bb5e2c6abde7": {
109
109
  "workers": {
110
110
  "app/(dashboard)/@drawer/create/page": {
111
111
  "moduleId": 90842,
@@ -120,7 +120,7 @@
120
120
  "exportedName": "openShell",
121
121
  "filename": "src/presentation/web/app/actions/open-shell.ts"
122
122
  },
123
- "40c1954e0785d24f8aa4b9989324834bdca00b5b4c": {
123
+ "405f99cce98bbad391e66ce4a90d25bc2cb1f85629": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/create/page": {
126
126
  "moduleId": 90842,
@@ -135,7 +135,7 @@
135
135
  "exportedName": "openFolder",
136
136
  "filename": "src/presentation/web/app/actions/open-folder.ts"
137
137
  },
138
- "4068f20b6be5f5925c54041eb39b7ff451dcf12846": {
138
+ "40b6b95c3ef80fc012315b114831bea94edd7fe294": {
139
139
  "workers": {
140
140
  "app/(dashboard)/@drawer/create/page": {
141
141
  "moduleId": 90842,
@@ -150,7 +150,7 @@
150
150
  "exportedName": "deleteFeature",
151
151
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
152
152
  },
153
- "40d7bb17bc532b90cfdbbb277139facbad0b7fdc4d": {
153
+ "40fe1635f49f46f6b27346a370736b9df5834cfadf": {
154
154
  "workers": {
155
155
  "app/(dashboard)/@drawer/create/page": {
156
156
  "moduleId": 90842,
@@ -165,7 +165,7 @@
165
165
  "exportedName": "addRepository",
166
166
  "filename": "src/presentation/web/app/actions/add-repository.ts"
167
167
  },
168
- "4054a4f64c100f11ac89f48fd0093575ce11784a51": {
168
+ "404f564e8af7ba4e0c6c2db574d035f2a1243f541c": {
169
169
  "workers": {
170
170
  "app/(dashboard)/@drawer/create/page": {
171
171
  "moduleId": 90842,
@@ -180,7 +180,7 @@
180
180
  "exportedName": "deleteRepository",
181
181
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
182
182
  },
183
- "40526e48c32bc183d1637154f656b8d5f820962f37": {
183
+ "40a62752cb92ff4bef5c7ccc8ddaeaad0c9f2e8d14": {
184
184
  "workers": {
185
185
  "app/(dashboard)/@drawer/create/page": {
186
186
  "moduleId": 90842,
@@ -195,7 +195,7 @@
195
195
  "exportedName": "getFeatureMetadata",
196
196
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
197
197
  },
198
- "00a2d7da094e900afb48965a6f13437c70bc60d6ba": {
198
+ "00cf9ccf3d8c7d228a8a10b515e7727370e0107dbe": {
199
199
  "workers": {
200
200
  "app/(dashboard)/@drawer/create/page": {
201
201
  "moduleId": 90842,
@@ -210,7 +210,7 @@
210
210
  "exportedName": "fetchGraphData",
211
211
  "filename": "src/presentation/web/app/actions/get-graph-data.ts"
212
212
  },
213
- "00086a5a5c320a43391e06f5c7b2853448e27256e0": {
213
+ "00f5928d1326269c0949ff76c217c4efd679f5f6fc": {
214
214
  "workers": {
215
215
  "app/(dashboard)/@drawer/create/page": {
216
216
  "moduleId": 90842,
@@ -225,7 +225,7 @@
225
225
  "exportedName": "getWorkflowDefaults",
226
226
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
227
227
  },
228
- "40738daa5fb3ae0213ca8fb8a70bdf5bf4b6e3b129": {
228
+ "40b375f34d6baa6de4a490c2a3b7590410ddfecb74": {
229
229
  "workers": {
230
230
  "app/(dashboard)/@drawer/create/page": {
231
231
  "moduleId": 90842,
@@ -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/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/create/page.tsx","../../../../../../app/(dashboard)/@drawer/default.tsx","../../../../../../app/(dashboard)/@drawer/feature/[featureId]/page.tsx","../../../../../../app/(dashboard)/@drawer/repository/[repositoryId]/page.tsx","../../../../../../app/(dashboard)/create/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/approve-feature.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-deployment-logs.ts","../../../../../../app/actions/get-deployment-status.ts","../../../../../../app/actions/get-feature-artifact.ts","../../../../../../app/actions/get-feature-metadata.ts","../../../../../../app/actions/get-graph-data.ts","../../../../../../app/actions/get-merge-review-data.ts","../../../../../../app/actions/get-research-artifact.ts","../../../../../../app/actions/get-workflow-defaults.ts","../../../../../../app/actions/open-folder.ts","../../../../../../app/actions/open-ide.ts","../../../../../../app/actions/open-shell.ts","../../../../../../app/actions/pick-folder.ts","../../../../../../app/actions/reject-feature.ts","../../../../../../app/actions/stop-deployment.ts","../../../../../../app/api/agent-events/health/route.ts","../../../../../../app/api/agent-events/route.ts","../../../../../../app/api/deployment-logs/route.ts","../../../../../../app/api/dialog/pick-files/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/build-feature-node-data.ts","../../../../../../app/build-graph-nodes.ts","../../../../../../app/derive-state.ts","../../../../../../app/globals.css","../../../../../../app/layout.tsx","../../../../../../app/not-found.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/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/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/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/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-drawer/feature-drawer.stories.tsx","../../../../../../components/common/feature-drawer/feature-drawer.tsx","../../../../../../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/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/index.ts","../../../../../../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/index.ts","../../../../../../components/common/merge-review/merge-review-config.ts","../../../../../../components/common/merge-review/merge-review-drawer.tsx","../../../../../../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-drawer.tsx","../../../../../../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/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/review-drawer-shell/index.ts","../../../../../../components/common/review-drawer-shell/review-drawer-shell-config.ts","../../../../../../components/common/review-drawer-shell/review-drawer-shell.stories.tsx","../../../../../../components/common/review-drawer-shell/review-drawer-shell.tsx","../../../../../../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/tech-decisions-review/index.ts","../../../../../../components/common/tech-decisions-review/tech-decisions-drawer.tsx","../../../../../../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/tech-review-tabs/index.ts","../../../../../../components/common/tech-review-tabs/tech-review-tabs-config.ts","../../../../../../components/common/tech-review-tabs/tech-review-tabs.stories.tsx","../../../../../../components/common/tech-review-tabs/tech-review-tabs.tsx","../../../../../../components/common/theme-toggle/index.ts","../../../../../../components/common/theme-toggle/theme-toggle.stories.tsx","../../../../../../components/common/theme-toggle/theme-toggle.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/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/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/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/sonner.stories.tsx","../../../../../../components/ui/sonner.tsx","../../../../../../components/ui/spinner.stories.tsx","../../../../../../components/ui/spinner.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/sidebar-features-context.tsx","../../../../../../hooks/use-agent-events.ts","../../../../../../hooks/use-deferred-mount.ts","../../../../../../hooks/use-deploy-action.ts","../../../../../../hooks/use-deployment-logs.ts","../../../../../../hooks/use-graph-state.ts","../../../../../../hooks/use-mobile.ts","../../../../../../hooks/use-notifications.stories.tsx","../../../../../../hooks/use-notifications.ts","../../../../../../hooks/use-selected-feature-id.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-viewport-persistence.ts","../../../../../../hooks/useTheme.ts","../../../../../../instrumentation.ts","../../../../../../lib/derive-graph.ts","../../../../../../lib/feature-flags.ts","../../../../../../lib/layout-with-dagre.ts","../../../../../../lib/logger.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/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/ssr/403f9_next_d6c8d28d._.js","../../../../chunks/ssr/403f9_next_dist_1f3516d7._.js","../../../../chunks/ssr/403f9_next_dist_a53cb908._.js","../../../../chunks/ssr/403f9_next_dist_client_components_44deecdf._.js","../../../../chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js","../../../../chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2906ebd.js","../../../../chunks/ssr/403f9_next_dist_d738ab66._.js","../../../../chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js","../../../../chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js","../../../../chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js","../../../../chunks/ssr/[root-of-the-server]__3534949f._.js","../../../../chunks/ssr/[root-of-the-server]__3b4af5ae._.js","../../../../chunks/ssr/[root-of-the-server]__55f60c9d._.js","../../../../chunks/ssr/[root-of-the-server]__6258349c._.js","../../../../chunks/ssr/[root-of-the-server]__6cbc1149._.js","../../../../chunks/ssr/[root-of-the-server]__c3694f82._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_07c2a32a._.js","../../../../chunks/ssr/_0e9d6bf7._.js","../../../../chunks/ssr/_3197d5cb._.js","../../../../chunks/ssr/_5ee4f5a7._.js","../../../../chunks/ssr/_6e08ce21._.js","../../../../chunks/ssr/_9f940437._.js","../../../../chunks/ssr/_a3854150._.js","../../../../chunks/ssr/src_presentation_web_163038ba._.js","../../../../chunks/ssr/src_presentation_web_67178b88._.js","../../../../chunks/ssr/src_presentation_web_app_(dashboard)_create_page_tsx_c60c859a._.js","../../../../chunks/ssr/src_presentation_web_app_(dashboard)_get-graph-data_ts_b018483e._.js","../../../../chunks/ssr/src_presentation_web_app_not-found_tsx_64b86c46._.js","../../../../chunks/ssr/src_presentation_web_components_e599bb8c._.js","../../../../chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","./page/react-loadable-manifest.json","./page_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/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/create/page.tsx","../../../../../../app/(dashboard)/@drawer/default.tsx","../../../../../../app/(dashboard)/@drawer/feature/[featureId]/page.tsx","../../../../../../app/(dashboard)/@drawer/repository/[repositoryId]/page.tsx","../../../../../../app/(dashboard)/create/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/approve-feature.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-deployment-logs.ts","../../../../../../app/actions/get-deployment-status.ts","../../../../../../app/actions/get-feature-artifact.ts","../../../../../../app/actions/get-feature-metadata.ts","../../../../../../app/actions/get-graph-data.ts","../../../../../../app/actions/get-merge-review-data.ts","../../../../../../app/actions/get-research-artifact.ts","../../../../../../app/actions/get-workflow-defaults.ts","../../../../../../app/actions/open-folder.ts","../../../../../../app/actions/open-ide.ts","../../../../../../app/actions/open-shell.ts","../../../../../../app/actions/pick-folder.ts","../../../../../../app/actions/reject-feature.ts","../../../../../../app/actions/stop-deployment.ts","../../../../../../app/api/agent-events/health/route.ts","../../../../../../app/api/agent-events/route.ts","../../../../../../app/api/deployment-logs/route.ts","../../../../../../app/api/dialog/pick-files/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/build-feature-node-data.ts","../../../../../../app/build-graph-nodes.ts","../../../../../../app/derive-state.ts","../../../../../../app/globals.css","../../../../../../app/layout.tsx","../../../../../../app/not-found.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/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/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/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/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-drawer/feature-drawer.stories.tsx","../../../../../../components/common/feature-drawer/feature-drawer.tsx","../../../../../../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/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/index.ts","../../../../../../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/index.ts","../../../../../../components/common/merge-review/merge-review-config.ts","../../../../../../components/common/merge-review/merge-review-drawer.tsx","../../../../../../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-drawer.tsx","../../../../../../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/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/review-drawer-shell/index.ts","../../../../../../components/common/review-drawer-shell/review-drawer-shell-config.ts","../../../../../../components/common/review-drawer-shell/review-drawer-shell.stories.tsx","../../../../../../components/common/review-drawer-shell/review-drawer-shell.tsx","../../../../../../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/tech-decisions-review/index.ts","../../../../../../components/common/tech-decisions-review/tech-decisions-drawer.tsx","../../../../../../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/tech-review-tabs/index.ts","../../../../../../components/common/tech-review-tabs/tech-review-tabs-config.ts","../../../../../../components/common/tech-review-tabs/tech-review-tabs.stories.tsx","../../../../../../components/common/tech-review-tabs/tech-review-tabs.tsx","../../../../../../components/common/theme-toggle/index.ts","../../../../../../components/common/theme-toggle/theme-toggle.stories.tsx","../../../../../../components/common/theme-toggle/theme-toggle.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/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/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/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/sonner.stories.tsx","../../../../../../components/ui/sonner.tsx","../../../../../../components/ui/spinner.stories.tsx","../../../../../../components/ui/spinner.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/sidebar-features-context.tsx","../../../../../../hooks/use-agent-events.ts","../../../../../../hooks/use-deferred-mount.ts","../../../../../../hooks/use-deploy-action.ts","../../../../../../hooks/use-deployment-logs.ts","../../../../../../hooks/use-graph-state.ts","../../../../../../hooks/use-mobile.ts","../../../../../../hooks/use-notifications.stories.tsx","../../../../../../hooks/use-notifications.ts","../../../../../../hooks/use-selected-feature-id.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-viewport-persistence.ts","../../../../../../hooks/useTheme.ts","../../../../../../instrumentation.ts","../../../../../../lib/derive-graph.ts","../../../../../../lib/feature-flags.ts","../../../../../../lib/layout-with-dagre.ts","../../../../../../lib/logger.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/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/ssr/403f9_next_d6c8d28d._.js","../../../../chunks/ssr/403f9_next_dist_1f3516d7._.js","../../../../chunks/ssr/403f9_next_dist_a53cb908._.js","../../../../chunks/ssr/403f9_next_dist_client_components_44deecdf._.js","../../../../chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js","../../../../chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2906ebd.js","../../../../chunks/ssr/403f9_next_dist_d738ab66._.js","../../../../chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js","../../../../chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js","../../../../chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js","../../../../chunks/ssr/[root-of-the-server]__3534949f._.js","../../../../chunks/ssr/[root-of-the-server]__3b4af5ae._.js","../../../../chunks/ssr/[root-of-the-server]__55f60c9d._.js","../../../../chunks/ssr/[root-of-the-server]__6258349c._.js","../../../../chunks/ssr/[root-of-the-server]__6cbc1149._.js","../../../../chunks/ssr/[root-of-the-server]__c3694f82._.js","../../../../chunks/ssr/[turbopack]_runtime.js","../../../../chunks/ssr/_07c2a32a._.js","../../../../chunks/ssr/_0e9d6bf7._.js","../../../../chunks/ssr/_2a862f34._.js","../../../../chunks/ssr/_3197d5cb._.js","../../../../chunks/ssr/_5ee4f5a7._.js","../../../../chunks/ssr/_6e08ce21._.js","../../../../chunks/ssr/_9f940437._.js","../../../../chunks/ssr/src_presentation_web_163038ba._.js","../../../../chunks/ssr/src_presentation_web_67178b88._.js","../../../../chunks/ssr/src_presentation_web_app_(dashboard)_create_page_tsx_c60c859a._.js","../../../../chunks/ssr/src_presentation_web_app_(dashboard)_get-graph-data_ts_b018483e._.js","../../../../chunks/ssr/src_presentation_web_app_not-found_tsx_64b86c46._.js","../../../../chunks/ssr/src_presentation_web_components_e599bb8c._.js","../../../../chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]}
@@ -1,2 +1,2 @@
1
1
  globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
2
- globalThis.__RSC_MANIFEST["/(dashboard)/@drawer/create/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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/client/components/builtin/global-error.js <module evaluation>":{"id":42726,"name":"*","chunks":["/_next/static/chunks/ab02eec995295bef.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/client/components/builtin/global-error.js":{"id":42726,"name":"*","chunks":["/_next/static/chunks/ab02eec995295bef.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/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx <module evaluation>":{"id":48246,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/6931ae67c2484ddf.js","/_next/static/chunks/9a765e022ef2b815.js","/_next/static/chunks/c1dbeb3307dab443.js","/_next/static/chunks/716547ef8d13139d.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx":{"id":48246,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/6931ae67c2484ddf.js","/_next/static/chunks/9a765e022ef2b815.js","/_next/static/chunks/c1dbeb3307dab443.js","/_next/static/chunks/716547ef8d13139d.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts <module evaluation>":{"id":17840,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/6931ae67c2484ddf.js","/_next/static/chunks/9a765e022ef2b815.js","/_next/static/chunks/c1dbeb3307dab443.js","/_next/static/chunks/716547ef8d13139d.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts":{"id":17840,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/6931ae67c2484ddf.js","/_next/static/chunks/9a765e022ef2b815.js","/_next/static/chunks/c1dbeb3307dab443.js","/_next/static/chunks/716547ef8d13139d.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/create-drawer-client.tsx <module evaluation>":{"id":15203,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/6931ae67c2484ddf.js","/_next/static/chunks/9a765e022ef2b815.js","/_next/static/chunks/c1dbeb3307dab443.js","/_next/static/chunks/716547ef8d13139d.js","/_next/static/chunks/11a6c88ffcbac93f.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/create-drawer-client.tsx":{"id":15203,"name":"*","chunks":["/_next/static/chunks/d7786685ec8efe10.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/6931ae67c2484ddf.js","/_next/static/chunks/9a765e022ef2b815.js","/_next/static/chunks/c1dbeb3307dab443.js","/_next/static/chunks/716547ef8d13139d.js","/_next/static/chunks/11a6c88ffcbac93f.js"],"async":false}},"ssrModuleMapping":{"40799":{"*":{"id":69218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"73006":{"*":{"id":76926,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"67804":{"*":{"id":78378,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"50122":{"*":{"id":18508,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"19292":{"*":{"id":55259,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"30088":{"*":{"id":33028,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"66658":{"*":{"id":42422,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"42726":{"*":{"id":43167,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"87292":{"*":{"id":66560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js"],"async":false}},"48246":{"*":{"id":59949,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_9f940437._.js","server/chunks/ssr/_0e9d6bf7._.js","server/chunks/ssr/_a3854150._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js"],"async":false}},"17840":{"*":{"id":16533,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_9f940437._.js","server/chunks/ssr/_0e9d6bf7._.js","server/chunks/ssr/_a3854150._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js"],"async":false}},"15203":{"*":{"id":93995,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_9f940437._.js","server/chunks/ssr/_0e9d6bf7._.js","server/chunks/ssr/_a3854150._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.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}},"42726":{"*":{"id":43174,"name":"*","chunks":[],"async":false}},"87292":{"*":{"id":34168,"name":"*","chunks":[],"async":false}},"25251":{"*":{"id":11900,"name":"*","chunks":[],"async":false}},"48246":{"*":{"id":87979,"name":"*","chunks":[],"async":false}},"17840":{"*":{"id":81035,"name":"*","chunks":[],"async":false}},"15203":{"*":{"id":63771,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[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/client/components/builtin/global-error":[],"[project]/src/presentation/web/app/layout":[{"path":"static/chunks/e12fff3b57456bc2.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/layout":[{"path":"static/chunks/e12fff3b57456bc2.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/@drawer/create/page":[{"path":"static/chunks/e12fff3b57456bc2.css","inlined":false}]},"entryJSFiles":{"[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/client/components/builtin/global-error":["static/chunks/ab02eec995295bef.js","static/chunks/fe70e73feb07bcfd.js"],"[project]/src/presentation/web/app/layout":["static/chunks/d7786685ec8efe10.js","static/chunks/3f205fd6adbfd20a.js","static/chunks/1f5c93a8b939416d.js","static/chunks/00adfce42dbbd5ef.js","static/chunks/b6c507fc42d9a277.js"],"[project]/src/presentation/web/app/(dashboard)/layout":["static/chunks/d7786685ec8efe10.js","static/chunks/3f205fd6adbfd20a.js","static/chunks/1f5c93a8b939416d.js","static/chunks/00adfce42dbbd5ef.js","static/chunks/b6c507fc42d9a277.js","static/chunks/6931ae67c2484ddf.js","static/chunks/9a765e022ef2b815.js","static/chunks/c1dbeb3307dab443.js","static/chunks/716547ef8d13139d.js"],"[project]/src/presentation/web/app/(dashboard)/@drawer/create/page":["static/chunks/d7786685ec8efe10.js","static/chunks/3f205fd6adbfd20a.js","static/chunks/1f5c93a8b939416d.js","static/chunks/00adfce42dbbd5ef.js","static/chunks/b6c507fc42d9a277.js","static/chunks/6931ae67c2484ddf.js","static/chunks/9a765e022ef2b815.js","static/chunks/c1dbeb3307dab443.js","static/chunks/716547ef8d13139d.js","static/chunks/11a6c88ffcbac93f.js"]}}
2
+ globalThis.__RSC_MANIFEST["/(dashboard)/@drawer/create/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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/ab02eec995295bef.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/client/components/builtin/global-error.js <module evaluation>":{"id":42726,"name":"*","chunks":["/_next/static/chunks/ab02eec995295bef.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/client/components/builtin/global-error.js":{"id":42726,"name":"*","chunks":["/_next/static/chunks/ab02eec995295bef.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/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/layouts/app-shell/app-shell.tsx":{"id":87292,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx <module evaluation>":{"id":25251,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/ui/sonner.tsx":{"id":25251,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx <module evaluation>":{"id":48246,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/a3a1392c422107d6.js","/_next/static/chunks/7ea9e0b8236d5f48.js","/_next/static/chunks/ce67a6fcc19c61dc.js","/_next/static/chunks/efaf0f0eb50be73f.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/control-center.tsx":{"id":48246,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/a3a1392c422107d6.js","/_next/static/chunks/7ea9e0b8236d5f48.js","/_next/static/chunks/ce67a6fcc19c61dc.js","/_next/static/chunks/efaf0f0eb50be73f.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts <module evaluation>":{"id":17840,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/a3a1392c422107d6.js","/_next/static/chunks/7ea9e0b8236d5f48.js","/_next/static/chunks/ce67a6fcc19c61dc.js","/_next/static/chunks/efaf0f0eb50be73f.js"],"async":false},"[project]/src/presentation/web/components/features/control-center/use-control-center-state.ts":{"id":17840,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/a3a1392c422107d6.js","/_next/static/chunks/7ea9e0b8236d5f48.js","/_next/static/chunks/ce67a6fcc19c61dc.js","/_next/static/chunks/efaf0f0eb50be73f.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/create-drawer-client.tsx <module evaluation>":{"id":15203,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/a3a1392c422107d6.js","/_next/static/chunks/7ea9e0b8236d5f48.js","/_next/static/chunks/ce67a6fcc19c61dc.js","/_next/static/chunks/efaf0f0eb50be73f.js","/_next/static/chunks/d5b885838e1da36a.js"],"async":false},"[project]/src/presentation/web/components/common/control-center-drawer/create-drawer-client.tsx":{"id":15203,"name":"*","chunks":["/_next/static/chunks/e8637d52f6093074.js","/_next/static/chunks/3f205fd6adbfd20a.js","/_next/static/chunks/1f5c93a8b939416d.js","/_next/static/chunks/00adfce42dbbd5ef.js","/_next/static/chunks/b6c507fc42d9a277.js","/_next/static/chunks/a3a1392c422107d6.js","/_next/static/chunks/7ea9e0b8236d5f48.js","/_next/static/chunks/ce67a6fcc19c61dc.js","/_next/static/chunks/efaf0f0eb50be73f.js","/_next/static/chunks/d5b885838e1da36a.js"],"async":false}},"ssrModuleMapping":{"40799":{"*":{"id":69218,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"73006":{"*":{"id":76926,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"67804":{"*":{"id":78378,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"50122":{"*":{"id":18508,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"19292":{"*":{"id":55259,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"30088":{"*":{"id":33028,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"66658":{"*":{"id":42422,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"42726":{"*":{"id":43167,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__3534949f._.js","server/chunks/ssr/403f9_next_dist_esm_ceb2fa1e._.js"],"async":false}},"87292":{"*":{"id":66560,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js"],"async":false}},"25251":{"*":{"id":58313,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js"],"async":false}},"48246":{"*":{"id":59949,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_9f940437._.js","server/chunks/ssr/_0e9d6bf7._.js","server/chunks/ssr/_2a862f34._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js"],"async":false}},"17840":{"*":{"id":16533,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_9f940437._.js","server/chunks/ssr/_0e9d6bf7._.js","server/chunks/ssr/_2a862f34._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js"],"async":false}},"15203":{"*":{"id":93995,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__6258349c._.js","server/chunks/ssr/_07c2a32a._.js","server/chunks/ssr/403f9_next_d6c8d28d._.js","server/chunks/ssr/403f9_next_dist_a53cb908._.js","server/chunks/ssr/_3197d5cb._.js","server/chunks/ssr/_5ee4f5a7._.js","server/chunks/ssr/src_presentation_web_components_e599bb8c._.js","server/chunks/ssr/_9f940437._.js","server/chunks/ssr/_0e9d6bf7._.js","server/chunks/ssr/_2a862f34._.js","server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js","server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.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}},"42726":{"*":{"id":43174,"name":"*","chunks":[],"async":false}},"87292":{"*":{"id":34168,"name":"*","chunks":[],"async":false}},"25251":{"*":{"id":11900,"name":"*","chunks":[],"async":false}},"48246":{"*":{"id":87979,"name":"*","chunks":[],"async":false}},"17840":{"*":{"id":81035,"name":"*","chunks":[],"async":false}},"15203":{"*":{"id":63771,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[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/client/components/builtin/global-error":[],"[project]/src/presentation/web/app/layout":[{"path":"static/chunks/e12fff3b57456bc2.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/layout":[{"path":"static/chunks/e12fff3b57456bc2.css","inlined":false}],"[project]/src/presentation/web/app/(dashboard)/@drawer/create/page":[{"path":"static/chunks/e12fff3b57456bc2.css","inlined":false}]},"entryJSFiles":{"[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/client/components/builtin/global-error":["static/chunks/ab02eec995295bef.js","static/chunks/fe70e73feb07bcfd.js"],"[project]/src/presentation/web/app/layout":["static/chunks/e8637d52f6093074.js","static/chunks/3f205fd6adbfd20a.js","static/chunks/1f5c93a8b939416d.js","static/chunks/00adfce42dbbd5ef.js","static/chunks/b6c507fc42d9a277.js"],"[project]/src/presentation/web/app/(dashboard)/layout":["static/chunks/e8637d52f6093074.js","static/chunks/3f205fd6adbfd20a.js","static/chunks/1f5c93a8b939416d.js","static/chunks/00adfce42dbbd5ef.js","static/chunks/b6c507fc42d9a277.js","static/chunks/a3a1392c422107d6.js","static/chunks/7ea9e0b8236d5f48.js","static/chunks/ce67a6fcc19c61dc.js","static/chunks/efaf0f0eb50be73f.js"],"[project]/src/presentation/web/app/(dashboard)/@drawer/create/page":["static/chunks/e8637d52f6093074.js","static/chunks/3f205fd6adbfd20a.js","static/chunks/1f5c93a8b939416d.js","static/chunks/00adfce42dbbd5ef.js","static/chunks/b6c507fc42d9a277.js","static/chunks/a3a1392c422107d6.js","static/chunks/7ea9e0b8236d5f48.js","static/chunks/ce67a6fcc19c61dc.js","static/chunks/efaf0f0eb50be73f.js","static/chunks/d5b885838e1da36a.js"]}}