jumbo-cli 3.0.3 → 3.2.1

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 (602) hide show
  1. package/README.md +1 -1
  2. package/assets/skills/codify-jumbo-goal/SKILL.md +0 -6
  3. package/assets/skills/define-jumbo-goals/SKILL.md +24 -25
  4. package/assets/skills/jumbo-add-component/SKILL.md +9 -0
  5. package/assets/skills/jumbo-add-decision/SKILL.md +9 -0
  6. package/assets/skills/jumbo-add-dependency/SKILL.md +9 -0
  7. package/assets/skills/jumbo-add-guideline/SKILL.md +9 -0
  8. package/assets/skills/jumbo-add-invariant/SKILL.md +9 -0
  9. package/assets/skills/jumbo-design-goal/SKILL.md +1 -1
  10. package/assets/skills/refine-jumbo-goals/SKILL.md +4 -4
  11. package/dist/application/agents/AgentInvocation.d.ts +10 -0
  12. package/dist/application/agents/AgentInvocation.d.ts.map +1 -0
  13. package/dist/application/agents/AgentInvocation.js +2 -0
  14. package/dist/application/agents/AgentInvocation.js.map +1 -0
  15. package/dist/application/agents/IAgentGateway.d.ts +5 -0
  16. package/dist/application/agents/IAgentGateway.d.ts.map +1 -0
  17. package/dist/application/agents/IAgentGateway.js +2 -0
  18. package/dist/application/agents/IAgentGateway.js.map +1 -0
  19. package/dist/application/context/decisions/get/IDecisionViewReader.d.ts +7 -0
  20. package/dist/application/context/decisions/get/IDecisionViewReader.d.ts.map +1 -1
  21. package/dist/application/context/decisions/search/DecisionSearchCriteria.d.ts +17 -0
  22. package/dist/application/context/decisions/search/DecisionSearchCriteria.d.ts.map +1 -0
  23. package/dist/application/context/decisions/search/DecisionSearchCriteria.js +12 -0
  24. package/dist/application/context/decisions/search/DecisionSearchCriteria.js.map +1 -0
  25. package/dist/application/context/decisions/search/ISearchDecisionsGateway.d.ts +10 -0
  26. package/dist/application/context/decisions/search/ISearchDecisionsGateway.d.ts.map +1 -0
  27. package/dist/application/context/decisions/search/ISearchDecisionsGateway.js +6 -0
  28. package/dist/application/context/decisions/search/ISearchDecisionsGateway.js.map +1 -0
  29. package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.d.ts +14 -0
  30. package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.d.ts.map +1 -0
  31. package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.js +14 -0
  32. package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.js.map +1 -0
  33. package/dist/application/context/decisions/search/SearchDecisionsController.d.ts +13 -0
  34. package/dist/application/context/decisions/search/SearchDecisionsController.d.ts.map +1 -0
  35. package/dist/application/context/decisions/search/SearchDecisionsController.js +13 -0
  36. package/dist/application/context/decisions/search/SearchDecisionsController.js.map +1 -0
  37. package/dist/application/context/decisions/search/SearchDecisionsRequest.d.ts +8 -0
  38. package/dist/application/context/decisions/search/SearchDecisionsRequest.d.ts.map +1 -0
  39. package/dist/application/context/decisions/search/SearchDecisionsRequest.js +5 -0
  40. package/dist/application/context/decisions/search/SearchDecisionsRequest.js.map +1 -0
  41. package/dist/application/context/decisions/search/SearchDecisionsResponse.d.ts +8 -0
  42. package/dist/application/context/decisions/search/SearchDecisionsResponse.d.ts.map +1 -0
  43. package/dist/application/context/decisions/search/SearchDecisionsResponse.js +5 -0
  44. package/dist/application/context/decisions/search/SearchDecisionsResponse.js.map +1 -0
  45. package/dist/application/context/dependencies/get/IDependencyViewReader.d.ts +7 -0
  46. package/dist/application/context/dependencies/get/IDependencyViewReader.d.ts.map +1 -1
  47. package/dist/application/context/dependencies/search/DependencySearchCriteria.d.ts +22 -0
  48. package/dist/application/context/dependencies/search/DependencySearchCriteria.d.ts.map +1 -0
  49. package/dist/application/context/dependencies/search/DependencySearchCriteria.js +12 -0
  50. package/dist/application/context/dependencies/search/DependencySearchCriteria.js.map +1 -0
  51. package/dist/application/context/dependencies/search/ISearchDependenciesGateway.d.ts +10 -0
  52. package/dist/application/context/dependencies/search/ISearchDependenciesGateway.d.ts.map +1 -0
  53. package/dist/application/context/dependencies/search/ISearchDependenciesGateway.js +6 -0
  54. package/dist/application/context/dependencies/search/ISearchDependenciesGateway.js.map +1 -0
  55. package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.d.ts +14 -0
  56. package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.d.ts.map +1 -0
  57. package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.js +14 -0
  58. package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.js.map +1 -0
  59. package/dist/application/context/dependencies/search/SearchDependenciesController.d.ts +13 -0
  60. package/dist/application/context/dependencies/search/SearchDependenciesController.d.ts.map +1 -0
  61. package/dist/application/context/dependencies/search/SearchDependenciesController.js +13 -0
  62. package/dist/application/context/dependencies/search/SearchDependenciesController.js.map +1 -0
  63. package/dist/application/context/dependencies/search/SearchDependenciesRequest.d.ts +8 -0
  64. package/dist/application/context/dependencies/search/SearchDependenciesRequest.d.ts.map +1 -0
  65. package/dist/application/context/dependencies/search/SearchDependenciesRequest.js +5 -0
  66. package/dist/application/context/dependencies/search/SearchDependenciesRequest.js.map +1 -0
  67. package/dist/application/context/dependencies/search/SearchDependenciesResponse.d.ts +8 -0
  68. package/dist/application/context/dependencies/search/SearchDependenciesResponse.d.ts.map +1 -0
  69. package/dist/application/context/dependencies/search/SearchDependenciesResponse.js +5 -0
  70. package/dist/application/context/dependencies/search/SearchDependenciesResponse.js.map +1 -0
  71. package/dist/application/context/goals/codify/CodifierProcessManager.d.ts +34 -0
  72. package/dist/application/context/goals/codify/CodifierProcessManager.d.ts.map +1 -0
  73. package/dist/application/context/goals/codify/CodifierProcessManager.js +171 -0
  74. package/dist/application/context/goals/codify/CodifierProcessManager.js.map +1 -0
  75. package/dist/application/context/goals/refine/RefinerProcessManager.d.ts +28 -0
  76. package/dist/application/context/goals/refine/RefinerProcessManager.d.ts.map +1 -0
  77. package/dist/application/context/goals/refine/RefinerProcessManager.js +147 -0
  78. package/dist/application/context/goals/refine/RefinerProcessManager.js.map +1 -0
  79. package/dist/application/context/goals/review/ReviewerProcessManager.d.ts +28 -0
  80. package/dist/application/context/goals/review/ReviewerProcessManager.d.ts.map +1 -0
  81. package/dist/application/context/goals/review/ReviewerProcessManager.js +161 -0
  82. package/dist/application/context/goals/review/ReviewerProcessManager.js.map +1 -0
  83. package/dist/application/context/guidelines/get/IGuidelineViewReader.d.ts +7 -0
  84. package/dist/application/context/guidelines/get/IGuidelineViewReader.d.ts.map +1 -1
  85. package/dist/application/context/guidelines/search/GuidelineSearchCriteria.d.ts +17 -0
  86. package/dist/application/context/guidelines/search/GuidelineSearchCriteria.d.ts.map +1 -0
  87. package/dist/application/context/guidelines/search/GuidelineSearchCriteria.js +12 -0
  88. package/dist/application/context/guidelines/search/GuidelineSearchCriteria.js.map +1 -0
  89. package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.d.ts +10 -0
  90. package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.d.ts.map +1 -0
  91. package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.js +6 -0
  92. package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.js.map +1 -0
  93. package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.d.ts +14 -0
  94. package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.d.ts.map +1 -0
  95. package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.js +14 -0
  96. package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.js.map +1 -0
  97. package/dist/application/context/guidelines/search/SearchGuidelinesController.d.ts +13 -0
  98. package/dist/application/context/guidelines/search/SearchGuidelinesController.d.ts.map +1 -0
  99. package/dist/application/context/guidelines/search/SearchGuidelinesController.js +13 -0
  100. package/dist/application/context/guidelines/search/SearchGuidelinesController.js.map +1 -0
  101. package/dist/application/context/guidelines/search/SearchGuidelinesRequest.d.ts +8 -0
  102. package/dist/application/context/guidelines/search/SearchGuidelinesRequest.d.ts.map +1 -0
  103. package/dist/application/context/guidelines/search/SearchGuidelinesRequest.js +5 -0
  104. package/dist/application/context/guidelines/search/SearchGuidelinesRequest.js.map +1 -0
  105. package/dist/application/context/guidelines/search/SearchGuidelinesResponse.d.ts +8 -0
  106. package/dist/application/context/guidelines/search/SearchGuidelinesResponse.d.ts.map +1 -0
  107. package/dist/application/context/guidelines/search/SearchGuidelinesResponse.js +5 -0
  108. package/dist/application/context/guidelines/search/SearchGuidelinesResponse.js.map +1 -0
  109. package/dist/application/context/invariants/get/IInvariantViewReader.d.ts +7 -0
  110. package/dist/application/context/invariants/get/IInvariantViewReader.d.ts.map +1 -1
  111. package/dist/application/context/invariants/search/ISearchInvariantsGateway.d.ts +10 -0
  112. package/dist/application/context/invariants/search/ISearchInvariantsGateway.d.ts.map +1 -0
  113. package/dist/application/context/invariants/search/ISearchInvariantsGateway.js +6 -0
  114. package/dist/application/context/invariants/search/ISearchInvariantsGateway.js.map +1 -0
  115. package/dist/application/context/invariants/search/InvariantSearchCriteria.d.ts +14 -0
  116. package/dist/application/context/invariants/search/InvariantSearchCriteria.d.ts.map +1 -0
  117. package/dist/application/context/invariants/search/InvariantSearchCriteria.js +11 -0
  118. package/dist/application/context/invariants/search/InvariantSearchCriteria.js.map +1 -0
  119. package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.d.ts +14 -0
  120. package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.d.ts.map +1 -0
  121. package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.js +14 -0
  122. package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.js.map +1 -0
  123. package/dist/application/context/invariants/search/SearchInvariantsController.d.ts +13 -0
  124. package/dist/application/context/invariants/search/SearchInvariantsController.d.ts.map +1 -0
  125. package/dist/application/context/invariants/search/SearchInvariantsController.js +13 -0
  126. package/dist/application/context/invariants/search/SearchInvariantsController.js.map +1 -0
  127. package/dist/application/context/invariants/search/SearchInvariantsRequest.d.ts +8 -0
  128. package/dist/application/context/invariants/search/SearchInvariantsRequest.d.ts.map +1 -0
  129. package/dist/application/context/invariants/search/SearchInvariantsRequest.js +5 -0
  130. package/dist/application/context/invariants/search/SearchInvariantsRequest.js.map +1 -0
  131. package/dist/application/context/invariants/search/SearchInvariantsResponse.d.ts +8 -0
  132. package/dist/application/context/invariants/search/SearchInvariantsResponse.d.ts.map +1 -0
  133. package/dist/application/context/invariants/search/SearchInvariantsResponse.js +5 -0
  134. package/dist/application/context/invariants/search/SearchInvariantsResponse.js.map +1 -0
  135. package/dist/application/context/project/ProjectKnowledgeInventoryView.d.ts +12 -0
  136. package/dist/application/context/project/ProjectKnowledgeInventoryView.d.ts.map +1 -0
  137. package/dist/application/context/project/ProjectKnowledgeInventoryView.js +2 -0
  138. package/dist/application/context/project/ProjectKnowledgeInventoryView.js.map +1 -0
  139. package/dist/application/context/project/ProjectLifecycleState.d.ts +7 -0
  140. package/dist/application/context/project/ProjectLifecycleState.d.ts.map +1 -0
  141. package/dist/application/context/project/ProjectLifecycleState.js +2 -0
  142. package/dist/application/context/project/ProjectLifecycleState.js.map +1 -0
  143. package/dist/application/context/project/ProjectSummaryView.d.ts +2 -0
  144. package/dist/application/context/project/ProjectSummaryView.d.ts.map +1 -1
  145. package/dist/application/context/project/ProjectView.d.ts +2 -0
  146. package/dist/application/context/project/ProjectView.d.ts.map +1 -1
  147. package/dist/application/context/project/query/GetProjectSummaryQueryHandler.d.ts.map +1 -1
  148. package/dist/application/context/project/query/GetProjectSummaryQueryHandler.js +3 -0
  149. package/dist/application/context/project/query/GetProjectSummaryQueryHandler.js.map +1 -1
  150. package/dist/application/context/project/query/IProjectContextReader.d.ts +10 -0
  151. package/dist/application/context/project/query/IProjectContextReader.d.ts.map +1 -1
  152. package/dist/application/context/project/query/ProjectLifecycleClassifier.d.ts +9 -0
  153. package/dist/application/context/project/query/ProjectLifecycleClassifier.d.ts.map +1 -0
  154. package/dist/application/context/project/query/ProjectLifecycleClassifier.js +18 -0
  155. package/dist/application/context/project/query/ProjectLifecycleClassifier.js.map +1 -0
  156. package/dist/application/context/project/query/north-star/ProjectNorthStarView.d.ts +20 -0
  157. package/dist/application/context/project/query/north-star/ProjectNorthStarView.d.ts.map +1 -0
  158. package/dist/application/context/project/query/north-star/ProjectNorthStarView.js +2 -0
  159. package/dist/application/context/project/query/north-star/ProjectNorthStarView.js.map +1 -0
  160. package/dist/application/context/project/show/IShowProjectGateway.d.ts +6 -0
  161. package/dist/application/context/project/show/IShowProjectGateway.d.ts.map +1 -0
  162. package/dist/application/context/project/show/IShowProjectGateway.js +2 -0
  163. package/dist/application/context/project/show/IShowProjectGateway.js.map +1 -0
  164. package/dist/application/context/project/show/LocalShowProjectGateway.d.ts +16 -0
  165. package/dist/application/context/project/show/LocalShowProjectGateway.d.ts.map +1 -0
  166. package/dist/application/context/project/show/LocalShowProjectGateway.js +32 -0
  167. package/dist/application/context/project/show/LocalShowProjectGateway.js.map +1 -0
  168. package/dist/application/context/project/show/ShowProjectController.d.ts +9 -0
  169. package/dist/application/context/project/show/ShowProjectController.d.ts.map +1 -0
  170. package/dist/application/context/project/show/ShowProjectController.js +9 -0
  171. package/dist/application/context/project/show/ShowProjectController.js.map +1 -0
  172. package/dist/application/context/project/show/ShowProjectRequest.d.ts +4 -0
  173. package/dist/application/context/project/show/ShowProjectRequest.d.ts.map +1 -0
  174. package/dist/application/context/project/show/ShowProjectRequest.js +2 -0
  175. package/dist/application/context/project/show/ShowProjectRequest.js.map +1 -0
  176. package/dist/application/context/project/show/ShowProjectResponse.d.ts +7 -0
  177. package/dist/application/context/project/show/ShowProjectResponse.d.ts.map +1 -0
  178. package/dist/application/context/project/show/ShowProjectResponse.js +2 -0
  179. package/dist/application/context/project/show/ShowProjectResponse.js.map +1 -0
  180. package/dist/application/context/sessions/SessionInstructionSignal.d.ts +0 -1
  181. package/dist/application/context/sessions/SessionInstructionSignal.d.ts.map +1 -1
  182. package/dist/application/context/sessions/SessionInstructionSignal.js +0 -1
  183. package/dist/application/context/sessions/SessionInstructionSignal.js.map +1 -1
  184. package/dist/application/context/sessions/get/SessionContext.d.ts +3 -3
  185. package/dist/application/context/sessions/get/SessionContext.d.ts.map +1 -1
  186. package/dist/application/context/sessions/get/SessionContextQueryHandler.d.ts +2 -8
  187. package/dist/application/context/sessions/get/SessionContextQueryHandler.d.ts.map +1 -1
  188. package/dist/application/context/sessions/get/SessionContextQueryHandler.js +4 -13
  189. package/dist/application/context/sessions/get/SessionContextQueryHandler.js.map +1 -1
  190. package/dist/application/context/sessions/start/LocalStartSessionGateway.d.ts +2 -8
  191. package/dist/application/context/sessions/start/LocalStartSessionGateway.d.ts.map +1 -1
  192. package/dist/application/context/sessions/start/LocalStartSessionGateway.js +4 -47
  193. package/dist/application/context/sessions/start/LocalStartSessionGateway.js.map +1 -1
  194. package/dist/application/context/sessions/start/SessionStartResponse.d.ts +4 -4
  195. package/dist/application/context/sessions/start/SessionStartResponse.d.ts.map +1 -1
  196. package/dist/application/daemons/IProcessManager.d.ts +28 -0
  197. package/dist/application/daemons/IProcessManager.d.ts.map +1 -0
  198. package/dist/application/daemons/IProcessManager.js +2 -0
  199. package/dist/application/daemons/IProcessManager.js.map +1 -0
  200. package/dist/application/daemons/IShutdownSignal.d.ts +5 -0
  201. package/dist/application/daemons/IShutdownSignal.d.ts.map +1 -0
  202. package/dist/application/daemons/IShutdownSignal.js +2 -0
  203. package/dist/application/daemons/IShutdownSignal.js.map +1 -0
  204. package/dist/application/daemons/ITicker.d.ts +4 -0
  205. package/dist/application/daemons/ITicker.d.ts.map +1 -0
  206. package/dist/application/daemons/ITicker.js +2 -0
  207. package/dist/application/daemons/ITicker.js.map +1 -0
  208. package/dist/application/daemons/IWorkerDaemonProcessController.d.ts +30 -0
  209. package/dist/application/daemons/IWorkerDaemonProcessController.d.ts.map +1 -0
  210. package/dist/application/daemons/IWorkerDaemonProcessController.js +2 -0
  211. package/dist/application/daemons/IWorkerDaemonProcessController.js.map +1 -0
  212. package/dist/application/daemons/PollingLoop.d.ts +13 -0
  213. package/dist/application/daemons/PollingLoop.d.ts.map +1 -0
  214. package/dist/application/daemons/PollingLoop.js +15 -0
  215. package/dist/application/daemons/PollingLoop.js.map +1 -0
  216. package/dist/application/daemons/WorkerDaemonCatalog.d.ts +11 -0
  217. package/dist/application/daemons/WorkerDaemonCatalog.d.ts.map +1 -0
  218. package/dist/application/daemons/WorkerDaemonCatalog.js +12 -0
  219. package/dist/application/daemons/WorkerDaemonCatalog.js.map +1 -0
  220. package/dist/application/host/IApplicationContainer.d.ts +6 -0
  221. package/dist/application/host/IApplicationContainer.d.ts.map +1 -1
  222. package/dist/application/settings/Settings.d.ts +11 -0
  223. package/dist/application/settings/Settings.d.ts.map +1 -1
  224. package/dist/cli.js +68 -5
  225. package/dist/cli.js.map +1 -1
  226. package/dist/domain/project/JumboMdContent.js +1 -1
  227. package/dist/infrastructure/agents/AgentCliGateway.d.ts +15 -0
  228. package/dist/infrastructure/agents/AgentCliGateway.d.ts.map +1 -0
  229. package/dist/infrastructure/agents/AgentCliGateway.js +82 -0
  230. package/dist/infrastructure/agents/AgentCliGateway.js.map +1 -0
  231. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.d.ts +8 -0
  232. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.d.ts.map +1 -1
  233. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.js +45 -0
  234. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.js.map +1 -1
  235. package/dist/infrastructure/context/decisions/migrations/002-add-decision-search-indexes.sql +11 -0
  236. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.d.ts +3 -0
  237. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.d.ts.map +1 -1
  238. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.js +57 -0
  239. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.js.map +1 -1
  240. package/dist/infrastructure/context/dependencies/migrations/003-add-dependency-search-indexes.sql +12 -0
  241. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.d.ts +8 -0
  242. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.d.ts.map +1 -1
  243. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.js +31 -0
  244. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.js.map +1 -1
  245. package/dist/infrastructure/context/guidelines/migrations/003-add-guideline-search-indexes.sql +17 -0
  246. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.d.ts +8 -0
  247. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.d.ts.map +1 -1
  248. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.js +31 -0
  249. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.js.map +1 -1
  250. package/dist/infrastructure/context/invariants/migrations/003-add-invariant-search-indexes.sql +6 -0
  251. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.d.ts +5 -0
  252. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.d.ts.map +1 -1
  253. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.js +34 -2
  254. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.js.map +1 -1
  255. package/dist/infrastructure/daemons/IntervalTicker.d.ts +7 -0
  256. package/dist/infrastructure/daemons/IntervalTicker.d.ts.map +1 -0
  257. package/dist/infrastructure/daemons/IntervalTicker.js +11 -0
  258. package/dist/infrastructure/daemons/IntervalTicker.js.map +1 -0
  259. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.d.ts +12 -0
  260. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.d.ts.map +1 -0
  261. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.js +56 -0
  262. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.js.map +1 -0
  263. package/dist/infrastructure/daemons/ProcessSignalSource.d.ts +10 -0
  264. package/dist/infrastructure/daemons/ProcessSignalSource.d.ts.map +1 -0
  265. package/dist/infrastructure/daemons/ProcessSignalSource.js +24 -0
  266. package/dist/infrastructure/daemons/ProcessSignalSource.js.map +1 -0
  267. package/dist/infrastructure/host/HostBuilder.d.ts.map +1 -1
  268. package/dist/infrastructure/host/HostBuilder.js +17 -2
  269. package/dist/infrastructure/host/HostBuilder.js.map +1 -1
  270. package/dist/infrastructure/logging/FileLogger.js +1 -1
  271. package/dist/infrastructure/settings/DefaultSettings.d.ts.map +1 -1
  272. package/dist/infrastructure/settings/DefaultSettings.js +3 -0
  273. package/dist/infrastructure/settings/DefaultSettings.js.map +1 -1
  274. package/dist/infrastructure/settings/FsSettingsInitializer.d.ts.map +1 -1
  275. package/dist/infrastructure/settings/FsSettingsInitializer.js +6 -0
  276. package/dist/infrastructure/settings/FsSettingsInitializer.js.map +1 -1
  277. package/dist/infrastructure/settings/FsSettingsReader.d.ts.map +1 -1
  278. package/dist/infrastructure/settings/FsSettingsReader.js +10 -0
  279. package/dist/infrastructure/settings/FsSettingsReader.js.map +1 -1
  280. package/dist/presentation/cli/AppRunner.d.ts +7 -1
  281. package/dist/presentation/cli/AppRunner.d.ts.map +1 -1
  282. package/dist/presentation/cli/AppRunner.js +10 -5
  283. package/dist/presentation/cli/AppRunner.js.map +1 -1
  284. package/dist/presentation/cli/CliBootstrapPlan.d.ts +12 -0
  285. package/dist/presentation/cli/CliBootstrapPlan.d.ts.map +1 -0
  286. package/dist/presentation/cli/CliBootstrapPlan.js +23 -0
  287. package/dist/presentation/cli/CliBootstrapPlan.js.map +1 -0
  288. package/dist/presentation/cli/banner/AnimationFrames.d.ts +6 -1
  289. package/dist/presentation/cli/banner/AnimationFrames.d.ts.map +1 -1
  290. package/dist/presentation/cli/banner/AnimationFrames.js +307 -288
  291. package/dist/presentation/cli/banner/AnimationFrames.js.map +1 -1
  292. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.d.ts +17 -0
  293. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.d.ts.map +1 -0
  294. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.js +90 -0
  295. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.js.map +1 -0
  296. package/dist/presentation/cli/commands/decisions/search/decisions.search.d.ts +22 -0
  297. package/dist/presentation/cli/commands/decisions/search/decisions.search.d.ts.map +1 -0
  298. package/dist/presentation/cli/commands/decisions/search/decisions.search.js +93 -0
  299. package/dist/presentation/cli/commands/decisions/search/decisions.search.js.map +1 -0
  300. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.d.ts +16 -0
  301. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.d.ts.map +1 -0
  302. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.js +85 -0
  303. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.js.map +1 -0
  304. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.d.ts +21 -0
  305. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.d.ts.map +1 -0
  306. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.js +111 -0
  307. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.js.map +1 -0
  308. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.d.ts +22 -0
  309. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.d.ts.map +1 -0
  310. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.js +86 -0
  311. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.js.map +1 -0
  312. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.d.ts +21 -0
  313. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.d.ts.map +1 -0
  314. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.js +92 -0
  315. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.js.map +1 -0
  316. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.d.ts +22 -0
  317. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.d.ts.map +1 -0
  318. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.js +79 -0
  319. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.js.map +1 -0
  320. package/dist/presentation/cli/commands/invariants/search/invariants.search.d.ts +20 -0
  321. package/dist/presentation/cli/commands/invariants/search/invariants.search.d.ts.map +1 -0
  322. package/dist/presentation/cli/commands/invariants/search/invariants.search.js +80 -0
  323. package/dist/presentation/cli/commands/invariants/search/invariants.search.js.map +1 -0
  324. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.d.ts +14 -0
  325. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.d.ts.map +1 -0
  326. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.js +84 -0
  327. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.js.map +1 -0
  328. package/dist/presentation/cli/commands/project/show/project.show.d.ts +12 -0
  329. package/dist/presentation/cli/commands/project/show/project.show.d.ts.map +1 -0
  330. package/dist/presentation/cli/commands/project/show/project.show.js +59 -0
  331. package/dist/presentation/cli/commands/project/show/project.show.js.map +1 -0
  332. package/dist/presentation/cli/commands/registry/generated-commands.d.ts.map +1 -1
  333. package/dist/presentation/cli/commands/registry/generated-commands.js +30 -0
  334. package/dist/presentation/cli/commands/registry/generated-commands.js.map +1 -1
  335. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.d.ts +0 -1
  336. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.d.ts.map +1 -1
  337. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.js +2 -43
  338. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.js.map +1 -1
  339. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.d.ts +8 -9
  340. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.d.ts.map +1 -1
  341. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.js +107 -42
  342. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.js.map +1 -1
  343. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.d.ts +3 -2
  344. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.d.ts.map +1 -1
  345. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.js +24 -10
  346. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.js.map +1 -1
  347. package/dist/presentation/cli/commands/sessions/start/session.start.d.ts.map +1 -1
  348. package/dist/presentation/cli/commands/sessions/start/session.start.js +2 -5
  349. package/dist/presentation/cli/commands/sessions/start/session.start.js.map +1 -1
  350. package/dist/presentation/cli/commands/work/shared/AgentSpawner.d.ts +7 -4
  351. package/dist/presentation/cli/commands/work/shared/AgentSpawner.d.ts.map +1 -1
  352. package/dist/presentation/cli/commands/work/shared/AgentSpawner.js +11 -4
  353. package/dist/presentation/cli/commands/work/shared/AgentSpawner.js.map +1 -1
  354. package/dist/presentation/shared/DesignTokens.d.ts +94 -0
  355. package/dist/presentation/shared/DesignTokens.d.ts.map +1 -0
  356. package/dist/presentation/shared/DesignTokens.js +94 -0
  357. package/dist/presentation/shared/DesignTokens.js.map +1 -0
  358. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.d.ts +12 -0
  359. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.d.ts.map +1 -0
  360. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.js +21 -0
  361. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.js.map +1 -0
  362. package/dist/presentation/tui/application-shell/Footer.d.ts +16 -0
  363. package/dist/presentation/tui/application-shell/Footer.d.ts.map +1 -0
  364. package/dist/presentation/tui/application-shell/Footer.js +37 -0
  365. package/dist/presentation/tui/application-shell/Footer.js.map +1 -0
  366. package/dist/presentation/tui/application-shell/Header.d.ts +10 -0
  367. package/dist/presentation/tui/application-shell/Header.d.ts.map +1 -0
  368. package/dist/presentation/tui/application-shell/Header.js +44 -0
  369. package/dist/presentation/tui/application-shell/Header.js.map +1 -0
  370. package/dist/presentation/tui/application-shell/NotificationDrawer.d.ts +16 -0
  371. package/dist/presentation/tui/application-shell/NotificationDrawer.d.ts.map +1 -0
  372. package/dist/presentation/tui/application-shell/NotificationDrawer.js +56 -0
  373. package/dist/presentation/tui/application-shell/NotificationDrawer.js.map +1 -0
  374. package/dist/presentation/tui/application-shell/TuiApp.d.ts +25 -0
  375. package/dist/presentation/tui/application-shell/TuiApp.d.ts.map +1 -0
  376. package/dist/presentation/tui/application-shell/TuiApp.js +230 -0
  377. package/dist/presentation/tui/application-shell/TuiApp.js.map +1 -0
  378. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.d.ts +19 -0
  379. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.d.ts.map +1 -0
  380. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.js +46 -0
  381. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.js.map +1 -0
  382. package/dist/presentation/tui/billboard/AnimatedBillboard.d.ts +11 -0
  383. package/dist/presentation/tui/billboard/AnimatedBillboard.d.ts.map +1 -0
  384. package/dist/presentation/tui/billboard/AnimatedBillboard.js +406 -0
  385. package/dist/presentation/tui/billboard/AnimatedBillboard.js.map +1 -0
  386. package/dist/presentation/tui/cockpit/AnimatedBanner.d.ts +13 -0
  387. package/dist/presentation/tui/cockpit/AnimatedBanner.d.ts.map +1 -0
  388. package/dist/presentation/tui/cockpit/AnimatedBanner.js +193 -0
  389. package/dist/presentation/tui/cockpit/AnimatedBanner.js.map +1 -0
  390. package/dist/presentation/tui/cockpit/CenteredPrompt.d.ts +10 -0
  391. package/dist/presentation/tui/cockpit/CenteredPrompt.d.ts.map +1 -0
  392. package/dist/presentation/tui/cockpit/CenteredPrompt.js +14 -0
  393. package/dist/presentation/tui/cockpit/CenteredPrompt.js.map +1 -0
  394. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.d.ts +8 -0
  395. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.d.ts.map +1 -0
  396. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.js +33 -0
  397. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.js.map +1 -0
  398. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.d.ts +14 -0
  399. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.d.ts.map +1 -0
  400. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.js +146 -0
  401. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.js.map +1 -0
  402. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.d.ts +39 -0
  403. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.d.ts.map +1 -0
  404. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.js +183 -0
  405. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.js.map +1 -0
  406. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.d.ts +27 -0
  407. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.d.ts.map +1 -0
  408. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.js +108 -0
  409. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.js.map +1 -0
  410. package/dist/presentation/tui/cockpit/CockpitGreeterView.d.ts +3 -0
  411. package/dist/presentation/tui/cockpit/CockpitGreeterView.d.ts.map +1 -0
  412. package/dist/presentation/tui/cockpit/CockpitGreeterView.js +17 -0
  413. package/dist/presentation/tui/cockpit/CockpitGreeterView.js.map +1 -0
  414. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.d.ts +25 -0
  415. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.d.ts.map +1 -0
  416. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.js +217 -0
  417. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.js.map +1 -0
  418. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.d.ts +3 -0
  419. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.d.ts.map +1 -0
  420. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.js +16 -0
  421. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.js.map +1 -0
  422. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.d.ts +3 -0
  423. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.d.ts.map +1 -0
  424. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.js +22 -0
  425. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.js.map +1 -0
  426. package/dist/presentation/tui/cockpit/CockpitScreen.d.ts +20 -0
  427. package/dist/presentation/tui/cockpit/CockpitScreen.d.ts.map +1 -0
  428. package/dist/presentation/tui/cockpit/CockpitScreen.js +55 -0
  429. package/dist/presentation/tui/cockpit/CockpitScreen.js.map +1 -0
  430. package/dist/presentation/tui/cockpit/CockpitUnprimedView.d.ts +3 -0
  431. package/dist/presentation/tui/cockpit/CockpitUnprimedView.d.ts.map +1 -0
  432. package/dist/presentation/tui/cockpit/CockpitUnprimedView.js +27 -0
  433. package/dist/presentation/tui/cockpit/CockpitUnprimedView.js.map +1 -0
  434. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.d.ts +42 -0
  435. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.d.ts.map +1 -0
  436. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.js +2 -0
  437. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.js.map +1 -0
  438. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.d.ts +11 -0
  439. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.d.ts.map +1 -0
  440. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.js +30 -0
  441. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.js.map +1 -0
  442. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.d.ts +8 -0
  443. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.d.ts.map +1 -0
  444. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.js +10 -0
  445. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.js.map +1 -0
  446. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.d.ts +22 -0
  447. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.d.ts.map +1 -0
  448. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.js +257 -0
  449. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.js.map +1 -0
  450. package/dist/presentation/tui/goals/GoalAuthoringFlow.d.ts +22 -0
  451. package/dist/presentation/tui/goals/GoalAuthoringFlow.d.ts.map +1 -0
  452. package/dist/presentation/tui/goals/GoalAuthoringFlow.js +227 -0
  453. package/dist/presentation/tui/goals/GoalAuthoringFlow.js.map +1 -0
  454. package/dist/presentation/tui/goals/GoalsScreen.d.ts +3 -0
  455. package/dist/presentation/tui/goals/GoalsScreen.d.ts.map +1 -0
  456. package/dist/presentation/tui/goals/GoalsScreen.js +159 -0
  457. package/dist/presentation/tui/goals/GoalsScreen.js.map +1 -0
  458. package/dist/presentation/tui/index.d.ts +8 -0
  459. package/dist/presentation/tui/index.d.ts.map +1 -0
  460. package/dist/presentation/tui/index.js +5 -0
  461. package/dist/presentation/tui/index.js.map +1 -0
  462. package/dist/presentation/tui/memory/MemoryScreen.d.ts +3 -0
  463. package/dist/presentation/tui/memory/MemoryScreen.d.ts.map +1 -0
  464. package/dist/presentation/tui/memory/MemoryScreen.js +13 -0
  465. package/dist/presentation/tui/memory/MemoryScreen.js.map +1 -0
  466. package/dist/presentation/tui/memory/components/ComponentAddFlow.d.ts +14 -0
  467. package/dist/presentation/tui/memory/components/ComponentAddFlow.d.ts.map +1 -0
  468. package/dist/presentation/tui/memory/components/ComponentAddFlow.js +46 -0
  469. package/dist/presentation/tui/memory/components/ComponentAddFlow.js.map +1 -0
  470. package/dist/presentation/tui/memory/components/ComponentsScreen.d.ts +3 -0
  471. package/dist/presentation/tui/memory/components/ComponentsScreen.d.ts.map +1 -0
  472. package/dist/presentation/tui/memory/components/ComponentsScreen.js +17 -0
  473. package/dist/presentation/tui/memory/components/ComponentsScreen.js.map +1 -0
  474. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.d.ts +15 -0
  475. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.d.ts.map +1 -0
  476. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.js +63 -0
  477. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.js.map +1 -0
  478. package/dist/presentation/tui/memory/decisions/DecisionsScreen.d.ts +3 -0
  479. package/dist/presentation/tui/memory/decisions/DecisionsScreen.d.ts.map +1 -0
  480. package/dist/presentation/tui/memory/decisions/DecisionsScreen.js +18 -0
  481. package/dist/presentation/tui/memory/decisions/DecisionsScreen.js.map +1 -0
  482. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.d.ts +3 -0
  483. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.d.ts.map +1 -0
  484. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.js +19 -0
  485. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.js.map +1 -0
  486. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.d.ts +16 -0
  487. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.d.ts.map +1 -0
  488. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.js +56 -0
  489. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.js.map +1 -0
  490. package/dist/presentation/tui/memory/entity-browser/EntityColumn.d.ts +14 -0
  491. package/dist/presentation/tui/memory/entity-browser/EntityColumn.d.ts.map +1 -0
  492. package/dist/presentation/tui/memory/entity-browser/EntityColumn.js +21 -0
  493. package/dist/presentation/tui/memory/entity-browser/EntityColumn.js.map +1 -0
  494. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.d.ts +10 -0
  495. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.d.ts.map +1 -0
  496. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.js +85 -0
  497. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.js.map +1 -0
  498. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.d.ts +13 -0
  499. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.d.ts.map +1 -0
  500. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.js +80 -0
  501. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.js.map +1 -0
  502. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.d.ts +41 -0
  503. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.d.ts.map +1 -0
  504. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.js +2 -0
  505. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.js.map +1 -0
  506. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.d.ts +15 -0
  507. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.d.ts.map +1 -0
  508. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.js +57 -0
  509. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.js.map +1 -0
  510. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.d.ts +3 -0
  511. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.d.ts.map +1 -0
  512. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.js +18 -0
  513. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.js.map +1 -0
  514. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.d.ts +13 -0
  515. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.d.ts.map +1 -0
  516. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.js +41 -0
  517. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.js.map +1 -0
  518. package/dist/presentation/tui/memory/invariants/InvariantsScreen.d.ts +3 -0
  519. package/dist/presentation/tui/memory/invariants/InvariantsScreen.d.ts.map +1 -0
  520. package/dist/presentation/tui/memory/invariants/InvariantsScreen.js +16 -0
  521. package/dist/presentation/tui/memory/invariants/InvariantsScreen.js.map +1 -0
  522. package/dist/presentation/tui/navigation/MegaMenu.d.ts +10 -0
  523. package/dist/presentation/tui/navigation/MegaMenu.d.ts.map +1 -0
  524. package/dist/presentation/tui/navigation/MegaMenu.js +164 -0
  525. package/dist/presentation/tui/navigation/MegaMenu.js.map +1 -0
  526. package/dist/presentation/tui/navigation/MegaMenuDefinitions.d.ts +17 -0
  527. package/dist/presentation/tui/navigation/MegaMenuDefinitions.d.ts.map +1 -0
  528. package/dist/presentation/tui/navigation/MegaMenuDefinitions.js +162 -0
  529. package/dist/presentation/tui/navigation/MegaMenuDefinitions.js.map +1 -0
  530. package/dist/presentation/tui/navigation/ScreenDefinitions.d.ts +36 -0
  531. package/dist/presentation/tui/navigation/ScreenDefinitions.d.ts.map +1 -0
  532. package/dist/presentation/tui/navigation/ScreenDefinitions.js +12 -0
  533. package/dist/presentation/tui/navigation/ScreenDefinitions.js.map +1 -0
  534. package/dist/presentation/tui/navigation/ScreenRouter.d.ts +19 -0
  535. package/dist/presentation/tui/navigation/ScreenRouter.d.ts.map +1 -0
  536. package/dist/presentation/tui/navigation/ScreenRouter.js +31 -0
  537. package/dist/presentation/tui/navigation/ScreenRouter.js.map +1 -0
  538. package/dist/presentation/tui/project-initialization/InitFlow.d.ts +24 -0
  539. package/dist/presentation/tui/project-initialization/InitFlow.d.ts.map +1 -0
  540. package/dist/presentation/tui/project-initialization/InitFlow.js +629 -0
  541. package/dist/presentation/tui/project-initialization/InitFlow.js.map +1 -0
  542. package/dist/presentation/tui/sessions/SessionScreen.d.ts +3 -0
  543. package/dist/presentation/tui/sessions/SessionScreen.d.ts.map +1 -0
  544. package/dist/presentation/tui/sessions/SessionScreen.js +38 -0
  545. package/dist/presentation/tui/sessions/SessionScreen.js.map +1 -0
  546. package/dist/presentation/tui/state-reading/TuiStateReader.d.ts +58 -0
  547. package/dist/presentation/tui/state-reading/TuiStateReader.d.ts.map +1 -0
  548. package/dist/presentation/tui/state-reading/TuiStateReader.js +150 -0
  549. package/dist/presentation/tui/state-reading/TuiStateReader.js.map +1 -0
  550. package/dist/presentation/tui/ui-primitives/DetailPane.d.ts +15 -0
  551. package/dist/presentation/tui/ui-primitives/DetailPane.d.ts.map +1 -0
  552. package/dist/presentation/tui/ui-primitives/DetailPane.js +12 -0
  553. package/dist/presentation/tui/ui-primitives/DetailPane.js.map +1 -0
  554. package/dist/presentation/tui/ui-primitives/KeyBadge.d.ts +11 -0
  555. package/dist/presentation/tui/ui-primitives/KeyBadge.d.ts.map +1 -0
  556. package/dist/presentation/tui/ui-primitives/KeyBadge.js +9 -0
  557. package/dist/presentation/tui/ui-primitives/KeyBadge.js.map +1 -0
  558. package/dist/presentation/tui/ui-primitives/ListPanel.d.ts +16 -0
  559. package/dist/presentation/tui/ui-primitives/ListPanel.d.ts.map +1 -0
  560. package/dist/presentation/tui/ui-primitives/ListPanel.js +15 -0
  561. package/dist/presentation/tui/ui-primitives/ListPanel.js.map +1 -0
  562. package/dist/presentation/tui/ui-primitives/Panel.d.ts +15 -0
  563. package/dist/presentation/tui/ui-primitives/Panel.d.ts.map +1 -0
  564. package/dist/presentation/tui/ui-primitives/Panel.js +9 -0
  565. package/dist/presentation/tui/ui-primitives/Panel.js.map +1 -0
  566. package/dist/presentation/tui/ui-primitives/SectionHeading.d.ts +8 -0
  567. package/dist/presentation/tui/ui-primitives/SectionHeading.d.ts.map +1 -0
  568. package/dist/presentation/tui/ui-primitives/SectionHeading.js +9 -0
  569. package/dist/presentation/tui/ui-primitives/SectionHeading.js.map +1 -0
  570. package/dist/presentation/tui/ui-primitives/StatusIndicator.d.ts +9 -0
  571. package/dist/presentation/tui/ui-primitives/StatusIndicator.d.ts.map +1 -0
  572. package/dist/presentation/tui/ui-primitives/StatusIndicator.js +21 -0
  573. package/dist/presentation/tui/ui-primitives/StatusIndicator.js.map +1 -0
  574. package/dist/presentation/tui/ui-primitives/Tumbler.d.ts +18 -0
  575. package/dist/presentation/tui/ui-primitives/Tumbler.d.ts.map +1 -0
  576. package/dist/presentation/tui/ui-primitives/Tumbler.js +101 -0
  577. package/dist/presentation/tui/ui-primitives/Tumbler.js.map +1 -0
  578. package/dist/presentation/tui/wizard/Wizard.d.ts +53 -0
  579. package/dist/presentation/tui/wizard/Wizard.d.ts.map +1 -0
  580. package/dist/presentation/tui/wizard/Wizard.js +385 -0
  581. package/dist/presentation/tui/wizard/Wizard.js.map +1 -0
  582. package/dist/presentation/tui/wizard/WizardTextInput.d.ts +12 -0
  583. package/dist/presentation/tui/wizard/WizardTextInput.d.ts.map +1 -0
  584. package/dist/presentation/tui/wizard/WizardTextInput.js +39 -0
  585. package/dist/presentation/tui/wizard/WizardTextInput.js.map +1 -0
  586. package/dist/presentation/work/codifier.daemon.d.ts +3 -0
  587. package/dist/presentation/work/codifier.daemon.d.ts.map +1 -0
  588. package/dist/presentation/work/codifier.daemon.js +75 -0
  589. package/dist/presentation/work/codifier.daemon.js.map +1 -0
  590. package/dist/presentation/work/refiner.daemon.d.ts +3 -0
  591. package/dist/presentation/work/refiner.daemon.d.ts.map +1 -0
  592. package/dist/presentation/work/refiner.daemon.js +60 -0
  593. package/dist/presentation/work/refiner.daemon.js.map +1 -0
  594. package/dist/presentation/work/reviewer.daemon.d.ts +3 -0
  595. package/dist/presentation/work/reviewer.daemon.d.ts.map +1 -0
  596. package/dist/presentation/work/reviewer.daemon.js +60 -0
  597. package/dist/presentation/work/reviewer.daemon.js.map +1 -0
  598. package/package.json +5 -1
  599. package/dist/application/context/project/get/ContextualProjectView.d.ts +0 -24
  600. package/dist/application/context/project/get/ContextualProjectView.d.ts.map +0 -1
  601. package/dist/application/context/project/get/ContextualProjectView.js +0 -2
  602. package/dist/application/context/project/get/ContextualProjectView.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GuidelinesScreen.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/memory/guidelines/GuidelinesScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,wBAAgB,gBAAgB,IAAI,KAAK,CAAC,YAAY,CAarD"}
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+ import { MemoryEntityScreen } from "../entity-browser/MemoryEntityScreen.js";
3
+ import { useGuidelinesList } from "../../state-reading/TuiStateReader.js";
4
+ export function GuidelinesScreen() {
5
+ const guidelinesList = useGuidelinesList();
6
+ return (React.createElement(MemoryEntityScreen, { entityType: "guideline", title: "Guidelines", subtitle: "Focused guideline memory list and selected guideline detail", rows: (guidelinesList.data?.guidelines ?? []).map(toGuidelineEntityRow), loading: guidelinesList.loading, error: guidelinesList.error }));
7
+ }
8
+ function toGuidelineEntityRow(guideline) {
9
+ return {
10
+ id: guideline.guidelineId,
11
+ title: guideline.title,
12
+ category: guideline.category,
13
+ description: guideline.description,
14
+ rationale: guideline.rationale,
15
+ examples: guideline.examples,
16
+ };
17
+ }
18
+ //# sourceMappingURL=GuidelinesScreen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GuidelinesScreen.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/memory/guidelines/GuidelinesScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,yCAAyC,CAAC;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAG1E,MAAM,UAAU,gBAAgB;IAC9B,MAAM,cAAc,GAAG,iBAAiB,EAAE,CAAC;IAE3C,OAAO,CACL,oBAAC,kBAAkB,IACjB,UAAU,EAAC,WAAW,EACtB,KAAK,EAAC,YAAY,EAClB,QAAQ,EAAC,6DAA6D,EACtE,IAAI,EAAE,CAAC,cAAc,CAAC,IAAI,EAAE,UAAU,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,oBAAoB,CAAC,EACvE,OAAO,EAAE,cAAc,CAAC,OAAO,EAC/B,KAAK,EAAE,cAAc,CAAC,KAAK,GAC3B,CACH,CAAC;AACJ,CAAC;AAED,SAAS,oBAAoB,CAAC,SAAwB;IACpD,OAAO;QACL,EAAE,EAAE,SAAS,CAAC,WAAW;QACzB,KAAK,EAAE,SAAS,CAAC,KAAK;QACtB,QAAQ,EAAE,SAAS,CAAC,QAAQ;QAC5B,WAAW,EAAE,SAAS,CAAC,WAAW;QAClC,SAAS,EAAE,SAAS,CAAC,SAAS;QAC9B,QAAQ,EAAE,SAAS,CAAC,QAAQ;KAC7B,CAAC;AACJ,CAAC"}
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ export interface InvariantAddValues {
3
+ readonly title: string;
4
+ readonly description: string;
5
+ readonly rationale: string;
6
+ }
7
+ interface InvariantAddFlowProps {
8
+ readonly onComplete: (values: Record<string, string>) => void;
9
+ readonly onCancel: () => void;
10
+ }
11
+ export declare function InvariantAddFlow({ onComplete, onCancel, }: InvariantAddFlowProps): React.ReactElement;
12
+ export {};
13
+ //# sourceMappingURL=InvariantAddFlow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InvariantAddFlow.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/memory/invariants/InvariantAddFlow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;CAC5B;AAsCD,UAAU,qBAAqB;IAC7B,QAAQ,CAAC,UAAU,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,KAAK,IAAI,CAAC;IAC9D,QAAQ,CAAC,QAAQ,EAAE,MAAM,IAAI,CAAC;CAC/B;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,UAAU,EACV,QAAQ,GACT,EAAE,qBAAqB,GAAG,KAAK,CAAC,YAAY,CAS5C"}
@@ -0,0 +1,41 @@
1
+ import React from "react";
2
+ import { Wizard } from "../../wizard/Wizard.js";
3
+ const INVARIANT_ADD_STEPS = [
4
+ {
5
+ title: "Title",
6
+ description: "Summarize the invariant in a single sentence.",
7
+ fields: [
8
+ {
9
+ key: "title",
10
+ label: "Title",
11
+ placeholder: "e.g. One class per file",
12
+ },
13
+ ],
14
+ },
15
+ {
16
+ title: "Description",
17
+ description: "Describe the non-negotiable constraint in detail.",
18
+ fields: [
19
+ {
20
+ key: "description",
21
+ label: "Description",
22
+ placeholder: "e.g. Each TS file contains exactly one class definition",
23
+ },
24
+ ],
25
+ },
26
+ {
27
+ title: "Rationale",
28
+ description: "Explain why this constraint cannot be violated.",
29
+ fields: [
30
+ {
31
+ key: "rationale",
32
+ label: "Rationale",
33
+ placeholder: "e.g. Single-responsibility at the file level",
34
+ },
35
+ ],
36
+ },
37
+ ];
38
+ export function InvariantAddFlow({ onComplete, onCancel, }) {
39
+ return (React.createElement(Wizard, { title: "Add Invariant", steps: INVARIANT_ADD_STEPS, onConfirm: onComplete, onCancel: onCancel }));
40
+ }
41
+ //# sourceMappingURL=InvariantAddFlow.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InvariantAddFlow.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/memory/invariants/InvariantAddFlow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAShD,MAAM,mBAAmB,GAAoC;IAC3D;QACE,KAAK,EAAE,OAAO;QACd,WAAW,EAAE,+CAA+C;QAC5D,MAAM,EAAE;YACN;gBACE,GAAG,EAAE,OAAO;gBACZ,KAAK,EAAE,OAAO;gBACd,WAAW,EAAE,yBAAyB;aACvC;SACF;KACF;IACD;QACE,KAAK,EAAE,aAAa;QACpB,WAAW,EAAE,mDAAmD;QAChE,MAAM,EAAE;YACN;gBACE,GAAG,EAAE,aAAa;gBAClB,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,yDAAyD;aACvE;SACF;KACF;IACD;QACE,KAAK,EAAE,WAAW;QAClB,WAAW,EAAE,iDAAiD;QAC9D,MAAM,EAAE;YACN;gBACE,GAAG,EAAE,WAAW;gBAChB,KAAK,EAAE,WAAW;gBAClB,WAAW,EAAE,8CAA8C;aAC5D;SACF;KACF;CACO,CAAC;AAOX,MAAM,UAAU,gBAAgB,CAAC,EAC/B,UAAU,EACV,QAAQ,GACc;IACtB,OAAO,CACL,oBAAC,MAAM,IACL,KAAK,EAAC,eAAe,EACrB,KAAK,EAAE,mBAAmB,EAC1B,SAAS,EAAE,UAAU,EACrB,QAAQ,EAAE,QAAQ,GAClB,CACH,CAAC;AACJ,CAAC"}
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ export declare function InvariantsScreen(): React.ReactElement;
3
+ //# sourceMappingURL=InvariantsScreen.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InvariantsScreen.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/memory/invariants/InvariantsScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,wBAAgB,gBAAgB,IAAI,KAAK,CAAC,YAAY,CAarD"}
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ import { MemoryEntityScreen } from "../entity-browser/MemoryEntityScreen.js";
3
+ import { useInvariantsList } from "../../state-reading/TuiStateReader.js";
4
+ export function InvariantsScreen() {
5
+ const invariantsList = useInvariantsList();
6
+ return (React.createElement(MemoryEntityScreen, { entityType: "invariant", title: "Invariants", subtitle: "Focused invariant memory list and selected invariant detail", rows: (invariantsList.data?.invariants ?? []).map(toInvariantEntityRow), loading: invariantsList.loading, error: invariantsList.error }));
7
+ }
8
+ function toInvariantEntityRow(invariant) {
9
+ return {
10
+ id: invariant.invariantId,
11
+ title: invariant.title,
12
+ description: invariant.description,
13
+ rationale: invariant.rationale ?? "",
14
+ };
15
+ }
16
+ //# sourceMappingURL=InvariantsScreen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InvariantsScreen.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/memory/invariants/InvariantsScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,yCAAyC,CAAC;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAG1E,MAAM,UAAU,gBAAgB;IAC9B,MAAM,cAAc,GAAG,iBAAiB,EAAE,CAAC;IAE3C,OAAO,CACL,oBAAC,kBAAkB,IACjB,UAAU,EAAC,WAAW,EACtB,KAAK,EAAC,YAAY,EAClB,QAAQ,EAAC,6DAA6D,EACtE,IAAI,EAAE,CAAC,cAAc,CAAC,IAAI,EAAE,UAAU,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,oBAAoB,CAAC,EACvE,OAAO,EAAE,cAAc,CAAC,OAAO,EAC/B,KAAK,EAAE,cAAc,CAAC,KAAK,GAC3B,CACH,CAAC;AACJ,CAAC;AAED,SAAS,oBAAoB,CAAC,SAAwB;IACpD,OAAO;QACL,EAAE,EAAE,SAAS,CAAC,WAAW;QACzB,KAAK,EAAE,SAAS,CAAC,KAAK;QACtB,WAAW,EAAE,SAAS,CAAC,WAAW;QAClC,SAAS,EAAE,SAAS,CAAC,SAAS,IAAI,EAAE;KACrC,CAAC;AACJ,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ interface MegaMenuProps {
3
+ activeScreenIndex: number;
4
+ onScreenSelect: (index: number) => void;
5
+ onClose: () => void;
6
+ terminalWidth: number;
7
+ }
8
+ export declare function MegaMenu({ activeScreenIndex, onScreenSelect, onClose, terminalWidth, }: MegaMenuProps): React.ReactElement;
9
+ export {};
10
+ //# sourceMappingURL=MegaMenu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MegaMenu.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/MegaMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAiBxC,UAAU,aAAa;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;CACvB;AA0HD,wBAAgB,QAAQ,CAAC,EACvB,iBAAiB,EACjB,cAAc,EACd,OAAO,EACP,aAAa,GACd,EAAE,aAAa,GAAG,KAAK,CAAC,YAAY,CAsIpC"}
@@ -0,0 +1,164 @@
1
+ import React, { useState } from "react";
2
+ import { Box, Text, useInput } from "ink";
3
+ import { BaseColors, SemanticColors, TuiGlyphs, } from "../../shared/DesignTokens.js";
4
+ import { SCREEN_DEFINITIONS, } from "./ScreenDefinitions.js";
5
+ import { MEGA_MENU_SECTIONS, MAX_MENU_DEPTH, } from "./MegaMenuDefinitions.js";
6
+ const COLUMN_WIDTH = 24;
7
+ function screenIndexForKey(screenKey) {
8
+ return SCREEN_DEFINITIONS.findIndex((screen) => screen.key === screenKey);
9
+ }
10
+ function activeScreenKeyForIndex(activeScreenIndex) {
11
+ return (SCREEN_DEFINITIONS[activeScreenIndex]?.key ?? SCREEN_DEFINITIONS[0].key);
12
+ }
13
+ function itemContainsScreenKey(item, activeScreenKey) {
14
+ if (item.screenKey === activeScreenKey) {
15
+ return true;
16
+ }
17
+ return item.children?.some((child) => itemContainsScreenKey(child, activeScreenKey)) ?? false;
18
+ }
19
+ function highlightedPathForScreenKey(activeScreenKey) {
20
+ const sectionIndex = MEGA_MENU_SECTIONS.findIndex((section) => itemContainsScreenKey(section, activeScreenKey));
21
+ if (sectionIndex < 0) {
22
+ return [0, 0, 0];
23
+ }
24
+ const section = MEGA_MENU_SECTIONS[sectionIndex];
25
+ const childIndex = section.children.findIndex((child) => itemContainsScreenKey(child, activeScreenKey));
26
+ const child = childIndex >= 0 ? section.children[childIndex] : undefined;
27
+ const grandchildIndex = child?.children?.findIndex((grandchild) => itemContainsScreenKey(grandchild, activeScreenKey)) ?? -1;
28
+ return [
29
+ sectionIndex,
30
+ childIndex < 0 ? 0 : childIndex,
31
+ grandchildIndex < 0 ? 0 : grandchildIndex,
32
+ ];
33
+ }
34
+ function getItemsAtLevel(level, highlightedIndices) {
35
+ if (level === 0) {
36
+ return MEGA_MENU_SECTIONS;
37
+ }
38
+ let items = MEGA_MENU_SECTIONS;
39
+ for (let i = 0; i < level; i++) {
40
+ const parent = items[highlightedIndices[i]];
41
+ if (!parent || !("children" in parent) || !parent.children) {
42
+ return [];
43
+ }
44
+ items = parent.children;
45
+ }
46
+ return items;
47
+ }
48
+ function MenuColumn({ items, highlightedIndex, activeLevel, columnLevel, activeScreenIndex, }) {
49
+ const isActiveColumn = columnLevel === activeLevel;
50
+ const activeScreenKey = activeScreenKeyForIndex(activeScreenIndex);
51
+ return (React.createElement(Box, { flexDirection: "column", width: COLUMN_WIDTH }, items.map((item, index) => {
52
+ const isHighlighted = isActiveColumn && index === highlightedIndex;
53
+ const isCurrentScreen = itemContainsScreenKey(item, activeScreenKey);
54
+ const hasChildren = "children" in item && item.children && item.children.length > 0;
55
+ return (React.createElement(Box, { key: item.key },
56
+ React.createElement(Text, { color: isHighlighted
57
+ ? BaseColors.brandBlue
58
+ : isActiveColumn
59
+ ? SemanticColors.primary
60
+ : SemanticColors.muted, bold: isHighlighted },
61
+ isHighlighted ? TuiGlyphs.selector : " ",
62
+ " ",
63
+ isCurrentScreen ? "[" : "",
64
+ item.label,
65
+ isCurrentScreen ? "]" : "",
66
+ hasChildren && isHighlighted ? ` ${TuiGlyphs.arrow}` : "")));
67
+ })));
68
+ }
69
+ export function MegaMenu({ activeScreenIndex, onScreenSelect, onClose, terminalWidth, }) {
70
+ const activeScreenKey = activeScreenKeyForIndex(activeScreenIndex);
71
+ const [activeLevel, setActiveLevel] = useState(0);
72
+ const [highlightedIndices, setHighlightedIndices] = useState(highlightedPathForScreenKey(activeScreenKey));
73
+ const currentItems = getItemsAtLevel(activeLevel, highlightedIndices);
74
+ const highlightedItem = currentItems[highlightedIndices[activeLevel]];
75
+ useInput((input, key) => {
76
+ if (key.escape) {
77
+ if (activeLevel > 0) {
78
+ setActiveLevel((prev) => prev - 1);
79
+ }
80
+ else {
81
+ onClose();
82
+ }
83
+ return;
84
+ }
85
+ if (key.return) {
86
+ if (highlightedItem?.screenKey) {
87
+ const screenIndex = screenIndexForKey(highlightedItem.screenKey);
88
+ if (screenIndex >= 0) {
89
+ onScreenSelect(screenIndex);
90
+ }
91
+ return;
92
+ }
93
+ if (highlightedItem &&
94
+ "children" in highlightedItem &&
95
+ highlightedItem.children &&
96
+ highlightedItem.children.length > 0 &&
97
+ activeLevel < MAX_MENU_DEPTH - 1) {
98
+ setActiveLevel((prev) => prev + 1);
99
+ }
100
+ return;
101
+ }
102
+ if (key.upArrow) {
103
+ setHighlightedIndices((prev) => {
104
+ const next = [...prev];
105
+ if (next[activeLevel] > 0) {
106
+ next[activeLevel] -= 1;
107
+ for (let i = activeLevel + 1; i < MAX_MENU_DEPTH; i++) {
108
+ next[i] = 0;
109
+ }
110
+ }
111
+ return next;
112
+ });
113
+ return;
114
+ }
115
+ if (key.downArrow) {
116
+ setHighlightedIndices((prev) => {
117
+ const next = [...prev];
118
+ if (next[activeLevel] < currentItems.length - 1) {
119
+ next[activeLevel] += 1;
120
+ for (let i = activeLevel + 1; i < MAX_MENU_DEPTH; i++) {
121
+ next[i] = 0;
122
+ }
123
+ }
124
+ return next;
125
+ });
126
+ return;
127
+ }
128
+ if (key.rightArrow && activeLevel < MAX_MENU_DEPTH - 1) {
129
+ const nextItems = getItemsAtLevel(activeLevel + 1, highlightedIndices);
130
+ if (nextItems.length > 0) {
131
+ setActiveLevel((prev) => prev + 1);
132
+ }
133
+ return;
134
+ }
135
+ if (key.leftArrow && activeLevel > 0) {
136
+ setActiveLevel((prev) => prev - 1);
137
+ return;
138
+ }
139
+ });
140
+ return (React.createElement(Box, { flexDirection: "column", width: terminalWidth, borderStyle: "single", borderColor: SemanticColors.muted, paddingX: 1 },
141
+ React.createElement(Box, { marginBottom: 1 },
142
+ React.createElement(Text, { color: SemanticColors.headline, bold: true }, "Navigate")),
143
+ React.createElement(Box, null, [0, 1, 2].map((level) => {
144
+ const items = getItemsAtLevel(level, highlightedIndices);
145
+ if (items.length === 0) {
146
+ return (React.createElement(Box, { key: level, width: COLUMN_WIDTH },
147
+ React.createElement(Text, { color: SemanticColors.muted }, " ")));
148
+ }
149
+ return (React.createElement(React.Fragment, { key: level },
150
+ level > 0 && (React.createElement(Box, { marginX: 1 },
151
+ React.createElement(Text, { color: SemanticColors.muted }, TuiGlyphs.accentBar))),
152
+ React.createElement(MenuColumn, { items: items, highlightedIndex: highlightedIndices[level], activeLevel: activeLevel, columnLevel: level, activeScreenIndex: activeScreenIndex })));
153
+ })),
154
+ React.createElement(Box, { marginTop: 1 },
155
+ React.createElement(Text, { color: SemanticColors.muted },
156
+ "\u2190\u2192 drill ",
157
+ TuiGlyphs.dot,
158
+ " enter select ",
159
+ TuiGlyphs.dot,
160
+ " esc",
161
+ " ",
162
+ activeLevel > 0 ? "back" : "close"))));
163
+ }
164
+ //# sourceMappingURL=MegaMenu.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MegaMenu.js","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/MegaMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC1C,OAAO,EACL,UAAU,EACV,cAAc,EACd,SAAS,GACV,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,kBAAkB,GAEnB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,kBAAkB,EAClB,cAAc,GACf,MAAM,0BAA0B,CAAC;AAUlC,MAAM,YAAY,GAAG,EAAE,CAAC;AAExB,SAAS,iBAAiB,CAAC,SAAoB;IAC7C,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,KAAK,SAAS,CAAC,CAAC;AAC5E,CAAC;AAED,SAAS,uBAAuB,CAAC,iBAAyB;IACxD,OAAO,CACL,kBAAkB,CAAC,iBAAiB,CAAC,EAAE,GAAG,IAAI,kBAAkB,CAAC,CAAC,CAAC,CAAC,GAAG,CACxE,CAAC;AACJ,CAAC;AAED,SAAS,qBAAqB,CAC5B,IAAoC,EACpC,eAA0B;IAE1B,IAAI,IAAI,CAAC,SAAS,KAAK,eAAe,EAAE,CAAC;QACvC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,OAAO,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,CACnC,qBAAqB,CAAC,KAAK,EAAE,eAAe,CAAC,CAC9C,IAAI,KAAK,CAAC;AACb,CAAC;AAED,SAAS,2BAA2B,CAClC,eAA0B;IAE1B,MAAM,YAAY,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC,OAAO,EAAE,EAAE,CAC5D,qBAAqB,CAAC,OAAO,EAAE,eAAe,CAAC,CAChD,CAAC;IACF,IAAI,YAAY,GAAG,CAAC,EAAE,CAAC;QACrB,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IACnB,CAAC;IAED,MAAM,OAAO,GAAG,kBAAkB,CAAC,YAAY,CAAC,CAAC;IACjD,MAAM,UAAU,GAAG,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,KAAK,EAAE,EAAE,CACtD,qBAAqB,CAAC,KAAK,EAAE,eAAe,CAAC,CAC9C,CAAC;IACF,MAAM,KAAK,GAAG,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IACzE,MAAM,eAAe,GACnB,KAAK,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC,UAAU,EAAE,EAAE,CACxC,qBAAqB,CAAC,UAAU,EAAE,eAAe,CAAC,CACnD,IAAI,CAAC,CAAC,CAAC;IAEV,OAAO;QACL,YAAY;QACZ,UAAU,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,UAAU;QAC/B,eAAe,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,eAAe;KAC1C,CAAC;AACJ,CAAC;AAED,SAAS,eAAe,CACtB,KAAa,EACb,kBAAqC;IAErC,IAAI,KAAK,KAAK,CAAC,EAAE,CAAC;QAChB,OAAO,kBAAkB,CAAC;IAC5B,CAAC;IAED,IAAI,KAAK,GAAgD,kBAAkB,CAAC;IAC5E,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;QAC/B,MAAM,MAAM,GAAG,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,IAAI,CAAC,CAAC,UAAU,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC;YAC3D,OAAO,EAAE,CAAC;QACZ,CAAC;QACD,KAAK,GAAG,MAAM,CAAC,QAAQ,CAAC;IAC1B,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC;AAED,SAAS,UAAU,CAAC,EAClB,KAAK,EACL,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,iBAAiB,GAOlB;IACC,MAAM,cAAc,GAAG,WAAW,KAAK,WAAW,CAAC;IACnD,MAAM,eAAe,GAAG,uBAAuB,CAAC,iBAAiB,CAAC,CAAC;IAEnE,OAAO,CACL,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,KAAK,EAAE,YAAY,IAC5C,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE;QACzB,MAAM,aAAa,GAAG,cAAc,IAAI,KAAK,KAAK,gBAAgB,CAAC;QACnE,MAAM,eAAe,GAAG,qBAAqB,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC;QACrE,MAAM,WAAW,GACf,UAAU,IAAI,IAAI,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;QAElE,OAAO,CACL,oBAAC,GAAG,IAAC,GAAG,EAAE,IAAI,CAAC,GAAG;YAChB,oBAAC,IAAI,IACH,KAAK,EACH,aAAa;oBACX,CAAC,CAAC,UAAU,CAAC,SAAS;oBACtB,CAAC,CAAC,cAAc;wBACd,CAAC,CAAC,cAAc,CAAC,OAAO;wBACxB,CAAC,CAAC,cAAc,CAAC,KAAK,EAE5B,IAAI,EAAE,aAAa;gBAElB,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG;gBAAE,GAAG;gBAC7C,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;gBAC1B,IAAI,CAAC,KAAK;gBACV,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;gBAC1B,WAAW,IAAI,aAAa,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CACrD,CACH,CACP,CAAC;IACJ,CAAC,CAAC,CACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,QAAQ,CAAC,EACvB,iBAAiB,EACjB,cAAc,EACd,OAAO,EACP,aAAa,GACC;IACd,MAAM,eAAe,GAAG,uBAAuB,CAAC,iBAAiB,CAAC,CAAC;IACnE,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAClD,MAAM,CAAC,kBAAkB,EAAE,qBAAqB,CAAC,GAAG,QAAQ,CAE1D,2BAA2B,CAAC,eAAe,CAAC,CAAC,CAAC;IAEhD,MAAM,YAAY,GAAG,eAAe,CAAC,WAAW,EAAE,kBAAkB,CAAC,CAAC;IACtE,MAAM,eAAe,GAAG,YAAY,CAAC,kBAAkB,CAAC,WAAW,CAAC,CAAC,CAAC;IAEtE,QAAQ,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;QACtB,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;YACf,IAAI,WAAW,GAAG,CAAC,EAAE,CAAC;gBACpB,cAAc,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC;YACrC,CAAC;iBAAM,CAAC;gBACN,OAAO,EAAE,CAAC;YACZ,CAAC;YACD,OAAO;QACT,CAAC;QAED,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;YACf,IAAI,eAAe,EAAE,SAAS,EAAE,CAAC;gBAC/B,MAAM,WAAW,GAAG,iBAAiB,CAAC,eAAe,CAAC,SAAS,CAAC,CAAC;gBACjE,IAAI,WAAW,IAAI,CAAC,EAAE,CAAC;oBACrB,cAAc,CAAC,WAAW,CAAC,CAAC;gBAC9B,CAAC;gBACD,OAAO;YACT,CAAC;YAED,IACE,eAAe;gBACf,UAAU,IAAI,eAAe;gBAC7B,eAAe,CAAC,QAAQ;gBACxB,eAAe,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC;gBACnC,WAAW,GAAG,cAAc,GAAG,CAAC,EAChC,CAAC;gBACD,cAAc,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC;YACrC,CAAC;YACD,OAAO;QACT,CAAC;QAED,IAAI,GAAG,CAAC,OAAO,EAAE,CAAC;YAChB,qBAAqB,CAAC,CAAC,IAAI,EAAE,EAAE;gBAC7B,MAAM,IAAI,GAAG,CAAC,GAAG,IAAI,CAA6B,CAAC;gBACnD,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE,CAAC;oBAC1B,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;oBACvB,KAAK,IAAI,CAAC,GAAG,WAAW,GAAG,CAAC,EAAE,CAAC,GAAG,cAAc,EAAE,CAAC,EAAE,EAAE,CAAC;wBACtD,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;oBACd,CAAC;gBACH,CAAC;gBACD,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YACH,OAAO;QACT,CAAC;QAED,IAAI,GAAG,CAAC,SAAS,EAAE,CAAC;YAClB,qBAAqB,CAAC,CAAC,IAAI,EAAE,EAAE;gBAC7B,MAAM,IAAI,GAAG,CAAC,GAAG,IAAI,CAA6B,CAAC;gBACnD,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;oBAChD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;oBACvB,KAAK,IAAI,CAAC,GAAG,WAAW,GAAG,CAAC,EAAE,CAAC,GAAG,cAAc,EAAE,CAAC,EAAE,EAAE,CAAC;wBACtD,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;oBACd,CAAC;gBACH,CAAC;gBACD,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YACH,OAAO;QACT,CAAC;QAED,IAAI,GAAG,CAAC,UAAU,IAAI,WAAW,GAAG,cAAc,GAAG,CAAC,EAAE,CAAC;YACvD,MAAM,SAAS,GAAG,eAAe,CAAC,WAAW,GAAG,CAAC,EAAE,kBAAkB,CAAC,CAAC;YACvE,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACzB,cAAc,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC;YACrC,CAAC;YACD,OAAO;QACT,CAAC;QAED,IAAI,GAAG,CAAC,SAAS,IAAI,WAAW,GAAG,CAAC,EAAE,CAAC;YACrC,cAAc,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC;YACnC,OAAO;QACT,CAAC;IAEH,CAAC,CAAC,CAAC;IAEH,OAAO,CACL,oBAAC,GAAG,IACF,aAAa,EAAC,QAAQ,EACtB,KAAK,EAAE,aAAa,EACpB,WAAW,EAAC,QAAQ,EACpB,WAAW,EAAE,cAAc,CAAC,KAAK,EACjC,QAAQ,EAAE,CAAC;QAEX,oBAAC,GAAG,IAAC,YAAY,EAAE,CAAC;YAClB,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,QAAQ,EAAE,IAAI,qBAEnC,CACH;QACN,oBAAC,GAAG,QACD,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE;YACvB,MAAM,KAAK,GAAG,eAAe,CAAC,KAAK,EAAE,kBAAkB,CAAC,CAAC;YACzD,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBACvB,OAAO,CACL,oBAAC,GAAG,IAAC,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,YAAY;oBAClC,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,KAAK,QAAU,CACvC,CACP,CAAC;YACJ,CAAC;YAED,OAAO,CACL,oBAAC,KAAK,CAAC,QAAQ,IAAC,GAAG,EAAE,KAAK;gBACvB,KAAK,GAAG,CAAC,IAAI,CACZ,oBAAC,GAAG,IAAC,OAAO,EAAE,CAAC;oBACb,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,KAAK,IAAG,SAAS,CAAC,SAAS,CAAQ,CAC3D,CACP;gBACD,oBAAC,UAAU,IACT,KAAK,EAAE,KAAK,EACZ,gBAAgB,EAAE,kBAAkB,CAAC,KAAK,CAAC,EAC3C,WAAW,EAAE,WAAW,EACxB,WAAW,EAAE,KAAK,EAClB,iBAAiB,EAAE,iBAAiB,GACpC,CACa,CAClB,CAAC;QACJ,CAAC,CAAC,CACE;QACN,oBAAC,GAAG,IAAC,SAAS,EAAE,CAAC;YACf,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,KAAK;;gBACrB,SAAS,CAAC,GAAG;;gBAAgB,SAAS,CAAC,GAAG;;gBAAM,GAAG;gBAC5D,WAAW,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAC9B,CACH,CACF,CACP,CAAC;AACJ,CAAC"}
@@ -0,0 +1,17 @@
1
+ import type { ScreenKey } from "./ScreenDefinitions.js";
2
+ export interface MegaMenuItem {
3
+ readonly key: string;
4
+ readonly label: string;
5
+ readonly screenKey?: ScreenKey;
6
+ readonly children?: readonly MegaMenuItem[];
7
+ }
8
+ export interface MegaMenuSection {
9
+ readonly key: string;
10
+ readonly label: string;
11
+ readonly screenKey?: ScreenKey;
12
+ readonly shortcut: string;
13
+ readonly children: readonly MegaMenuItem[];
14
+ }
15
+ export declare const MEGA_MENU_SECTIONS: readonly MegaMenuSection[];
16
+ export declare const MAX_MENU_DEPTH = 3;
17
+ //# sourceMappingURL=MegaMenuDefinitions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MegaMenuDefinitions.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/MegaMenuDefinitions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,MAAM,WAAW,YAAY;IAC3B,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC;IAC/B,QAAQ,CAAC,QAAQ,CAAC,EAAE,SAAS,YAAY,EAAE,CAAC;CAC7C;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC;IAC/B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,QAAQ,EAAE,SAAS,YAAY,EAAE,CAAC;CAC5C;AAED,eAAO,MAAM,kBAAkB,EAAE,SAAS,eAAe,EA+J/C,CAAC;AAEX,eAAO,MAAM,cAAc,IAAI,CAAC"}
@@ -0,0 +1,162 @@
1
+ export const MEGA_MENU_SECTIONS = [
2
+ {
3
+ key: "cockpit",
4
+ label: "Cockpit",
5
+ screenKey: "cockpit",
6
+ shortcut: "1",
7
+ children: [
8
+ {
9
+ key: "project-overview",
10
+ label: "Project Overview",
11
+ children: [
12
+ { key: "name", label: "Name" },
13
+ { key: "purpose", label: "Purpose" },
14
+ { key: "audiences", label: "Audiences" },
15
+ ],
16
+ },
17
+ {
18
+ key: "goal-summary",
19
+ label: "Goal Summary",
20
+ children: [
21
+ { key: "in-progress", label: "In Progress" },
22
+ { key: "blocked", label: "Blocked" },
23
+ { key: "completed", label: "Completed" },
24
+ ],
25
+ },
26
+ {
27
+ key: "recent-events",
28
+ label: "Recent Events",
29
+ children: [
30
+ { key: "decisions", label: "Decisions" },
31
+ { key: "components", label: "Components" },
32
+ { key: "sessions", label: "Sessions" },
33
+ ],
34
+ },
35
+ ],
36
+ },
37
+ {
38
+ key: "goals",
39
+ label: "Goals",
40
+ screenKey: "goals",
41
+ shortcut: "2",
42
+ children: [
43
+ {
44
+ key: "backlog",
45
+ label: "Backlog",
46
+ children: [
47
+ { key: "defined", label: "Defined" },
48
+ { key: "refined", label: "Refined" },
49
+ { key: "ready", label: "Ready" },
50
+ ],
51
+ },
52
+ {
53
+ key: "active",
54
+ label: "Active",
55
+ children: [
56
+ { key: "in-progress", label: "In Progress" },
57
+ { key: "blocked", label: "Blocked" },
58
+ { key: "in-review", label: "In Review" },
59
+ ],
60
+ },
61
+ {
62
+ key: "archive",
63
+ label: "Archive",
64
+ children: [
65
+ { key: "completed", label: "Completed" },
66
+ { key: "removed", label: "Removed" },
67
+ ],
68
+ },
69
+ ],
70
+ },
71
+ {
72
+ key: "memory",
73
+ label: "Memory",
74
+ shortcut: "3",
75
+ children: [
76
+ {
77
+ key: "decisions",
78
+ label: "Decisions",
79
+ screenKey: "decisions",
80
+ children: [
81
+ { key: "active", label: "Active" },
82
+ { key: "superseded", label: "Superseded" },
83
+ { key: "reversed", label: "Reversed" },
84
+ ],
85
+ },
86
+ {
87
+ key: "invariants",
88
+ label: "Invariants",
89
+ screenKey: "invariants",
90
+ children: [
91
+ { key: "architecture", label: "Architecture" },
92
+ { key: "process", label: "Process" },
93
+ { key: "testing", label: "Testing" },
94
+ ],
95
+ },
96
+ {
97
+ key: "components",
98
+ label: "Components",
99
+ screenKey: "components",
100
+ children: [
101
+ { key: "services", label: "Services" },
102
+ { key: "ui", label: "UI" },
103
+ { key: "libraries", label: "Libraries" },
104
+ ],
105
+ },
106
+ {
107
+ key: "dependencies",
108
+ label: "Dependencies",
109
+ screenKey: "dependencies",
110
+ children: [
111
+ { key: "runtime", label: "Runtime" },
112
+ { key: "dev", label: "Dev" },
113
+ ],
114
+ },
115
+ {
116
+ key: "guidelines",
117
+ label: "Guidelines",
118
+ screenKey: "guidelines",
119
+ children: [
120
+ { key: "coding-style", label: "Coding Style" },
121
+ { key: "testing", label: "Testing" },
122
+ { key: "process", label: "Process" },
123
+ ],
124
+ },
125
+ ],
126
+ },
127
+ {
128
+ key: "session",
129
+ label: "Session",
130
+ screenKey: "session",
131
+ shortcut: "4",
132
+ children: [
133
+ {
134
+ key: "current",
135
+ label: "Current",
136
+ children: [
137
+ { key: "focus", label: "Focus" },
138
+ { key: "commands", label: "Commands" },
139
+ { key: "progress", label: "Progress" },
140
+ ],
141
+ },
142
+ {
143
+ key: "history",
144
+ label: "History",
145
+ children: [
146
+ { key: "recent", label: "Recent" },
147
+ { key: "all", label: "All" },
148
+ ],
149
+ },
150
+ {
151
+ key: "notifications",
152
+ label: "Notifications",
153
+ children: [
154
+ { key: "unread", label: "Unread" },
155
+ { key: "dismissed", label: "Dismissed" },
156
+ ],
157
+ },
158
+ ],
159
+ },
160
+ ];
161
+ export const MAX_MENU_DEPTH = 3;
162
+ //# sourceMappingURL=MegaMenuDefinitions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MegaMenuDefinitions.js","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/MegaMenuDefinitions.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,36 @@
1
+ export declare const SCREEN_DEFINITIONS: readonly [{
2
+ readonly key: "cockpit";
3
+ readonly label: "Cockpit";
4
+ readonly shortcut: "1";
5
+ }, {
6
+ readonly key: "goals";
7
+ readonly label: "Goals";
8
+ readonly shortcut: "2";
9
+ }, {
10
+ readonly key: "decisions";
11
+ readonly label: "Decisions";
12
+ readonly shortcut: "3";
13
+ }, {
14
+ readonly key: "invariants";
15
+ readonly label: "Invariants";
16
+ readonly shortcut: "4";
17
+ }, {
18
+ readonly key: "components";
19
+ readonly label: "Components";
20
+ readonly shortcut: "5";
21
+ }, {
22
+ readonly key: "dependencies";
23
+ readonly label: "Dependencies";
24
+ readonly shortcut: "6";
25
+ }, {
26
+ readonly key: "guidelines";
27
+ readonly label: "Guidelines";
28
+ readonly shortcut: "7";
29
+ }, {
30
+ readonly key: "session";
31
+ readonly label: "Session";
32
+ readonly shortcut: "8";
33
+ }];
34
+ export type ScreenKey = (typeof SCREEN_DEFINITIONS)[number]["key"];
35
+ export declare const DEFAULT_SCREEN_INDEX = 0;
36
+ //# sourceMappingURL=ScreenDefinitions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScreenDefinitions.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/ScreenDefinitions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASrB,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,CAAC;AAEnE,eAAO,MAAM,oBAAoB,IAAI,CAAC"}
@@ -0,0 +1,12 @@
1
+ export const SCREEN_DEFINITIONS = [
2
+ { key: "cockpit", label: "Cockpit", shortcut: "1" },
3
+ { key: "goals", label: "Goals", shortcut: "2" },
4
+ { key: "decisions", label: "Decisions", shortcut: "3" },
5
+ { key: "invariants", label: "Invariants", shortcut: "4" },
6
+ { key: "components", label: "Components", shortcut: "5" },
7
+ { key: "dependencies", label: "Dependencies", shortcut: "6" },
8
+ { key: "guidelines", label: "Guidelines", shortcut: "7" },
9
+ { key: "session", label: "Session", shortcut: "8" },
10
+ ];
11
+ export const DEFAULT_SCREEN_INDEX = 0;
12
+ //# sourceMappingURL=ScreenDefinitions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScreenDefinitions.js","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/ScreenDefinitions.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,EAAE,GAAG,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,EAAE;IACnD,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE;IAC/C,EAAE,GAAG,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,GAAG,EAAE;IACvD,EAAE,GAAG,EAAE,YAAY,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,GAAG,EAAE;IACzD,EAAE,GAAG,EAAE,YAAY,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,GAAG,EAAE;IACzD,EAAE,GAAG,EAAE,cAAc,EAAE,KAAK,EAAE,cAAc,EAAE,QAAQ,EAAE,GAAG,EAAE;IAC7D,EAAE,GAAG,EAAE,YAAY,EAAE,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,GAAG,EAAE;IACzD,EAAE,GAAG,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,EAAE;CAC3C,CAAC;AAIX,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC"}
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import type { ProjectLifecycleState } from "../../../application/context/project/ProjectLifecycleState.js";
3
+ import type { ISettingsReader } from "../../../application/settings/ISettingsReader.js";
4
+ interface ScreenRouterProps {
5
+ activeScreenIndex: number;
6
+ projectLifecycleState?: ProjectLifecycleState;
7
+ shortcutsEnabled?: boolean;
8
+ terminalWidth?: number;
9
+ terminalHeight?: number;
10
+ launchAnimationEnabled?: boolean;
11
+ bannerAnimationComplete?: boolean;
12
+ billboardAnimationComplete?: boolean;
13
+ onBannerAnimationComplete?: () => void;
14
+ onBillboardAnimationComplete?: () => void;
15
+ settingsReader?: Pick<ISettingsReader, "read" | "write">;
16
+ }
17
+ export declare function ScreenRouter({ activeScreenIndex, projectLifecycleState, shortcutsEnabled, terminalWidth, terminalHeight, launchAnimationEnabled, bannerAnimationComplete, billboardAnimationComplete, onBannerAnimationComplete, onBillboardAnimationComplete, settingsReader, }: ScreenRouterProps): React.ReactElement;
18
+ export {};
19
+ //# sourceMappingURL=ScreenRouter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScreenRouter.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/ScreenRouter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,+DAA+D,CAAC;AAC3G,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kDAAkD,CAAC;AAExF,UAAU,iBAAiB;IACzB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,qBAAqB,CAAC,EAAE,qBAAqB,CAAC;IAC9C,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,yBAAyB,CAAC,EAAE,MAAM,IAAI,CAAC;IACvC,4BAA4B,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1C,cAAc,CAAC,EAAE,IAAI,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC;CAC1D;AAgBD,wBAAgB,YAAY,CAAC,EAC3B,iBAAiB,EACjB,qBAAqB,EACrB,gBAAuB,EACvB,aAAa,EACb,cAAc,EACd,sBAA6B,EAC7B,uBAAuB,EACvB,0BAA0B,EAC1B,yBAAyB,EACzB,4BAA4B,EAC5B,cAAc,GACf,EAAE,iBAAiB,GAAG,KAAK,CAAC,YAAY,CAwBxC"}
@@ -0,0 +1,31 @@
1
+ import React from "react";
2
+ import { SCREEN_DEFINITIONS } from "./ScreenDefinitions.js";
3
+ import { CockpitScreen } from "../cockpit/CockpitScreen.js";
4
+ import { ComponentsScreen } from "../memory/components/ComponentsScreen.js";
5
+ import { DecisionsScreen } from "../memory/decisions/DecisionsScreen.js";
6
+ import { DependenciesScreen } from "../memory/dependencies/DependenciesScreen.js";
7
+ import { GoalsScreen } from "../goals/GoalsScreen.js";
8
+ import { GuidelinesScreen } from "../memory/guidelines/GuidelinesScreen.js";
9
+ import { InvariantsScreen } from "../memory/invariants/InvariantsScreen.js";
10
+ import { SessionScreen } from "../sessions/SessionScreen.js";
11
+ const SCREEN_COMPONENTS = {
12
+ cockpit: CockpitScreen,
13
+ components: ComponentsScreen,
14
+ decisions: DecisionsScreen,
15
+ dependencies: DependenciesScreen,
16
+ goals: GoalsScreen,
17
+ guidelines: GuidelinesScreen,
18
+ invariants: InvariantsScreen,
19
+ session: SessionScreen,
20
+ };
21
+ export function ScreenRouter({ activeScreenIndex, projectLifecycleState, shortcutsEnabled = true, terminalWidth, terminalHeight, launchAnimationEnabled = true, bannerAnimationComplete, billboardAnimationComplete, onBannerAnimationComplete, onBillboardAnimationComplete, settingsReader, }) {
22
+ const definition = SCREEN_DEFINITIONS[activeScreenIndex];
23
+ const ScreenComponent = definition
24
+ ? SCREEN_COMPONENTS[definition.key]
25
+ : SCREEN_COMPONENTS.cockpit;
26
+ if ((definition?.key ?? "cockpit") === "cockpit") {
27
+ return (React.createElement(CockpitScreen, { state: projectLifecycleState, shortcutsEnabled: shortcutsEnabled, terminalWidth: terminalWidth, terminalHeight: terminalHeight, launchAnimationEnabled: launchAnimationEnabled, bannerAnimationComplete: bannerAnimationComplete, billboardAnimationComplete: billboardAnimationComplete, onBannerAnimationComplete: onBannerAnimationComplete, onBillboardAnimationComplete: onBillboardAnimationComplete, settingsReader: settingsReader }));
28
+ }
29
+ return React.createElement(ScreenComponent, null);
30
+ }
31
+ //# sourceMappingURL=ScreenRouter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScreenRouter.js","sourceRoot":"","sources":["../../../../src/presentation/tui/navigation/ScreenRouter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC5E,OAAO,EAAE,eAAe,EAAE,MAAM,wCAAwC,CAAC;AACzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,8CAA8C,CAAC;AAClF,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC5E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAkB7D,MAAM,iBAAiB,GAGnB;IACF,OAAO,EAAE,aAAa;IACtB,UAAU,EAAE,gBAAgB;IAC5B,SAAS,EAAE,eAAe;IAC1B,YAAY,EAAE,kBAAkB;IAChC,KAAK,EAAE,WAAW;IAClB,UAAU,EAAE,gBAAgB;IAC5B,UAAU,EAAE,gBAAgB;IAC5B,OAAO,EAAE,aAAa;CACvB,CAAC;AAEF,MAAM,UAAU,YAAY,CAAC,EAC3B,iBAAiB,EACjB,qBAAqB,EACrB,gBAAgB,GAAG,IAAI,EACvB,aAAa,EACb,cAAc,EACd,sBAAsB,GAAG,IAAI,EAC7B,uBAAuB,EACvB,0BAA0B,EAC1B,yBAAyB,EACzB,4BAA4B,EAC5B,cAAc,GACI;IAClB,MAAM,UAAU,GAAG,kBAAkB,CAAC,iBAAiB,CAAC,CAAC;IACzD,MAAM,eAAe,GAAG,UAAU;QAChC,CAAC,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC;QACnC,CAAC,CAAC,iBAAiB,CAAC,OAAO,CAAC;IAE9B,IAAI,CAAC,UAAU,EAAE,GAAG,IAAI,SAAS,CAAC,KAAK,SAAS,EAAE,CAAC;QACjD,OAAO,CACL,oBAAC,aAAa,IACZ,KAAK,EAAE,qBAAqB,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,aAAa,EAAE,aAAa,EAC5B,cAAc,EAAE,cAAc,EAC9B,sBAAsB,EAAE,sBAAsB,EAC9C,uBAAuB,EAAE,uBAAuB,EAChD,0BAA0B,EAAE,0BAA0B,EACtD,yBAAyB,EAAE,yBAAyB,EACpD,4BAA4B,EAAE,4BAA4B,EAC1D,cAAc,EAAE,cAAc,GAC9B,CACH,CAAC;IACJ,CAAC;IAED,OAAO,oBAAC,eAAe,OAAG,CAAC;AAC7B,CAAC"}