jumbo-cli 3.1.0 → 3.3.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 (867) hide show
  1. package/README.md +3 -3
  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 +177 -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 +163 -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 +174 -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/get/SessionContext.d.ts +2 -2
  181. package/dist/application/context/sessions/get/SessionContextQueryHandler.d.ts +1 -1
  182. package/dist/application/context/sessions/get/SessionContextQueryHandler.d.ts.map +1 -1
  183. package/dist/application/context/sessions/get/SessionContextQueryHandler.js +3 -1
  184. package/dist/application/context/sessions/get/SessionContextQueryHandler.js.map +1 -1
  185. package/dist/application/context/sessions/start/LocalStartSessionGateway.d.ts +2 -7
  186. package/dist/application/context/sessions/start/LocalStartSessionGateway.d.ts.map +1 -1
  187. package/dist/application/context/sessions/start/LocalStartSessionGateway.js +4 -35
  188. package/dist/application/context/sessions/start/LocalStartSessionGateway.js.map +1 -1
  189. package/dist/application/context/sessions/start/SessionStartResponse.d.ts +4 -4
  190. package/dist/application/context/sessions/start/SessionStartResponse.d.ts.map +1 -1
  191. package/dist/application/daemons/IProcessManager.d.ts +28 -0
  192. package/dist/application/daemons/IProcessManager.d.ts.map +1 -0
  193. package/dist/application/daemons/IProcessManager.js +2 -0
  194. package/dist/application/daemons/IProcessManager.js.map +1 -0
  195. package/dist/application/daemons/IShutdownSignal.d.ts +5 -0
  196. package/dist/application/daemons/IShutdownSignal.d.ts.map +1 -0
  197. package/dist/application/daemons/IShutdownSignal.js +2 -0
  198. package/dist/application/daemons/IShutdownSignal.js.map +1 -0
  199. package/dist/application/daemons/ITicker.d.ts +4 -0
  200. package/dist/application/daemons/ITicker.d.ts.map +1 -0
  201. package/dist/application/daemons/ITicker.js +2 -0
  202. package/dist/application/daemons/ITicker.js.map +1 -0
  203. package/dist/application/daemons/IWorkerDaemonProcessController.d.ts +30 -0
  204. package/dist/application/daemons/IWorkerDaemonProcessController.d.ts.map +1 -0
  205. package/dist/application/daemons/IWorkerDaemonProcessController.js +2 -0
  206. package/dist/application/daemons/IWorkerDaemonProcessController.js.map +1 -0
  207. package/dist/application/daemons/PollingLoop.d.ts +13 -0
  208. package/dist/application/daemons/PollingLoop.d.ts.map +1 -0
  209. package/dist/application/daemons/PollingLoop.js +15 -0
  210. package/dist/application/daemons/PollingLoop.js.map +1 -0
  211. package/dist/application/daemons/WorkerDaemonCatalog.d.ts +11 -0
  212. package/dist/application/daemons/WorkerDaemonCatalog.d.ts.map +1 -0
  213. package/dist/application/daemons/WorkerDaemonCatalog.js +12 -0
  214. package/dist/application/daemons/WorkerDaemonCatalog.js.map +1 -0
  215. package/dist/application/host/IApplicationContainer.d.ts +6 -0
  216. package/dist/application/host/IApplicationContainer.d.ts.map +1 -1
  217. package/dist/application/settings/Settings.d.ts +11 -0
  218. package/dist/application/settings/Settings.d.ts.map +1 -1
  219. package/dist/cli.js +68 -5
  220. package/dist/cli.js.map +1 -1
  221. package/dist/domain/architecture/define/ArchitectureDefinedEvent.d.ts +2 -1
  222. package/dist/domain/architecture/define/ArchitectureDefinedEvent.d.ts.map +1 -1
  223. package/dist/domain/architecture/update/ArchitectureUpdatedEvent.d.ts +2 -1
  224. package/dist/domain/architecture/update/ArchitectureUpdatedEvent.d.ts.map +1 -1
  225. package/dist/domain/audience-pains/add/AudiencePainAddedEvent.d.ts +2 -1
  226. package/dist/domain/audience-pains/add/AudiencePainAddedEvent.d.ts.map +1 -1
  227. package/dist/domain/audience-pains/update/AudiencePainUpdatedEvent.d.ts +2 -1
  228. package/dist/domain/audience-pains/update/AudiencePainUpdatedEvent.d.ts.map +1 -1
  229. package/dist/domain/audiences/add/AudienceAddedEvent.d.ts +2 -2
  230. package/dist/domain/audiences/add/AudienceAddedEvent.d.ts.map +1 -1
  231. package/dist/domain/audiences/remove/AudienceRemovedEvent.d.ts +2 -1
  232. package/dist/domain/audiences/remove/AudienceRemovedEvent.d.ts.map +1 -1
  233. package/dist/domain/audiences/update/AudienceUpdatedEvent.d.ts +2 -2
  234. package/dist/domain/audiences/update/AudienceUpdatedEvent.d.ts.map +1 -1
  235. package/dist/domain/components/add/ComponentAddedEvent.d.ts +2 -2
  236. package/dist/domain/components/add/ComponentAddedEvent.d.ts.map +1 -1
  237. package/dist/domain/components/deprecate/ComponentDeprecatedEvent.d.ts +2 -2
  238. package/dist/domain/components/deprecate/ComponentDeprecatedEvent.d.ts.map +1 -1
  239. package/dist/domain/components/remove/ComponentRemovedEvent.d.ts +2 -2
  240. package/dist/domain/components/remove/ComponentRemovedEvent.d.ts.map +1 -1
  241. package/dist/domain/components/update/ComponentUpdatedEvent.d.ts +2 -2
  242. package/dist/domain/components/update/ComponentUpdatedEvent.d.ts.map +1 -1
  243. package/dist/domain/goals/unblock/GoalUnblockedEvent.d.ts +2 -2
  244. package/dist/domain/goals/unblock/GoalUnblockedEvent.d.ts.map +1 -1
  245. package/dist/domain/guidelines/add/GuidelineAddedEvent.d.ts +2 -2
  246. package/dist/domain/guidelines/add/GuidelineAddedEvent.d.ts.map +1 -1
  247. package/dist/domain/guidelines/remove/GuidelineRemovedEvent.d.ts +2 -1
  248. package/dist/domain/guidelines/remove/GuidelineRemovedEvent.d.ts.map +1 -1
  249. package/dist/domain/guidelines/update/GuidelineUpdatedEvent.d.ts +2 -2
  250. package/dist/domain/guidelines/update/GuidelineUpdatedEvent.d.ts.map +1 -1
  251. package/dist/domain/invariants/add/InvariantAddedEvent.d.ts +2 -1
  252. package/dist/domain/invariants/add/InvariantAddedEvent.d.ts.map +1 -1
  253. package/dist/domain/invariants/remove/InvariantRemovedEvent.d.ts +2 -1
  254. package/dist/domain/invariants/remove/InvariantRemovedEvent.d.ts.map +1 -1
  255. package/dist/domain/invariants/update/InvariantUpdatedEvent.d.ts +2 -1
  256. package/dist/domain/invariants/update/InvariantUpdatedEvent.d.ts.map +1 -1
  257. package/dist/domain/project/Constants.d.ts +7 -0
  258. package/dist/domain/project/Constants.d.ts.map +1 -1
  259. package/dist/domain/project/Constants.js +7 -0
  260. package/dist/domain/project/Constants.js.map +1 -1
  261. package/dist/domain/project/JumboMdContent.js +1 -1
  262. package/dist/domain/project/ProjectLifecyle.d.ts +7 -0
  263. package/dist/domain/project/ProjectLifecyle.d.ts.map +1 -0
  264. package/dist/domain/project/ProjectLifecyle.js +8 -0
  265. package/dist/domain/project/ProjectLifecyle.js.map +1 -0
  266. package/dist/domain/relations/Constants.d.ts +6 -0
  267. package/dist/domain/relations/Constants.d.ts.map +1 -1
  268. package/dist/domain/relations/Constants.js +6 -0
  269. package/dist/domain/relations/Constants.js.map +1 -1
  270. package/dist/domain/relations/Relation.d.ts +2 -2
  271. package/dist/domain/relations/Relation.d.ts.map +1 -1
  272. package/dist/domain/relations/Relation.js +10 -10
  273. package/dist/domain/relations/Relation.js.map +1 -1
  274. package/dist/domain/relations/add/RelationAddedEvent.d.ts +2 -2
  275. package/dist/domain/relations/add/RelationAddedEvent.d.ts.map +1 -1
  276. package/dist/domain/relations/remove/RelationRemovedEvent.d.ts +2 -2
  277. package/dist/domain/relations/remove/RelationRemovedEvent.d.ts.map +1 -1
  278. package/dist/domain/value-propositions/add/ValuePropositionAddedEvent.d.ts +2 -1
  279. package/dist/domain/value-propositions/add/ValuePropositionAddedEvent.d.ts.map +1 -1
  280. package/dist/domain/value-propositions/remove/ValuePropositionRemovedEvent.d.ts +2 -1
  281. package/dist/domain/value-propositions/remove/ValuePropositionRemovedEvent.d.ts.map +1 -1
  282. package/dist/domain/value-propositions/update/ValuePropositionUpdatedEvent.d.ts +2 -1
  283. package/dist/domain/value-propositions/update/ValuePropositionUpdatedEvent.d.ts.map +1 -1
  284. package/dist/infrastructure/agents/AgentCliGateway.d.ts +15 -0
  285. package/dist/infrastructure/agents/AgentCliGateway.d.ts.map +1 -0
  286. package/dist/infrastructure/agents/AgentCliGateway.js +102 -0
  287. package/dist/infrastructure/agents/AgentCliGateway.js.map +1 -0
  288. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.d.ts +8 -0
  289. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.d.ts.map +1 -1
  290. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.js +45 -0
  291. package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.js.map +1 -1
  292. package/dist/infrastructure/context/decisions/migrations/002-add-decision-search-indexes.sql +11 -0
  293. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.d.ts +3 -0
  294. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.d.ts.map +1 -1
  295. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.js +57 -0
  296. package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.js.map +1 -1
  297. package/dist/infrastructure/context/dependencies/migrations/003-add-dependency-search-indexes.sql +12 -0
  298. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.d.ts +8 -0
  299. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.d.ts.map +1 -1
  300. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.js +31 -0
  301. package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.js.map +1 -1
  302. package/dist/infrastructure/context/guidelines/migrations/003-add-guideline-search-indexes.sql +17 -0
  303. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.d.ts +8 -0
  304. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.d.ts.map +1 -1
  305. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.js +31 -0
  306. package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.js.map +1 -1
  307. package/dist/infrastructure/context/invariants/migrations/003-add-invariant-search-indexes.sql +6 -0
  308. package/dist/infrastructure/context/project/init/CodexConfigurer.d.ts +19 -6
  309. package/dist/infrastructure/context/project/init/CodexConfigurer.d.ts.map +1 -1
  310. package/dist/infrastructure/context/project/init/CodexConfigurer.js +177 -9
  311. package/dist/infrastructure/context/project/init/CodexConfigurer.js.map +1 -1
  312. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.d.ts +5 -0
  313. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.d.ts.map +1 -1
  314. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.js +34 -2
  315. package/dist/infrastructure/context/project/query/SqliteProjectContextReader.js.map +1 -1
  316. package/dist/infrastructure/daemons/IntervalTicker.d.ts +7 -0
  317. package/dist/infrastructure/daemons/IntervalTicker.d.ts.map +1 -0
  318. package/dist/infrastructure/daemons/IntervalTicker.js +11 -0
  319. package/dist/infrastructure/daemons/IntervalTicker.js.map +1 -0
  320. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.d.ts +12 -0
  321. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.d.ts.map +1 -0
  322. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.js +56 -0
  323. package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.js.map +1 -0
  324. package/dist/infrastructure/daemons/ProcessSignalSource.d.ts +10 -0
  325. package/dist/infrastructure/daemons/ProcessSignalSource.d.ts.map +1 -0
  326. package/dist/infrastructure/daemons/ProcessSignalSource.js +24 -0
  327. package/dist/infrastructure/daemons/ProcessSignalSource.js.map +1 -0
  328. package/dist/infrastructure/host/HostBuilder.d.ts.map +1 -1
  329. package/dist/infrastructure/host/HostBuilder.js +16 -1
  330. package/dist/infrastructure/host/HostBuilder.js.map +1 -1
  331. package/dist/infrastructure/logging/FileLogger.js +1 -1
  332. package/dist/infrastructure/settings/DefaultSettings.d.ts.map +1 -1
  333. package/dist/infrastructure/settings/DefaultSettings.js +3 -0
  334. package/dist/infrastructure/settings/DefaultSettings.js.map +1 -1
  335. package/dist/infrastructure/settings/FsSettingsInitializer.d.ts.map +1 -1
  336. package/dist/infrastructure/settings/FsSettingsInitializer.js +6 -0
  337. package/dist/infrastructure/settings/FsSettingsInitializer.js.map +1 -1
  338. package/dist/infrastructure/settings/FsSettingsReader.d.ts.map +1 -1
  339. package/dist/infrastructure/settings/FsSettingsReader.js +10 -0
  340. package/dist/infrastructure/settings/FsSettingsReader.js.map +1 -1
  341. package/dist/presentation/cli/AppRunner.d.ts +7 -1
  342. package/dist/presentation/cli/AppRunner.d.ts.map +1 -1
  343. package/dist/presentation/cli/AppRunner.js +10 -5
  344. package/dist/presentation/cli/AppRunner.js.map +1 -1
  345. package/dist/presentation/cli/CliBootstrapPlan.d.ts +12 -0
  346. package/dist/presentation/cli/CliBootstrapPlan.d.ts.map +1 -0
  347. package/dist/presentation/cli/CliBootstrapPlan.js +23 -0
  348. package/dist/presentation/cli/CliBootstrapPlan.js.map +1 -0
  349. package/dist/presentation/cli/banner/AnimationFrames.d.ts +6 -1
  350. package/dist/presentation/cli/banner/AnimationFrames.d.ts.map +1 -1
  351. package/dist/presentation/cli/banner/AnimationFrames.js +307 -288
  352. package/dist/presentation/cli/banner/AnimationFrames.js.map +1 -1
  353. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.d.ts +17 -0
  354. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.d.ts.map +1 -0
  355. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.js +90 -0
  356. package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.js.map +1 -0
  357. package/dist/presentation/cli/commands/decisions/search/decisions.search.d.ts +22 -0
  358. package/dist/presentation/cli/commands/decisions/search/decisions.search.d.ts.map +1 -0
  359. package/dist/presentation/cli/commands/decisions/search/decisions.search.js +93 -0
  360. package/dist/presentation/cli/commands/decisions/search/decisions.search.js.map +1 -0
  361. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.d.ts +16 -0
  362. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.d.ts.map +1 -0
  363. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.js +85 -0
  364. package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.js.map +1 -0
  365. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.d.ts +21 -0
  366. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.d.ts.map +1 -0
  367. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.js +111 -0
  368. package/dist/presentation/cli/commands/dependencies/search/dependencies.search.js.map +1 -0
  369. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.d.ts +22 -0
  370. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.d.ts.map +1 -0
  371. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.js +86 -0
  372. package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.js.map +1 -0
  373. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.d.ts +21 -0
  374. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.d.ts.map +1 -0
  375. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.js +92 -0
  376. package/dist/presentation/cli/commands/guidelines/search/guidelines.search.js.map +1 -0
  377. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.d.ts +22 -0
  378. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.d.ts.map +1 -0
  379. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.js +79 -0
  380. package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.js.map +1 -0
  381. package/dist/presentation/cli/commands/invariants/search/invariants.search.d.ts +20 -0
  382. package/dist/presentation/cli/commands/invariants/search/invariants.search.d.ts.map +1 -0
  383. package/dist/presentation/cli/commands/invariants/search/invariants.search.js +80 -0
  384. package/dist/presentation/cli/commands/invariants/search/invariants.search.js.map +1 -0
  385. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.d.ts +14 -0
  386. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.d.ts.map +1 -0
  387. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.js +84 -0
  388. package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.js.map +1 -0
  389. package/dist/presentation/cli/commands/project/show/project.show.d.ts +12 -0
  390. package/dist/presentation/cli/commands/project/show/project.show.d.ts.map +1 -0
  391. package/dist/presentation/cli/commands/project/show/project.show.js +59 -0
  392. package/dist/presentation/cli/commands/project/show/project.show.js.map +1 -0
  393. package/dist/presentation/cli/commands/registry/generated-commands.d.ts.map +1 -1
  394. package/dist/presentation/cli/commands/registry/generated-commands.js +30 -0
  395. package/dist/presentation/cli/commands/registry/generated-commands.js.map +1 -1
  396. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.d.ts +1 -1
  397. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.d.ts.map +1 -1
  398. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.js +3 -2
  399. package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.js.map +1 -1
  400. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.d.ts +8 -9
  401. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.d.ts.map +1 -1
  402. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.js +107 -42
  403. package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.js.map +1 -1
  404. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.d.ts +3 -2
  405. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.d.ts.map +1 -1
  406. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.js +24 -10
  407. package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.js.map +1 -1
  408. package/dist/presentation/cli/commands/sessions/start/session.start.d.ts.map +1 -1
  409. package/dist/presentation/cli/commands/sessions/start/session.start.js +2 -5
  410. package/dist/presentation/cli/commands/sessions/start/session.start.js.map +1 -1
  411. package/dist/presentation/cli/commands/work/shared/AgentSpawner.d.ts +7 -4
  412. package/dist/presentation/cli/commands/work/shared/AgentSpawner.d.ts.map +1 -1
  413. package/dist/presentation/cli/commands/work/shared/AgentSpawner.js +11 -4
  414. package/dist/presentation/cli/commands/work/shared/AgentSpawner.js.map +1 -1
  415. package/dist/presentation/shared/DesignTokens.d.ts +94 -0
  416. package/dist/presentation/shared/DesignTokens.d.ts.map +1 -0
  417. package/dist/presentation/shared/DesignTokens.js +94 -0
  418. package/dist/presentation/shared/DesignTokens.js.map +1 -0
  419. package/dist/presentation/tui/Constants.d.ts +18 -0
  420. package/dist/presentation/tui/Constants.d.ts.map +1 -0
  421. package/dist/presentation/tui/Constants.js +28 -0
  422. package/dist/presentation/tui/Constants.js.map +1 -0
  423. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.d.ts +6 -0
  424. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.d.ts.map +1 -0
  425. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.js +18 -0
  426. package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.js.map +1 -0
  427. package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.d.ts +4 -0
  428. package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.d.ts.map +1 -0
  429. package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.js +9 -0
  430. package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.js.map +1 -0
  431. package/dist/presentation/tui/action-dispatch/TuiActionResult.d.ts +8 -0
  432. package/dist/presentation/tui/action-dispatch/TuiActionResult.d.ts.map +1 -0
  433. package/dist/presentation/tui/action-dispatch/TuiActionResult.js +2 -0
  434. package/dist/presentation/tui/action-dispatch/TuiActionResult.js.map +1 -0
  435. package/dist/presentation/tui/action-dispatch/TuiRequestController.d.ts +4 -0
  436. package/dist/presentation/tui/action-dispatch/TuiRequestController.d.ts.map +1 -0
  437. package/dist/presentation/tui/action-dispatch/TuiRequestController.js +2 -0
  438. package/dist/presentation/tui/action-dispatch/TuiRequestController.js.map +1 -0
  439. package/dist/presentation/tui/application-shell/Footer.d.ts +12 -0
  440. package/dist/presentation/tui/application-shell/Footer.d.ts.map +1 -0
  441. package/dist/presentation/tui/application-shell/Footer.js +41 -0
  442. package/dist/presentation/tui/application-shell/Footer.js.map +1 -0
  443. package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.d.ts +16 -0
  444. package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.d.ts.map +1 -0
  445. package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.js +10 -0
  446. package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.js.map +1 -0
  447. package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.d.ts +3 -0
  448. package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.d.ts.map +1 -0
  449. package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.js +4 -0
  450. package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.js.map +1 -0
  451. package/dist/presentation/tui/application-shell/Header.d.ts +10 -0
  452. package/dist/presentation/tui/application-shell/Header.d.ts.map +1 -0
  453. package/dist/presentation/tui/application-shell/Header.js +45 -0
  454. package/dist/presentation/tui/application-shell/Header.js.map +1 -0
  455. package/dist/presentation/tui/application-shell/HeaderConstants.d.ts +6 -0
  456. package/dist/presentation/tui/application-shell/HeaderConstants.d.ts.map +1 -0
  457. package/dist/presentation/tui/application-shell/HeaderConstants.js +6 -0
  458. package/dist/presentation/tui/application-shell/HeaderConstants.js.map +1 -0
  459. package/dist/presentation/tui/application-shell/NotificationDrawer.d.ts +16 -0
  460. package/dist/presentation/tui/application-shell/NotificationDrawer.d.ts.map +1 -0
  461. package/dist/presentation/tui/application-shell/NotificationDrawer.js +56 -0
  462. package/dist/presentation/tui/application-shell/NotificationDrawer.js.map +1 -0
  463. package/dist/presentation/tui/application-shell/TuiApp.d.ts +25 -0
  464. package/dist/presentation/tui/application-shell/TuiApp.d.ts.map +1 -0
  465. package/dist/presentation/tui/application-shell/TuiApp.js +233 -0
  466. package/dist/presentation/tui/application-shell/TuiApp.js.map +1 -0
  467. package/dist/presentation/tui/application-shell/TuiAppConstants.d.ts +18 -0
  468. package/dist/presentation/tui/application-shell/TuiAppConstants.d.ts.map +1 -0
  469. package/dist/presentation/tui/application-shell/TuiAppConstants.js +18 -0
  470. package/dist/presentation/tui/application-shell/TuiAppConstants.js.map +1 -0
  471. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.d.ts +19 -0
  472. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.d.ts.map +1 -0
  473. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.js +46 -0
  474. package/dist/presentation/tui/application-shell/TuiApplicationLauncher.js.map +1 -0
  475. package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.d.ts +6 -0
  476. package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.d.ts.map +1 -0
  477. package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.js +9 -0
  478. package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.js.map +1 -0
  479. package/dist/presentation/tui/billboard/AnimatedBillboard.d.ts +11 -0
  480. package/dist/presentation/tui/billboard/AnimatedBillboard.d.ts.map +1 -0
  481. package/dist/presentation/tui/billboard/AnimatedBillboard.js +332 -0
  482. package/dist/presentation/tui/billboard/AnimatedBillboard.js.map +1 -0
  483. package/dist/presentation/tui/billboard/AnimatedBillboardPalette.d.ts +31 -0
  484. package/dist/presentation/tui/billboard/AnimatedBillboardPalette.d.ts.map +1 -0
  485. package/dist/presentation/tui/billboard/AnimatedBillboardPalette.js +54 -0
  486. package/dist/presentation/tui/billboard/AnimatedBillboardPalette.js.map +1 -0
  487. package/dist/presentation/tui/billboard/AnimatedBillboardPhase.d.ts +8 -0
  488. package/dist/presentation/tui/billboard/AnimatedBillboardPhase.d.ts.map +1 -0
  489. package/dist/presentation/tui/billboard/AnimatedBillboardPhase.js +7 -0
  490. package/dist/presentation/tui/billboard/AnimatedBillboardPhase.js.map +1 -0
  491. package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.d.ts +2 -0
  492. package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.d.ts.map +1 -0
  493. package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.js +17 -0
  494. package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.js.map +1 -0
  495. package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.d.ts +2 -0
  496. package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.d.ts.map +1 -0
  497. package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.js +10 -0
  498. package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.js.map +1 -0
  499. package/dist/presentation/tui/cockpit/AnimatedBanner.d.ts +13 -0
  500. package/dist/presentation/tui/cockpit/AnimatedBanner.d.ts.map +1 -0
  501. package/dist/presentation/tui/cockpit/AnimatedBanner.js +193 -0
  502. package/dist/presentation/tui/cockpit/AnimatedBanner.js.map +1 -0
  503. package/dist/presentation/tui/cockpit/CenteredPrompt.d.ts +10 -0
  504. package/dist/presentation/tui/cockpit/CenteredPrompt.d.ts.map +1 -0
  505. package/dist/presentation/tui/cockpit/CenteredPrompt.js +14 -0
  506. package/dist/presentation/tui/cockpit/CenteredPrompt.js.map +1 -0
  507. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.d.ts +7 -0
  508. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.d.ts.map +1 -0
  509. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.js +32 -0
  510. package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.js.map +1 -0
  511. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.d.ts +14 -0
  512. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.d.ts.map +1 -0
  513. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.js +154 -0
  514. package/dist/presentation/tui/cockpit/CockpitDaemonEvents.js.map +1 -0
  515. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.d.ts +39 -0
  516. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.d.ts.map +1 -0
  517. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.js +186 -0
  518. package/dist/presentation/tui/cockpit/CockpitDaemonFrames.js.map +1 -0
  519. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.d.ts +16 -0
  520. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.d.ts.map +1 -0
  521. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.js +53 -0
  522. package/dist/presentation/tui/cockpit/CockpitDaemonPanel.js.map +1 -0
  523. package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.d.ts +12 -0
  524. package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.d.ts.map +1 -0
  525. package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.js +12 -0
  526. package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.js.map +1 -0
  527. package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.d.ts +10 -0
  528. package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.d.ts.map +1 -0
  529. package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.js +2 -0
  530. package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.js.map +1 -0
  531. package/dist/presentation/tui/cockpit/CockpitGreeterCopy.d.ts +10 -0
  532. package/dist/presentation/tui/cockpit/CockpitGreeterCopy.d.ts.map +1 -0
  533. package/dist/presentation/tui/cockpit/CockpitGreeterCopy.js +14 -0
  534. package/dist/presentation/tui/cockpit/CockpitGreeterCopy.js.map +1 -0
  535. package/dist/presentation/tui/cockpit/CockpitGreeterView.d.ts +3 -0
  536. package/dist/presentation/tui/cockpit/CockpitGreeterView.d.ts.map +1 -0
  537. package/dist/presentation/tui/cockpit/CockpitGreeterView.js +18 -0
  538. package/dist/presentation/tui/cockpit/CockpitGreeterView.js.map +1 -0
  539. package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.d.ts +4 -0
  540. package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.d.ts.map +1 -0
  541. package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.js +4 -0
  542. package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.js.map +1 -0
  543. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.d.ts +25 -0
  544. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.d.ts.map +1 -0
  545. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.js +231 -0
  546. package/dist/presentation/tui/cockpit/CockpitLaunchpadView.js.map +1 -0
  547. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.d.ts +3 -0
  548. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.d.ts.map +1 -0
  549. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.js +17 -0
  550. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.js.map +1 -0
  551. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.d.ts +9 -0
  552. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.d.ts.map +1 -0
  553. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.js +12 -0
  554. package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.js.map +1 -0
  555. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.d.ts +12 -0
  556. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.d.ts.map +1 -0
  557. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.js +16 -0
  558. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.js.map +1 -0
  559. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.d.ts +3 -0
  560. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.d.ts.map +1 -0
  561. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.js +23 -0
  562. package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.js.map +1 -0
  563. package/dist/presentation/tui/cockpit/CockpitScreen.d.ts +21 -0
  564. package/dist/presentation/tui/cockpit/CockpitScreen.d.ts.map +1 -0
  565. package/dist/presentation/tui/cockpit/CockpitScreen.js +59 -0
  566. package/dist/presentation/tui/cockpit/CockpitScreen.js.map +1 -0
  567. package/dist/presentation/tui/cockpit/CockpitScreenCopy.d.ts +7 -0
  568. package/dist/presentation/tui/cockpit/CockpitScreenCopy.d.ts.map +1 -0
  569. package/dist/presentation/tui/cockpit/CockpitScreenCopy.js +7 -0
  570. package/dist/presentation/tui/cockpit/CockpitScreenCopy.js.map +1 -0
  571. package/dist/presentation/tui/cockpit/CockpitScreenDefaults.d.ts +6 -0
  572. package/dist/presentation/tui/cockpit/CockpitScreenDefaults.d.ts.map +1 -0
  573. package/dist/presentation/tui/cockpit/CockpitScreenDefaults.js +6 -0
  574. package/dist/presentation/tui/cockpit/CockpitScreenDefaults.js.map +1 -0
  575. package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.d.ts +12 -0
  576. package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.d.ts.map +1 -0
  577. package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.js +16 -0
  578. package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.js.map +1 -0
  579. package/dist/presentation/tui/cockpit/CockpitUnprimedView.d.ts +3 -0
  580. package/dist/presentation/tui/cockpit/CockpitUnprimedView.d.ts.map +1 -0
  581. package/dist/presentation/tui/cockpit/CockpitUnprimedView.js +28 -0
  582. package/dist/presentation/tui/cockpit/CockpitUnprimedView.js.map +1 -0
  583. package/dist/presentation/tui/cockpit/DaemonFrameViews.d.ts +17 -0
  584. package/dist/presentation/tui/cockpit/DaemonFrameViews.d.ts.map +1 -0
  585. package/dist/presentation/tui/cockpit/DaemonFrameViews.js +20 -0
  586. package/dist/presentation/tui/cockpit/DaemonFrameViews.js.map +1 -0
  587. package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.d.ts +4 -0
  588. package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.d.ts.map +1 -0
  589. package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.js +14 -0
  590. package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.js.map +1 -0
  591. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.d.ts +11 -0
  592. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.d.ts.map +1 -0
  593. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.js +15 -0
  594. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.js.map +1 -0
  595. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.d.ts +4 -0
  596. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.d.ts.map +1 -0
  597. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.js +7 -0
  598. package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.js.map +1 -0
  599. package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.d.ts +11 -0
  600. package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.d.ts.map +1 -0
  601. package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.js +2 -0
  602. package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.js.map +1 -0
  603. package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.d.ts +11 -0
  604. package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.d.ts.map +1 -0
  605. package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.js +2 -0
  606. package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.js.map +1 -0
  607. package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.d.ts +7 -0
  608. package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.d.ts.map +1 -0
  609. package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.js +2 -0
  610. package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.js.map +1 -0
  611. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.d.ts +11 -0
  612. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.d.ts.map +1 -0
  613. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.js +15 -0
  614. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.js.map +1 -0
  615. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.d.ts +4 -0
  616. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.d.ts.map +1 -0
  617. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.js +7 -0
  618. package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.js.map +1 -0
  619. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.d.ts +11 -0
  620. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.d.ts.map +1 -0
  621. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.js +16 -0
  622. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.js.map +1 -0
  623. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.d.ts +4 -0
  624. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.d.ts.map +1 -0
  625. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.js +7 -0
  626. package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.js.map +1 -0
  627. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.d.ts +18 -0
  628. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.d.ts.map +1 -0
  629. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.js +2 -0
  630. package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.js.map +1 -0
  631. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.d.ts +11 -0
  632. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.d.ts.map +1 -0
  633. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.js +31 -0
  634. package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.js.map +1 -0
  635. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.d.ts +3 -0
  636. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.d.ts.map +1 -0
  637. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.js +4 -0
  638. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.js.map +1 -0
  639. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.d.ts +8 -0
  640. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.d.ts.map +1 -0
  641. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.js +6 -0
  642. package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.js.map +1 -0
  643. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.d.ts +2 -0
  644. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.d.ts.map +1 -0
  645. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.js +2 -0
  646. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.js.map +1 -0
  647. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.d.ts +6 -0
  648. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.d.ts.map +1 -0
  649. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.js +2 -0
  650. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.js.map +1 -0
  651. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.d.ts +7 -0
  652. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.d.ts.map +1 -0
  653. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.js +8 -0
  654. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.js.map +1 -0
  655. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.d.ts +15 -0
  656. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.d.ts.map +1 -0
  657. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.js +2 -0
  658. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.js.map +1 -0
  659. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.d.ts +14 -0
  660. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.d.ts.map +1 -0
  661. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.js +13 -0
  662. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.js.map +1 -0
  663. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.d.ts +2 -0
  664. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.d.ts.map +1 -0
  665. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.js +2 -0
  666. package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.js.map +1 -0
  667. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.d.ts +16 -0
  668. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.d.ts.map +1 -0
  669. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.js +16 -0
  670. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.js.map +1 -0
  671. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.d.ts +22 -0
  672. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.d.ts.map +1 -0
  673. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.js +299 -0
  674. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.js.map +1 -0
  675. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.d.ts +17 -0
  676. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.d.ts.map +1 -0
  677. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.js +2 -0
  678. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.js.map +1 -0
  679. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.d.ts +7 -0
  680. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.d.ts.map +1 -0
  681. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.js +6 -0
  682. package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.js.map +1 -0
  683. package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.d.ts +3 -0
  684. package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.d.ts.map +1 -0
  685. package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.js +6 -0
  686. package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.js.map +1 -0
  687. package/dist/presentation/tui/goals/Constants.d.ts +2 -0
  688. package/dist/presentation/tui/goals/Constants.d.ts.map +1 -0
  689. package/dist/presentation/tui/goals/Constants.js +2 -0
  690. package/dist/presentation/tui/goals/Constants.js.map +1 -0
  691. package/dist/presentation/tui/goals/GoalAuthoringFlow.d.ts +22 -0
  692. package/dist/presentation/tui/goals/GoalAuthoringFlow.d.ts.map +1 -0
  693. package/dist/presentation/tui/goals/GoalAuthoringFlow.js +219 -0
  694. package/dist/presentation/tui/goals/GoalAuthoringFlow.js.map +1 -0
  695. package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.d.ts +79 -0
  696. package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.d.ts.map +1 -0
  697. package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.js +84 -0
  698. package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.js.map +1 -0
  699. package/dist/presentation/tui/goals/GoalsScreen.d.ts +3 -0
  700. package/dist/presentation/tui/goals/GoalsScreen.d.ts.map +1 -0
  701. package/dist/presentation/tui/goals/GoalsScreen.js +151 -0
  702. package/dist/presentation/tui/goals/GoalsScreen.js.map +1 -0
  703. package/dist/presentation/tui/goals/GoalsScreenConstants.d.ts +33 -0
  704. package/dist/presentation/tui/goals/GoalsScreenConstants.d.ts.map +1 -0
  705. package/dist/presentation/tui/goals/GoalsScreenConstants.js +41 -0
  706. package/dist/presentation/tui/goals/GoalsScreenConstants.js.map +1 -0
  707. package/dist/presentation/tui/index.d.ts +10 -0
  708. package/dist/presentation/tui/index.d.ts.map +1 -0
  709. package/dist/presentation/tui/index.js +6 -0
  710. package/dist/presentation/tui/index.js.map +1 -0
  711. package/dist/presentation/tui/memory/MemoryScreen.d.ts +3 -0
  712. package/dist/presentation/tui/memory/MemoryScreen.d.ts.map +1 -0
  713. package/dist/presentation/tui/memory/MemoryScreen.js +19 -0
  714. package/dist/presentation/tui/memory/MemoryScreen.js.map +1 -0
  715. package/dist/presentation/tui/memory/components/ComponentAddFlow.d.ts +14 -0
  716. package/dist/presentation/tui/memory/components/ComponentAddFlow.d.ts.map +1 -0
  717. package/dist/presentation/tui/memory/components/ComponentAddFlow.js +46 -0
  718. package/dist/presentation/tui/memory/components/ComponentAddFlow.js.map +1 -0
  719. package/dist/presentation/tui/memory/components/ComponentsScreen.d.ts +3 -0
  720. package/dist/presentation/tui/memory/components/ComponentsScreen.d.ts.map +1 -0
  721. package/dist/presentation/tui/memory/components/ComponentsScreen.js +21 -0
  722. package/dist/presentation/tui/memory/components/ComponentsScreen.js.map +1 -0
  723. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.d.ts +15 -0
  724. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.d.ts.map +1 -0
  725. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.js +63 -0
  726. package/dist/presentation/tui/memory/decisions/DecisionAddFlow.js.map +1 -0
  727. package/dist/presentation/tui/memory/decisions/DecisionsScreen.d.ts +3 -0
  728. package/dist/presentation/tui/memory/decisions/DecisionsScreen.d.ts.map +1 -0
  729. package/dist/presentation/tui/memory/decisions/DecisionsScreen.js +22 -0
  730. package/dist/presentation/tui/memory/decisions/DecisionsScreen.js.map +1 -0
  731. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.d.ts +3 -0
  732. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.d.ts.map +1 -0
  733. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.js +23 -0
  734. package/dist/presentation/tui/memory/dependencies/DependenciesScreen.js.map +1 -0
  735. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.d.ts +16 -0
  736. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.d.ts.map +1 -0
  737. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.js +56 -0
  738. package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.js.map +1 -0
  739. package/dist/presentation/tui/memory/entity-browser/EntityColumn.d.ts +14 -0
  740. package/dist/presentation/tui/memory/entity-browser/EntityColumn.d.ts.map +1 -0
  741. package/dist/presentation/tui/memory/entity-browser/EntityColumn.js +24 -0
  742. package/dist/presentation/tui/memory/entity-browser/EntityColumn.js.map +1 -0
  743. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.d.ts +10 -0
  744. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.d.ts.map +1 -0
  745. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.js +141 -0
  746. package/dist/presentation/tui/memory/entity-browser/EntityDetailView.js.map +1 -0
  747. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.d.ts +13 -0
  748. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.d.ts.map +1 -0
  749. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.js +107 -0
  750. package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.js.map +1 -0
  751. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.d.ts +41 -0
  752. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.d.ts.map +1 -0
  753. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.js +2 -0
  754. package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.js.map +1 -0
  755. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.d.ts +15 -0
  756. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.d.ts.map +1 -0
  757. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.js +57 -0
  758. package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.js.map +1 -0
  759. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.d.ts +3 -0
  760. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.d.ts.map +1 -0
  761. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.js +22 -0
  762. package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.js.map +1 -0
  763. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.d.ts +13 -0
  764. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.d.ts.map +1 -0
  765. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.js +41 -0
  766. package/dist/presentation/tui/memory/invariants/InvariantAddFlow.js.map +1 -0
  767. package/dist/presentation/tui/memory/invariants/InvariantsScreen.d.ts +3 -0
  768. package/dist/presentation/tui/memory/invariants/InvariantsScreen.d.ts.map +1 -0
  769. package/dist/presentation/tui/memory/invariants/InvariantsScreen.js +20 -0
  770. package/dist/presentation/tui/memory/invariants/InvariantsScreen.js.map +1 -0
  771. package/dist/presentation/tui/navigation/MegaMenu.d.ts +10 -0
  772. package/dist/presentation/tui/navigation/MegaMenu.d.ts.map +1 -0
  773. package/dist/presentation/tui/navigation/MegaMenu.js +179 -0
  774. package/dist/presentation/tui/navigation/MegaMenu.js.map +1 -0
  775. package/dist/presentation/tui/navigation/MegaMenuDefinitions.d.ts +17 -0
  776. package/dist/presentation/tui/navigation/MegaMenuDefinitions.d.ts.map +1 -0
  777. package/dist/presentation/tui/navigation/MegaMenuDefinitions.js +207 -0
  778. package/dist/presentation/tui/navigation/MegaMenuDefinitions.js.map +1 -0
  779. package/dist/presentation/tui/navigation/ScreenDefinitions.d.ts +36 -0
  780. package/dist/presentation/tui/navigation/ScreenDefinitions.d.ts.map +1 -0
  781. package/dist/presentation/tui/navigation/ScreenDefinitions.js +12 -0
  782. package/dist/presentation/tui/navigation/ScreenDefinitions.js.map +1 -0
  783. package/dist/presentation/tui/navigation/ScreenRouter.d.ts +19 -0
  784. package/dist/presentation/tui/navigation/ScreenRouter.d.ts.map +1 -0
  785. package/dist/presentation/tui/navigation/ScreenRouter.js +32 -0
  786. package/dist/presentation/tui/navigation/ScreenRouter.js.map +1 -0
  787. package/dist/presentation/tui/project-initialization/Constants.d.ts +140 -0
  788. package/dist/presentation/tui/project-initialization/Constants.d.ts.map +1 -0
  789. package/dist/presentation/tui/project-initialization/Constants.js +140 -0
  790. package/dist/presentation/tui/project-initialization/Constants.js.map +1 -0
  791. package/dist/presentation/tui/project-initialization/InitFlow.d.ts +24 -0
  792. package/dist/presentation/tui/project-initialization/InitFlow.d.ts.map +1 -0
  793. package/dist/presentation/tui/project-initialization/InitFlow.js +650 -0
  794. package/dist/presentation/tui/project-initialization/InitFlow.js.map +1 -0
  795. package/dist/presentation/tui/sessions/SessionScreen.d.ts +3 -0
  796. package/dist/presentation/tui/sessions/SessionScreen.d.ts.map +1 -0
  797. package/dist/presentation/tui/sessions/SessionScreen.js +79 -0
  798. package/dist/presentation/tui/sessions/SessionScreen.js.map +1 -0
  799. package/dist/presentation/tui/state-reading/TuiStateReader.d.ts +58 -0
  800. package/dist/presentation/tui/state-reading/TuiStateReader.d.ts.map +1 -0
  801. package/dist/presentation/tui/state-reading/TuiStateReader.js +152 -0
  802. package/dist/presentation/tui/state-reading/TuiStateReader.js.map +1 -0
  803. package/dist/presentation/tui/ui-primitives/DetailPane.d.ts +15 -0
  804. package/dist/presentation/tui/ui-primitives/DetailPane.d.ts.map +1 -0
  805. package/dist/presentation/tui/ui-primitives/DetailPane.js +12 -0
  806. package/dist/presentation/tui/ui-primitives/DetailPane.js.map +1 -0
  807. package/dist/presentation/tui/ui-primitives/KeyBadge.d.ts +11 -0
  808. package/dist/presentation/tui/ui-primitives/KeyBadge.d.ts.map +1 -0
  809. package/dist/presentation/tui/ui-primitives/KeyBadge.js +9 -0
  810. package/dist/presentation/tui/ui-primitives/KeyBadge.js.map +1 -0
  811. package/dist/presentation/tui/ui-primitives/ListPanel.d.ts +16 -0
  812. package/dist/presentation/tui/ui-primitives/ListPanel.d.ts.map +1 -0
  813. package/dist/presentation/tui/ui-primitives/ListPanel.js +16 -0
  814. package/dist/presentation/tui/ui-primitives/ListPanel.js.map +1 -0
  815. package/dist/presentation/tui/ui-primitives/ListPanelConstants.d.ts +4 -0
  816. package/dist/presentation/tui/ui-primitives/ListPanelConstants.d.ts.map +1 -0
  817. package/dist/presentation/tui/ui-primitives/ListPanelConstants.js +4 -0
  818. package/dist/presentation/tui/ui-primitives/ListPanelConstants.js.map +1 -0
  819. package/dist/presentation/tui/ui-primitives/Panel.d.ts +15 -0
  820. package/dist/presentation/tui/ui-primitives/Panel.d.ts.map +1 -0
  821. package/dist/presentation/tui/ui-primitives/Panel.js +9 -0
  822. package/dist/presentation/tui/ui-primitives/Panel.js.map +1 -0
  823. package/dist/presentation/tui/ui-primitives/SectionHeading.d.ts +8 -0
  824. package/dist/presentation/tui/ui-primitives/SectionHeading.d.ts.map +1 -0
  825. package/dist/presentation/tui/ui-primitives/SectionHeading.js +9 -0
  826. package/dist/presentation/tui/ui-primitives/SectionHeading.js.map +1 -0
  827. package/dist/presentation/tui/ui-primitives/StatusIndicator.d.ts +9 -0
  828. package/dist/presentation/tui/ui-primitives/StatusIndicator.d.ts.map +1 -0
  829. package/dist/presentation/tui/ui-primitives/StatusIndicator.js +21 -0
  830. package/dist/presentation/tui/ui-primitives/StatusIndicator.js.map +1 -0
  831. package/dist/presentation/tui/ui-primitives/Tumbler.d.ts +18 -0
  832. package/dist/presentation/tui/ui-primitives/Tumbler.d.ts.map +1 -0
  833. package/dist/presentation/tui/ui-primitives/Tumbler.js +102 -0
  834. package/dist/presentation/tui/ui-primitives/Tumbler.js.map +1 -0
  835. package/dist/presentation/tui/ui-primitives/TumblerConstants.d.ts +4 -0
  836. package/dist/presentation/tui/ui-primitives/TumblerConstants.d.ts.map +1 -0
  837. package/dist/presentation/tui/ui-primitives/TumblerConstants.js +4 -0
  838. package/dist/presentation/tui/ui-primitives/TumblerConstants.js.map +1 -0
  839. package/dist/presentation/tui/wizard/Wizard.d.ts +54 -0
  840. package/dist/presentation/tui/wizard/Wizard.d.ts.map +1 -0
  841. package/dist/presentation/tui/wizard/Wizard.js +412 -0
  842. package/dist/presentation/tui/wizard/Wizard.js.map +1 -0
  843. package/dist/presentation/tui/wizard/WizardConstants.d.ts +27 -0
  844. package/dist/presentation/tui/wizard/WizardConstants.d.ts.map +1 -0
  845. package/dist/presentation/tui/wizard/WizardConstants.js +26 -0
  846. package/dist/presentation/tui/wizard/WizardConstants.js.map +1 -0
  847. package/dist/presentation/tui/wizard/WizardTextInput.d.ts +12 -0
  848. package/dist/presentation/tui/wizard/WizardTextInput.d.ts.map +1 -0
  849. package/dist/presentation/tui/wizard/WizardTextInput.js +39 -0
  850. package/dist/presentation/tui/wizard/WizardTextInput.js.map +1 -0
  851. package/dist/presentation/work/codifier.daemon.d.ts +3 -0
  852. package/dist/presentation/work/codifier.daemon.d.ts.map +1 -0
  853. package/dist/presentation/work/codifier.daemon.js +94 -0
  854. package/dist/presentation/work/codifier.daemon.js.map +1 -0
  855. package/dist/presentation/work/refiner.daemon.d.ts +3 -0
  856. package/dist/presentation/work/refiner.daemon.d.ts.map +1 -0
  857. package/dist/presentation/work/refiner.daemon.js +79 -0
  858. package/dist/presentation/work/refiner.daemon.js.map +1 -0
  859. package/dist/presentation/work/reviewer.daemon.d.ts +3 -0
  860. package/dist/presentation/work/reviewer.daemon.d.ts.map +1 -0
  861. package/dist/presentation/work/reviewer.daemon.js +79 -0
  862. package/dist/presentation/work/reviewer.daemon.js.map +1 -0
  863. package/package.json +5 -1
  864. package/dist/application/context/project/get/ContextualProjectView.d.ts +0 -24
  865. package/dist/application/context/project/get/ContextualProjectView.d.ts.map +0 -1
  866. package/dist/application/context/project/get/ContextualProjectView.js +0 -2
  867. package/dist/application/context/project/get/ContextualProjectView.js.map +0 -1
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+ import { Box, Text } from "ink";
3
+ import { BaseColors, SemanticColors, TuiLayout } from "../../shared/DesignTokens.js";
4
+ import { CenteredPrompt } from "./CenteredPrompt.js";
5
+ import { SectionHeading } from "../ui-primitives/SectionHeading.js";
6
+ import { CockpitUnprimedCopy } from "./CockpitUnprimedCopy.js";
7
+ export function CockpitUnprimedView() {
8
+ return (React.createElement(Box, { flexDirection: "column", flexGrow: 1, width: "100%", paddingY: 1, alignItems: "center" },
9
+ React.createElement(Box, { flexDirection: "column", width: TuiLayout.bannerWidth, paddingX: 2 },
10
+ React.createElement(Box, { flexDirection: "row" },
11
+ React.createElement(Box, { flexBasis: "3%" }),
12
+ React.createElement(Box, { flexDirection: "column", flexBasis: "94%" },
13
+ React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitUnprimedCopy.intro)),
14
+ React.createElement(Box, { flexBasis: "3%" })),
15
+ React.createElement(Box, { flexDirection: "row" },
16
+ React.createElement(Box, { flexBasis: "10%" }),
17
+ React.createElement(Box, { flexDirection: "column", flexBasis: "80%", marginTop: 1 },
18
+ React.createElement(SectionHeading, { title: CockpitUnprimedCopy.nextStepsHeading }),
19
+ React.createElement(Box, { flexDirection: "column", marginTop: 1 },
20
+ React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitUnprimedCopy.nextSteps[0]),
21
+ React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitUnprimedCopy.nextSteps[1]),
22
+ React.createElement(Text, { color: BaseColors.brandYellow, dimColor: true, wrap: "wrap" }, CockpitUnprimedCopy.agentNudgeNote),
23
+ React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitUnprimedCopy.nextSteps[2]))),
24
+ React.createElement(Box, { flexBasis: "10%" })),
25
+ React.createElement(Box, { marginTop: 2 },
26
+ React.createElement(CenteredPrompt, { keyChar: CockpitUnprimedCopy.skipPrompt.keyChar, prefix: CockpitUnprimedCopy.skipPrompt.prefix, suffix: CockpitUnprimedCopy.skipPrompt.suffix })))));
27
+ }
28
+ //# sourceMappingURL=CockpitUnprimedView.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CockpitUnprimedView.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitUnprimedView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AACrF,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D,MAAM,UAAU,mBAAmB;IACjC,OAAO,CACL,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,EAAC,MAAM,EAAC,QAAQ,EAAE,CAAC,EAAE,UAAU,EAAC,QAAQ;QACpF,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,KAAK,EAAE,SAAS,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC;YACnE,oBAAC,GAAG,IAAC,aAAa,EAAC,KAAK;gBACtB,oBAAC,GAAG,IAAC,SAAS,EAAC,IAAI,GAAG;gBACtB,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,SAAS,EAAC,KAAK;oBACzC,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,mBAAmB,CAAC,KAAK,CACrB,CACH;gBACN,oBAAC,GAAG,IAAC,SAAS,EAAC,IAAI,GAAG,CAClB;YACN,oBAAC,GAAG,IAAC,aAAa,EAAC,KAAK;gBACtB,oBAAC,GAAG,IAAC,SAAS,EAAC,KAAK,GAAG;gBACvB,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,SAAS,EAAC,KAAK,EAAC,SAAS,EAAE,CAAC;oBACtD,oBAAC,cAAc,IAAC,KAAK,EAAE,mBAAmB,CAAC,gBAAgB,GAAI;oBAC/D,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,SAAS,EAAE,CAAC;wBACtC,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,mBAAmB,CAAC,SAAS,CAAC,CAAC,CAAC,CAC5B;wBACP,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,mBAAmB,CAAC,SAAS,CAAC,CAAC,CAAC,CAC5B;wBACP,oBAAC,IAAI,IAAC,KAAK,EAAE,UAAU,CAAC,WAAW,EAAE,QAAQ,QAAC,IAAI,EAAC,MAAM,IACtD,mBAAmB,CAAC,cAAc,CAC9B;wBACP,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,mBAAmB,CAAC,SAAS,CAAC,CAAC,CAAC,CAC5B,CACH,CACF;gBACN,oBAAC,GAAG,IAAC,SAAS,EAAC,KAAK,GAAG,CACnB;YACN,oBAAC,GAAG,IAAC,SAAS,EAAE,CAAC;gBACf,oBAAC,cAAc,IACb,OAAO,EAAE,mBAAmB,CAAC,UAAU,CAAC,OAAO,EAC/C,MAAM,EAAE,mBAAmB,CAAC,UAAU,CAAC,MAAM,EAC7C,MAAM,EAAE,mBAAmB,CAAC,UAAU,CAAC,MAAM,GAC7C,CACE,CACF,CACF,CACP,CAAC;AACJ,CAAC"}
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import type { CockpitDaemonSnapshot } from "./CockpitDaemonSnapshot.js";
3
+ import { type GlyphCell, type GlyphColorMap } from "./CockpitDaemonFrames.js";
4
+ export declare function GlyphCellDaemonFrame({ frame, frameIndex, snapshot, statusLabel, }: {
5
+ readonly frame: readonly (readonly GlyphCell[])[];
6
+ readonly frameIndex: number;
7
+ readonly snapshot: CockpitDaemonSnapshot;
8
+ readonly statusLabel: string;
9
+ }): React.ReactElement;
10
+ export declare function CodifierDaemonFrame({ frame, frameIndex, glyphColors, snapshot, statusLabel, }: {
11
+ readonly frame: readonly string[];
12
+ readonly frameIndex: number;
13
+ readonly glyphColors: GlyphColorMap;
14
+ readonly snapshot: CockpitDaemonSnapshot;
15
+ readonly statusLabel: string;
16
+ }): React.ReactElement;
17
+ //# sourceMappingURL=DaemonFrameViews.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DaemonFrameViews.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/DaemonFrameViews.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACxE,OAAO,EAUL,KAAK,SAAS,EACd,KAAK,aAAa,EACnB,MAAM,0BAA0B,CAAC;AAElC,wBAAgB,oBAAoB,CAAC,EACnC,KAAK,EACL,UAAU,EACV,QAAQ,EACR,WAAW,GACZ,EAAE;IACD,QAAQ,CAAC,KAAK,EAAE,SAAS,CAAC,SAAS,SAAS,EAAE,CAAC,EAAE,CAAC;IAClD,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,qBAAqB,CAAC;IACzC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B,GAAG,KAAK,CAAC,YAAY,CAoCrB;AAED,wBAAgB,mBAAmB,CAAC,EAClC,KAAK,EACL,UAAU,EACV,WAAW,EACX,QAAQ,EACR,WAAW,GACZ,EAAE;IACD,QAAQ,CAAC,KAAK,EAAE,SAAS,MAAM,EAAE,CAAC;IAClC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,WAAW,EAAE,aAAa,CAAC;IACpC,QAAQ,CAAC,QAAQ,EAAE,qBAAqB,CAAC;IACzC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B,GAAG,KAAK,CAAC,YAAY,CAwCrB"}
@@ -0,0 +1,20 @@
1
+ import React from "react";
2
+ import { Box, Text } from "ink";
3
+ import { BaseColors } from "../../shared/DesignTokens.js";
4
+ import { DAEMON_PANEL_CONTENT_WIDTH, getGlyphCellLinePrefix, getGlyphCellLineSuffix, getGlyphCellSegments, getGlyphLinePrefix, getGlyphLineSuffix, getRenderedDaemonFrame, getStyledGlyphSegments, isDaemonStatusLine, } from "./CockpitDaemonFrames.js";
5
+ export function GlyphCellDaemonFrame({ frame, frameIndex, snapshot, statusLabel, }) {
6
+ return (React.createElement(Box, { flexDirection: "column", flexWrap: "nowrap", width: DAEMON_PANEL_CONTENT_WIDTH }, getRenderedDaemonFrame(frame).map((line, lineIndex) => (React.createElement(Text, { key: `${frameIndex}-${lineIndex}` },
7
+ getGlyphCellSegments(getGlyphCellLinePrefix(line, statusLabel, lineIndex), snapshot).map((segment, segmentIndex) => (React.createElement(Text, { key: `${frameIndex}-${lineIndex}-prefix-${segmentIndex}`, color: segment.color }, segment.text))),
8
+ isDaemonStatusLine(lineIndex) && (React.createElement(Text, { color: getDaemonStatusColor(), bold: true }, statusLabel)),
9
+ getGlyphCellSegments(getGlyphCellLineSuffix(line, statusLabel, lineIndex), snapshot).map((segment, segmentIndex) => (React.createElement(Text, { key: `${frameIndex}-${lineIndex}-suffix-${segmentIndex}`, color: segment.color }, segment.text))))))));
10
+ }
11
+ export function CodifierDaemonFrame({ frame, frameIndex, glyphColors, snapshot, statusLabel, }) {
12
+ return (React.createElement(Box, { flexDirection: "column", flexWrap: "nowrap", width: DAEMON_PANEL_CONTENT_WIDTH }, getRenderedDaemonFrame(frame).map((line, lineIndex) => (React.createElement(Text, { key: `${frameIndex}-${lineIndex}` },
13
+ getStyledGlyphSegments(getGlyphLinePrefix(line, statusLabel, lineIndex), glyphColors, snapshot).map((segment, segmentIndex) => (React.createElement(Text, { key: `${frameIndex}-${lineIndex}-prefix-${segmentIndex}`, color: segment.color, dimColor: segment.dimColor }, segment.text))),
14
+ isDaemonStatusLine(lineIndex) && (React.createElement(Text, { color: getDaemonStatusColor(), bold: true }, statusLabel)),
15
+ getStyledGlyphSegments(getGlyphLineSuffix(line, statusLabel, lineIndex), glyphColors, snapshot).map((segment, segmentIndex) => (React.createElement(Text, { key: `${frameIndex}-${lineIndex}-suffix-${segmentIndex}`, color: segment.color, dimColor: segment.dimColor }, segment.text))))))));
16
+ }
17
+ function getDaemonStatusColor() {
18
+ return BaseColors.shade3;
19
+ }
20
+ //# sourceMappingURL=DaemonFrameViews.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DaemonFrameViews.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/DaemonFrameViews.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE1D,OAAO,EACL,0BAA0B,EAC1B,sBAAsB,EACtB,sBAAsB,EACtB,oBAAoB,EACpB,kBAAkB,EAClB,kBAAkB,EAClB,sBAAsB,EACtB,sBAAsB,EACtB,kBAAkB,GAGnB,MAAM,0BAA0B,CAAC;AAElC,MAAM,UAAU,oBAAoB,CAAC,EACnC,KAAK,EACL,UAAU,EACV,QAAQ,EACR,WAAW,GAMZ;IACC,OAAO,CACL,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,QAAQ,EAAC,QAAQ,EAAC,KAAK,EAAE,0BAA0B,IAC5E,sBAAsB,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,SAAS,EAAE,EAAE,CAAC,CACtD,oBAAC,IAAI,IAAC,GAAG,EAAE,GAAG,UAAU,IAAI,SAAS,EAAE;QACpC,oBAAoB,CACnB,sBAAsB,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,CAAC,EACpD,QAAQ,CACT,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,CAAC,CAC/B,oBAAC,IAAI,IACH,GAAG,EAAE,GAAG,UAAU,IAAI,SAAS,WAAW,YAAY,EAAE,EACxD,KAAK,EAAE,OAAO,CAAC,KAAK,IAEnB,OAAO,CAAC,IAAI,CACR,CACR,CAAC;QACD,kBAAkB,CAAC,SAAS,CAAC,IAAI,CAChC,oBAAC,IAAI,IAAC,KAAK,EAAE,oBAAoB,EAAE,EAAE,IAAI,UACtC,WAAW,CACP,CACR;QACA,oBAAoB,CACnB,sBAAsB,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,CAAC,EACpD,QAAQ,CACT,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,CAAC,CAC/B,oBAAC,IAAI,IACH,GAAG,EAAE,GAAG,UAAU,IAAI,SAAS,WAAW,YAAY,EAAE,EACxD,KAAK,EAAE,OAAO,CAAC,KAAK,IAEnB,OAAO,CAAC,IAAI,CACR,CACR,CAAC,CACG,CACR,CAAC,CACE,CACP,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,EAClC,KAAK,EACL,UAAU,EACV,WAAW,EACX,QAAQ,EACR,WAAW,GAOZ;IACC,OAAO,CACL,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,QAAQ,EAAC,QAAQ,EAAC,KAAK,EAAE,0BAA0B,IAC5E,sBAAsB,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,SAAS,EAAE,EAAE,CAAC,CACtD,oBAAC,IAAI,IAAC,GAAG,EAAE,GAAG,UAAU,IAAI,SAAS,EAAE;QACpC,sBAAsB,CACrB,kBAAkB,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,CAAC,EAChD,WAAW,EACX,QAAQ,CACT,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,CAAC,CAC/B,oBAAC,IAAI,IACH,GAAG,EAAE,GAAG,UAAU,IAAI,SAAS,WAAW,YAAY,EAAE,EACxD,KAAK,EAAE,OAAO,CAAC,KAAK,EACpB,QAAQ,EAAE,OAAO,CAAC,QAAQ,IAEzB,OAAO,CAAC,IAAI,CACR,CACR,CAAC;QACD,kBAAkB,CAAC,SAAS,CAAC,IAAI,CAChC,oBAAC,IAAI,IAAC,KAAK,EAAE,oBAAoB,EAAE,EAAE,IAAI,UACtC,WAAW,CACP,CACR;QACA,sBAAsB,CACrB,kBAAkB,CAAC,IAAI,EAAE,WAAW,EAAE,SAAS,CAAC,EAChD,WAAW,EACX,QAAQ,CACT,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,CAAC,CAC/B,oBAAC,IAAI,IACH,GAAG,EAAE,GAAG,UAAU,IAAI,SAAS,WAAW,YAAY,EAAE,EACxD,KAAK,EAAE,OAAO,CAAC,KAAK,EACpB,QAAQ,EAAE,OAAO,CAAC,QAAQ,IAEzB,OAAO,CAAC,IAAI,CACR,CACR,CAAC,CACG,CACR,CAAC,CACE,CACP,CAAC;AACJ,CAAC;AAED,SAAS,oBAAoB;IAC3B,OAAO,UAAU,CAAC,MAAM,CAAC;AAC3B,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { CockpitDaemonSnapshot } from "./CockpitDaemonSnapshot.js";
2
+ import type { IDaemonConstants } from "./daemons/IDaemonConstants.js";
3
+ export declare function getDaemonPanelStatusLabel(snapshot: CockpitDaemonSnapshot, daemonConstants: IDaemonConstants): string;
4
+ //# sourceMappingURL=DaemonPanelStatusLabel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DaemonPanelStatusLabel.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/DaemonPanelStatusLabel.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACxE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEtE,wBAAgB,yBAAyB,CACvC,QAAQ,EAAE,qBAAqB,EAC/B,eAAe,EAAE,gBAAgB,GAChC,MAAM,CAeR"}
@@ -0,0 +1,14 @@
1
+ import { TuiDaemonEventStatus, } from "../daemon-subprocesses/TuiDaemonEventStatus.js";
2
+ import { TuiSubprocessStatus, } from "../daemon-subprocesses/TuiSubprocessStatus.js";
3
+ export function getDaemonPanelStatusLabel(snapshot, daemonConstants) {
4
+ const latestEvent = snapshot.events[snapshot.events.length - 1];
5
+ if (snapshot.status === TuiSubprocessStatus.RUNNING &&
6
+ latestEvent?.status === TuiDaemonEventStatus.IDLE) {
7
+ return `[ ${daemonConstants.idleVerb} ]`;
8
+ }
9
+ const status = snapshot.status === TuiSubprocessStatus.RUNNING
10
+ ? daemonConstants.activeVerb
11
+ : snapshot.status;
12
+ return `[ ${status} ]`;
13
+ }
14
+ //# sourceMappingURL=DaemonPanelStatusLabel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DaemonPanelStatusLabel.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/DaemonPanelStatusLabel.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,GACrB,MAAM,gDAAgD,CAAC;AACxD,OAAO,EACL,mBAAmB,GACpB,MAAM,+CAA+C,CAAC;AAIvD,MAAM,UAAU,yBAAyB,CACvC,QAA+B,EAC/B,eAAiC;IAEjC,MAAM,WAAW,GAAG,QAAQ,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IAChE,IACE,QAAQ,CAAC,MAAM,KAAK,mBAAmB,CAAC,OAAO;QAC/C,WAAW,EAAE,MAAM,KAAK,oBAAoB,CAAC,IAAI,EACjD,CAAC;QACD,OAAO,KAAK,eAAe,CAAC,QAAQ,IAAI,CAAC;IAC3C,CAAC;IAED,MAAM,MAAM,GACV,QAAQ,CAAC,MAAM,KAAK,mBAAmB,CAAC,OAAO;QAC7C,CAAC,CAAC,eAAe,CAAC,UAAU;QAC5B,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC;IAEtB,OAAO,KAAK,MAAM,IAAI,CAAC;AACzB,CAAC"}
@@ -0,0 +1,11 @@
1
+ export declare const CodifierDaemonConstants: {
2
+ readonly name: "codifier";
3
+ readonly title: "CODIFIER//";
4
+ readonly activeVerb: "codifying";
5
+ readonly idleVerb: "awaiting approvals";
6
+ readonly info: {
7
+ readonly title: "CODIFIER//";
8
+ readonly lines: readonly ["Codify implementation results automatically as soon as goals are approved.", "", "Missing decisions, components and documentation will be updated before goals are finally closed."];
9
+ };
10
+ };
11
+ //# sourceMappingURL=CodifierDaemonConstants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CodifierDaemonConstants.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/CodifierDaemonConstants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,uBAAuB;;;;;;;;;CAaC,CAAC"}
@@ -0,0 +1,15 @@
1
+ export const CodifierDaemonConstants = {
2
+ name: "codifier",
3
+ title: "CODIFIER//",
4
+ activeVerb: "codifying",
5
+ idleVerb: "awaiting approvals",
6
+ info: {
7
+ title: "CODIFIER//",
8
+ lines: [
9
+ "Codify implementation results automatically as soon as goals are approved.",
10
+ "",
11
+ "Missing decisions, components and documentation will be updated before goals are finally closed.",
12
+ ],
13
+ },
14
+ };
15
+ //# sourceMappingURL=CodifierDaemonConstants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CodifierDaemonConstants.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/CodifierDaemonConstants.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,IAAI,EAAE,UAAU;IAChB,KAAK,EAAE,YAAY;IACnB,UAAU,EAAE,WAAW;IACvB,QAAQ,EAAE,oBAAoB;IAC9B,IAAI,EAAE;QACJ,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE;YACL,4EAA4E;YAC5E,EAAE;YACF,kGAAkG;SACnG;KACF;CACkC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import type { IDaemonFrame } from "./IDaemonFrame.js";
3
+ export declare function CodifierDaemonFrame({ frameIndex, snapshot, statusLabel, codifierGlyphColors, }: IDaemonFrame): React.ReactElement;
4
+ //# sourceMappingURL=CodifierDaemonFrame.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CodifierDaemonFrame.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/CodifierDaemonFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,wBAAgB,mBAAmB,CAAC,EAClC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,mBAAmB,GACpB,EAAE,YAAY,GAAG,KAAK,CAAC,YAAY,CAUnC"}
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { CodifierDaemonFrame as CodifierDaemonFrameView } from "../DaemonFrameViews.js";
3
+ import { getCodifierFrame } from "../CockpitDaemonFrames.js";
4
+ export function CodifierDaemonFrame({ frameIndex, snapshot, statusLabel, codifierGlyphColors, }) {
5
+ return (React.createElement(CodifierDaemonFrameView, { frame: getCodifierFrame(frameIndex), frameIndex: frameIndex, glyphColors: codifierGlyphColors, snapshot: snapshot, statusLabel: statusLabel }));
6
+ }
7
+ //# sourceMappingURL=CodifierDaemonFrame.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CodifierDaemonFrame.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/CodifierDaemonFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AACxF,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAG7D,MAAM,UAAU,mBAAmB,CAAC,EAClC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,mBAAmB,GACN;IACb,OAAO,CACL,oBAAC,uBAAuB,IACtB,KAAK,EAAE,gBAAgB,CAAC,UAAU,CAAC,EACnC,UAAU,EAAE,UAAU,EACtB,WAAW,EAAE,mBAAmB,EAChC,QAAQ,EAAE,QAAQ,EAClB,WAAW,EAAE,WAAW,GACxB,CACH,CAAC;AACJ,CAAC"}
@@ -0,0 +1,11 @@
1
+ export interface IDaemonConstants {
2
+ readonly name: string;
3
+ readonly title: string;
4
+ readonly activeVerb: string;
5
+ readonly idleVerb: string;
6
+ readonly info: {
7
+ readonly title: string;
8
+ readonly lines: readonly string[];
9
+ };
10
+ }
11
+ //# sourceMappingURL=IDaemonConstants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IDaemonConstants.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/IDaemonConstants.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,IAAI,EAAE;QACb,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;QACvB,QAAQ,CAAC,KAAK,EAAE,SAAS,MAAM,EAAE,CAAC;KACnC,CAAC;CACH"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=IDaemonConstants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IDaemonConstants.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/IDaemonConstants.ts"],"names":[],"mappings":""}
@@ -0,0 +1,11 @@
1
+ import type { CockpitDaemonSnapshot } from "../CockpitDaemonSnapshot.js";
2
+ import type { GlyphColorMap, GlyphPalette } from "../CockpitDaemonFrames.js";
3
+ export interface IDaemonFrame {
4
+ readonly frameIndex: number;
5
+ readonly snapshot: CockpitDaemonSnapshot;
6
+ readonly statusLabel: string;
7
+ readonly refinerGlyphPalette: GlyphPalette;
8
+ readonly reviewerGlyphPalette: GlyphPalette;
9
+ readonly codifierGlyphColors: GlyphColorMap;
10
+ }
11
+ //# sourceMappingURL=IDaemonFrame.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IDaemonFrame.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/IDaemonFrame.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AACzE,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAE7E,MAAM,WAAW,YAAY;IAC3B,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,qBAAqB,CAAC;IACzC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,mBAAmB,EAAE,YAAY,CAAC;IAC3C,QAAQ,CAAC,oBAAoB,EAAE,YAAY,CAAC;IAC5C,QAAQ,CAAC,mBAAmB,EAAE,aAAa,CAAC;CAC7C"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=IDaemonFrame.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IDaemonFrame.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/IDaemonFrame.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import type { IDaemonFrame } from "./IDaemonFrame.js";
2
+ import type { IDaemonConstants } from "./IDaemonConstants.js";
3
+ export interface IDaemonUiDefinition {
4
+ readonly constants: IDaemonConstants;
5
+ readonly Frame: (frame: IDaemonFrame) => React.ReactElement;
6
+ }
7
+ //# sourceMappingURL=IDaemonUiDefinition.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IDaemonUiDefinition.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/IDaemonUiDefinition.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,SAAS,EAAE,gBAAgB,CAAC;IACrC,QAAQ,CAAC,KAAK,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,KAAK,CAAC,YAAY,CAAC;CAC7D"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=IDaemonUiDefinition.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IDaemonUiDefinition.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/IDaemonUiDefinition.ts"],"names":[],"mappings":""}
@@ -0,0 +1,11 @@
1
+ export declare const RefinerDaemonConstants: {
2
+ readonly name: "refiner";
3
+ readonly title: "REFINER//";
4
+ readonly activeVerb: "refining";
5
+ readonly idleVerb: "foraging";
6
+ readonly info: {
7
+ readonly title: "REFINER//";
8
+ readonly lines: readonly ["Automatically apply relevant memories to build goal context for the implementing agent.", "", "Goals are submitted when finished and ready for implementation."];
9
+ };
10
+ };
11
+ //# sourceMappingURL=RefinerDaemonConstants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RefinerDaemonConstants.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/RefinerDaemonConstants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,sBAAsB;;;;;;;;;CAaE,CAAC"}
@@ -0,0 +1,15 @@
1
+ export const RefinerDaemonConstants = {
2
+ name: "refiner",
3
+ title: "REFINER//",
4
+ activeVerb: "refining",
5
+ idleVerb: "foraging",
6
+ info: {
7
+ title: "REFINER//",
8
+ lines: [
9
+ "Automatically apply relevant memories to build goal context for the implementing agent.",
10
+ "",
11
+ "Goals are submitted when finished and ready for implementation.",
12
+ ],
13
+ },
14
+ };
15
+ //# sourceMappingURL=RefinerDaemonConstants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RefinerDaemonConstants.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/RefinerDaemonConstants.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACpC,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,WAAW;IAClB,UAAU,EAAE,UAAU;IACtB,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE;QACJ,KAAK,EAAE,WAAW;QAClB,KAAK,EAAE;YACL,yFAAyF;YACzF,EAAE;YACF,iEAAiE;SAClE;KACF;CACkC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import type { IDaemonFrame } from "./IDaemonFrame.js";
3
+ export declare function RefinerDaemonFrame({ frameIndex, snapshot, statusLabel, refinerGlyphPalette, }: IDaemonFrame): React.ReactElement;
4
+ //# sourceMappingURL=RefinerDaemonFrame.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RefinerDaemonFrame.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/RefinerDaemonFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,wBAAgB,kBAAkB,CAAC,EACjC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,mBAAmB,GACpB,EAAE,YAAY,GAAG,KAAK,CAAC,YAAY,CASnC"}
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { GlyphCellDaemonFrame } from "../DaemonFrameViews.js";
3
+ import { getRefinerFrame } from "../CockpitDaemonFrames.js";
4
+ export function RefinerDaemonFrame({ frameIndex, snapshot, statusLabel, refinerGlyphPalette, }) {
5
+ return (React.createElement(GlyphCellDaemonFrame, { frame: getRefinerFrame(frameIndex, refinerGlyphPalette), frameIndex: frameIndex, snapshot: snapshot, statusLabel: statusLabel }));
6
+ }
7
+ //# sourceMappingURL=RefinerDaemonFrame.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RefinerDaemonFrame.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/RefinerDaemonFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAG5D,MAAM,UAAU,kBAAkB,CAAC,EACjC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,mBAAmB,GACN;IACb,OAAO,CACL,oBAAC,oBAAoB,IACnB,KAAK,EAAE,eAAe,CAAC,UAAU,EAAE,mBAAmB,CAAC,EACvD,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,QAAQ,EAClB,WAAW,EAAE,WAAW,GACxB,CACH,CAAC;AACJ,CAAC"}
@@ -0,0 +1,11 @@
1
+ export declare const ReviewerDaemonConstants: {
2
+ readonly name: "reviewer";
3
+ readonly title: "REVIEWER//";
4
+ readonly activeVerb: "reviewing";
5
+ readonly idleVerb: "awaiting submissions";
6
+ readonly info: {
7
+ readonly title: "REVIEWER//";
8
+ readonly lines: readonly ["Orchestrate background agents to automatically review goal implementations as soon as they submitted.", "", "Approved goals will get picked up by the codifier (if running).", "Rejected goals will get requeued with documented issues to be resolved."];
9
+ };
10
+ };
11
+ //# sourceMappingURL=ReviewerDaemonConstants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReviewerDaemonConstants.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,uBAAuB;;;;;;;;;CAcC,CAAC"}
@@ -0,0 +1,16 @@
1
+ export const ReviewerDaemonConstants = {
2
+ name: "reviewer",
3
+ title: "REVIEWER//",
4
+ activeVerb: "reviewing",
5
+ idleVerb: "awaiting submissions",
6
+ info: {
7
+ title: "REVIEWER//",
8
+ lines: [
9
+ "Orchestrate background agents to automatically review goal implementations as soon as they submitted.",
10
+ "",
11
+ "Approved goals will get picked up by the codifier (if running).",
12
+ "Rejected goals will get requeued with documented issues to be resolved.",
13
+ ],
14
+ },
15
+ };
16
+ //# sourceMappingURL=ReviewerDaemonConstants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReviewerDaemonConstants.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,IAAI,EAAE,UAAU;IAChB,KAAK,EAAE,YAAY;IACnB,UAAU,EAAE,WAAW;IACvB,QAAQ,EAAE,sBAAsB;IAChC,IAAI,EAAE;QACJ,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE;YACL,uGAAuG;YACvG,EAAE;YACF,iEAAiE;YACjE,yEAAyE;SAC1E;KACF;CACkC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import type { IDaemonFrame } from "./IDaemonFrame.js";
3
+ export declare function ReviewerDaemonFrame({ frameIndex, snapshot, statusLabel, reviewerGlyphPalette, }: IDaemonFrame): React.ReactElement;
4
+ //# sourceMappingURL=ReviewerDaemonFrame.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReviewerDaemonFrame.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,wBAAgB,mBAAmB,CAAC,EAClC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,oBAAoB,GACrB,EAAE,YAAY,GAAG,KAAK,CAAC,YAAY,CASnC"}
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { GlyphCellDaemonFrame } from "../DaemonFrameViews.js";
3
+ import { getReviewerFrame } from "../CockpitDaemonFrames.js";
4
+ export function ReviewerDaemonFrame({ frameIndex, snapshot, statusLabel, reviewerGlyphPalette, }) {
5
+ return (React.createElement(GlyphCellDaemonFrame, { frame: getReviewerFrame(frameIndex, reviewerGlyphPalette), frameIndex: frameIndex, snapshot: snapshot, statusLabel: statusLabel }));
6
+ }
7
+ //# sourceMappingURL=ReviewerDaemonFrame.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReviewerDaemonFrame.js","sourceRoot":"","sources":["../../../../../src/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAG7D,MAAM,UAAU,mBAAmB,CAAC,EAClC,UAAU,EACV,QAAQ,EACR,WAAW,EACX,oBAAoB,GACP;IACb,OAAO,CACL,oBAAC,oBAAoB,IACnB,KAAK,EAAE,gBAAgB,CAAC,UAAU,EAAE,oBAAoB,CAAC,EACzD,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,QAAQ,EAClB,WAAW,EAAE,WAAW,GACxB,CACH,CAAC;AACJ,CAAC"}
@@ -0,0 +1,18 @@
1
+ import type { TuiDaemonConfig } from "./TuiDaemonConfig.js";
2
+ import type { TuiDaemonName } from "./TuiDaemonName.js";
3
+ import type { TuiSubprocessSnapshot } from "./TuiSubprocessSnapshot.js";
4
+ export type { TuiDaemonConfig, TuiDaemonConfigs } from "./TuiDaemonConfig.js";
5
+ export type { TuiDaemonEventSnapshot } from "./TuiDaemonEventSnapshot.js";
6
+ export type { TuiDaemonEventStatusValue as TuiDaemonEventStatus } from "./TuiDaemonEventStatus.js";
7
+ export type { TuiDaemonName } from "./TuiDaemonName.js";
8
+ export type { TuiDaemonCounts } from "./TuiDaemonCounts.js";
9
+ export type { TuiSubprocessSnapshot } from "./TuiSubprocessSnapshot.js";
10
+ export type { TuiSubprocessStatusValue as TuiSubprocessStatus } from "./TuiSubprocessStatus.js";
11
+ export interface ISubprocessManager {
12
+ spawn(name: TuiDaemonName, config?: Partial<TuiDaemonConfig>): Promise<TuiSubprocessSnapshot>;
13
+ terminate(name: TuiDaemonName): Promise<TuiSubprocessSnapshot>;
14
+ terminateAll(): Promise<void>;
15
+ getStatus(name: TuiDaemonName): TuiSubprocessSnapshot;
16
+ getAllStatuses(): readonly TuiSubprocessSnapshot[];
17
+ }
18
+ //# sourceMappingURL=ISubprocessManager.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ISubprocessManager.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/ISubprocessManager.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAExE,YAAY,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAC9E,YAAY,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAC1E,YAAY,EAAE,yBAAyB,IAAI,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACnG,YAAY,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,YAAY,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC5D,YAAY,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACxE,YAAY,EAAE,wBAAwB,IAAI,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAEhG,MAAM,WAAW,kBAAkB;IACjC,KAAK,CAAC,IAAI,EAAE,aAAa,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAC9F,SAAS,CAAC,IAAI,EAAE,aAAa,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAC/D,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9B,SAAS,CAAC,IAAI,EAAE,aAAa,GAAG,qBAAqB,CAAC;IACtD,cAAc,IAAI,SAAS,qBAAqB,EAAE,CAAC;CACpD"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=ISubprocessManager.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ISubprocessManager.js","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/ISubprocessManager.ts"],"names":[],"mappings":""}
@@ -0,0 +1,11 @@
1
+ import { ISubprocessManager, TuiDaemonName, TuiSubprocessSnapshot } from "./ISubprocessManager.js";
2
+ export declare class NoOpSubprocessManager implements ISubprocessManager {
3
+ private readonly snapshots;
4
+ spawn(name: TuiDaemonName): Promise<TuiSubprocessSnapshot>;
5
+ terminate(name: TuiDaemonName): Promise<TuiSubprocessSnapshot>;
6
+ terminateAll(): Promise<void>;
7
+ getStatus(name: TuiDaemonName): TuiSubprocessSnapshot;
8
+ getAllStatuses(): readonly TuiSubprocessSnapshot[];
9
+ private createStoppedSnapshot;
10
+ }
11
+ //# sourceMappingURL=NoOpSubprocessManager.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NoOpSubprocessManager.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,aAAa,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAOnG,qBAAa,qBAAsB,YAAW,kBAAkB;IAC9D,OAAO,CAAC,QAAQ,CAAC,SAAS,CAExB;IAEI,KAAK,CAAC,IAAI,EAAE,aAAa,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAI1D,SAAS,CAAC,IAAI,EAAE,aAAa,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAI9D,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC;IAEnC,SAAS,CAAC,IAAI,EAAE,aAAa,GAAG,qBAAqB;IAIrD,cAAc,IAAI,SAAS,qBAAqB,EAAE;IAIlD,OAAO,CAAC,qBAAqB;CAU9B"}
@@ -0,0 +1,31 @@
1
+ import { DEFAULT_WORKER_DAEMON_CONFIG, WORKER_DAEMON_NAMES, } from "../../../application/daemons/WorkerDaemonCatalog.js";
2
+ import { TuiSubprocessStatus } from "./TuiSubprocessStatus.js";
3
+ export class NoOpSubprocessManager {
4
+ constructor() {
5
+ this.snapshots = new Map(WORKER_DAEMON_NAMES.map((name) => [name, this.createStoppedSnapshot(name)]));
6
+ }
7
+ async spawn(name) {
8
+ return this.getStatus(name);
9
+ }
10
+ async terminate(name) {
11
+ return this.getStatus(name);
12
+ }
13
+ async terminateAll() { }
14
+ getStatus(name) {
15
+ return this.snapshots.get(name) ?? this.createStoppedSnapshot(name);
16
+ }
17
+ getAllStatuses() {
18
+ return Array.from(this.snapshots.values());
19
+ }
20
+ createStoppedSnapshot(name) {
21
+ return {
22
+ name,
23
+ status: TuiSubprocessStatus.STOPPED,
24
+ config: DEFAULT_WORKER_DAEMON_CONFIG,
25
+ stdout: [],
26
+ stderr: [],
27
+ events: [],
28
+ };
29
+ }
30
+ }
31
+ //# sourceMappingURL=NoOpSubprocessManager.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NoOpSubprocessManager.js","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.ts"],"names":[],"mappings":"AACA,OAAO,EACL,4BAA4B,EAC5B,mBAAmB,GACpB,MAAM,qDAAqD,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D,MAAM,OAAO,qBAAqB;IAAlC;QACmB,cAAS,GAA8C,IAAI,GAAG,CAC7E,mBAAmB,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC,CAAC,CAC5E,CAAC;IA8BJ,CAAC;IA5BC,KAAK,CAAC,KAAK,CAAC,IAAmB;QAC7B,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IAC9B,CAAC;IAED,KAAK,CAAC,SAAS,CAAC,IAAmB;QACjC,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IAC9B,CAAC;IAED,KAAK,CAAC,YAAY,KAAmB,CAAC;IAEtC,SAAS,CAAC,IAAmB;QAC3B,OAAO,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;IACtE,CAAC;IAED,cAAc;QACZ,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,CAAC,CAAC;IAC7C,CAAC;IAEO,qBAAqB,CAAC,IAAmB;QAC/C,OAAO;YACL,IAAI;YACJ,MAAM,EAAE,mBAAmB,CAAC,OAAO;YACnC,MAAM,EAAE,4BAA4B;YACpC,MAAM,EAAE,EAAE;YACV,MAAM,EAAE,EAAE;YACV,MAAM,EAAE,EAAE;SACX,CAAC;IACJ,CAAC;CACF"}
@@ -0,0 +1,3 @@
1
+ import type { ISubprocessManager } from "./ISubprocessManager.js";
2
+ export declare const SubprocessManagerContext: import("react").Context<ISubprocessManager>;
3
+ //# sourceMappingURL=SubprocessManagerContext.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubprocessManagerContext.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/SubprocessManagerContext.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAGlE,eAAO,MAAM,wBAAwB,6CAEpC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { createContext } from "react";
2
+ import { NoOpSubprocessManager } from "./NoOpSubprocessManager.js";
3
+ export const SubprocessManagerContext = createContext(new NoOpSubprocessManager());
4
+ //# sourceMappingURL=SubprocessManagerContext.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubprocessManagerContext.js","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/SubprocessManagerContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE,MAAM,CAAC,MAAM,wBAAwB,GAAG,aAAa,CACnD,IAAI,qBAAqB,EAAE,CAC5B,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import type { ISubprocessManager } from "./ISubprocessManager.js";
3
+ export interface SubprocessManagerProviderProps {
4
+ readonly manager: ISubprocessManager;
5
+ readonly children: React.ReactNode;
6
+ }
7
+ export declare function SubprocessManagerProvider({ manager, children, }: SubprocessManagerProviderProps): React.ReactElement;
8
+ //# sourceMappingURL=SubprocessManagerProvider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubprocessManagerProvider.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAGlE,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAC;IACrC,QAAQ,CAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CACpC;AAED,wBAAgB,yBAAyB,CAAC,EACxC,OAAO,EACP,QAAQ,GACT,EAAE,8BAA8B,GAAG,KAAK,CAAC,YAAY,CAMrD"}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { SubprocessManagerContext } from "./SubprocessManagerContext.js";
3
+ export function SubprocessManagerProvider({ manager, children, }) {
4
+ return (React.createElement(SubprocessManagerContext.Provider, { value: manager }, children));
5
+ }
6
+ //# sourceMappingURL=SubprocessManagerProvider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubprocessManagerProvider.js","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAOzE,MAAM,UAAU,yBAAyB,CAAC,EACxC,OAAO,EACP,QAAQ,GACuB;IAC/B,OAAO,CACL,oBAAC,wBAAwB,CAAC,QAAQ,IAAC,KAAK,EAAE,OAAO,IAC9C,QAAQ,CACyB,CACrC,CAAC;AACJ,CAAC"}
@@ -0,0 +1,2 @@
1
+ export type { WorkerDaemonConfig as TuiDaemonConfig, WorkerDaemonConfigs as TuiDaemonConfigs, } from "../../../application/daemons/WorkerDaemonCatalog.js";
2
+ //# sourceMappingURL=TuiDaemonConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TuiDaemonConfig.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/TuiDaemonConfig.ts"],"names":[],"mappings":"AACA,YAAY,EACV,kBAAkB,IAAI,eAAe,EACrC,mBAAmB,IAAI,gBAAgB,GACxC,MAAM,qDAAqD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=TuiDaemonConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TuiDaemonConfig.js","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/TuiDaemonConfig.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface TuiDaemonCounts {
2
+ readonly running: number;
3
+ readonly stopped: number;
4
+ readonly failed: number;
5
+ }
6
+ //# sourceMappingURL=TuiDaemonCounts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TuiDaemonCounts.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/TuiDaemonCounts.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;CACzB"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=TuiDaemonCounts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TuiDaemonCounts.js","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/TuiDaemonCounts.ts"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ export declare const TuiDaemonEventCategory: {
2
+ readonly MODEL_OUTPUT: "model-output";
3
+ readonly STOPPING: "stopping";
4
+ readonly STOPPED: "stopped";
5
+ readonly FAILED: "failed";
6
+ };
7
+ //# sourceMappingURL=TuiDaemonEventCategory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TuiDaemonEventCategory.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,sBAAsB;;;;;CAKzB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { TuiDaemonEventStatus } from "./TuiDaemonEventStatus.js";
2
+ export const TuiDaemonEventCategory = {
3
+ MODEL_OUTPUT: "model-output",
4
+ STOPPING: TuiDaemonEventStatus.STOPPING,
5
+ STOPPED: TuiDaemonEventStatus.STOPPED,
6
+ FAILED: TuiDaemonEventStatus.FAILED,
7
+ };
8
+ //# sourceMappingURL=TuiDaemonEventCategory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TuiDaemonEventCategory.js","sourceRoot":"","sources":["../../../../src/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACpC,YAAY,EAAE,cAAc;IAC5B,QAAQ,EAAE,oBAAoB,CAAC,QAAQ;IACvC,OAAO,EAAE,oBAAoB,CAAC,OAAO;IACrC,MAAM,EAAE,oBAAoB,CAAC,MAAM;CAC3B,CAAC"}