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.
- package/README.md +3 -3
- package/assets/skills/codify-jumbo-goal/SKILL.md +0 -6
- package/assets/skills/define-jumbo-goals/SKILL.md +24 -25
- package/assets/skills/jumbo-add-component/SKILL.md +9 -0
- package/assets/skills/jumbo-add-decision/SKILL.md +9 -0
- package/assets/skills/jumbo-add-dependency/SKILL.md +9 -0
- package/assets/skills/jumbo-add-guideline/SKILL.md +9 -0
- package/assets/skills/jumbo-add-invariant/SKILL.md +9 -0
- package/assets/skills/jumbo-design-goal/SKILL.md +1 -1
- package/assets/skills/refine-jumbo-goals/SKILL.md +4 -4
- package/dist/application/agents/AgentInvocation.d.ts +10 -0
- package/dist/application/agents/AgentInvocation.d.ts.map +1 -0
- package/dist/application/agents/AgentInvocation.js +2 -0
- package/dist/application/agents/AgentInvocation.js.map +1 -0
- package/dist/application/agents/IAgentGateway.d.ts +5 -0
- package/dist/application/agents/IAgentGateway.d.ts.map +1 -0
- package/dist/application/agents/IAgentGateway.js +2 -0
- package/dist/application/agents/IAgentGateway.js.map +1 -0
- package/dist/application/context/decisions/get/IDecisionViewReader.d.ts +7 -0
- package/dist/application/context/decisions/get/IDecisionViewReader.d.ts.map +1 -1
- package/dist/application/context/decisions/search/DecisionSearchCriteria.d.ts +17 -0
- package/dist/application/context/decisions/search/DecisionSearchCriteria.d.ts.map +1 -0
- package/dist/application/context/decisions/search/DecisionSearchCriteria.js +12 -0
- package/dist/application/context/decisions/search/DecisionSearchCriteria.js.map +1 -0
- package/dist/application/context/decisions/search/ISearchDecisionsGateway.d.ts +10 -0
- package/dist/application/context/decisions/search/ISearchDecisionsGateway.d.ts.map +1 -0
- package/dist/application/context/decisions/search/ISearchDecisionsGateway.js +6 -0
- package/dist/application/context/decisions/search/ISearchDecisionsGateway.js.map +1 -0
- package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.d.ts +14 -0
- package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.d.ts.map +1 -0
- package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.js +14 -0
- package/dist/application/context/decisions/search/LocalSearchDecisionsGateway.js.map +1 -0
- package/dist/application/context/decisions/search/SearchDecisionsController.d.ts +13 -0
- package/dist/application/context/decisions/search/SearchDecisionsController.d.ts.map +1 -0
- package/dist/application/context/decisions/search/SearchDecisionsController.js +13 -0
- package/dist/application/context/decisions/search/SearchDecisionsController.js.map +1 -0
- package/dist/application/context/decisions/search/SearchDecisionsRequest.d.ts +8 -0
- package/dist/application/context/decisions/search/SearchDecisionsRequest.d.ts.map +1 -0
- package/dist/application/context/decisions/search/SearchDecisionsRequest.js +5 -0
- package/dist/application/context/decisions/search/SearchDecisionsRequest.js.map +1 -0
- package/dist/application/context/decisions/search/SearchDecisionsResponse.d.ts +8 -0
- package/dist/application/context/decisions/search/SearchDecisionsResponse.d.ts.map +1 -0
- package/dist/application/context/decisions/search/SearchDecisionsResponse.js +5 -0
- package/dist/application/context/decisions/search/SearchDecisionsResponse.js.map +1 -0
- package/dist/application/context/dependencies/get/IDependencyViewReader.d.ts +7 -0
- package/dist/application/context/dependencies/get/IDependencyViewReader.d.ts.map +1 -1
- package/dist/application/context/dependencies/search/DependencySearchCriteria.d.ts +22 -0
- package/dist/application/context/dependencies/search/DependencySearchCriteria.d.ts.map +1 -0
- package/dist/application/context/dependencies/search/DependencySearchCriteria.js +12 -0
- package/dist/application/context/dependencies/search/DependencySearchCriteria.js.map +1 -0
- package/dist/application/context/dependencies/search/ISearchDependenciesGateway.d.ts +10 -0
- package/dist/application/context/dependencies/search/ISearchDependenciesGateway.d.ts.map +1 -0
- package/dist/application/context/dependencies/search/ISearchDependenciesGateway.js +6 -0
- package/dist/application/context/dependencies/search/ISearchDependenciesGateway.js.map +1 -0
- package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.d.ts +14 -0
- package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.d.ts.map +1 -0
- package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.js +14 -0
- package/dist/application/context/dependencies/search/LocalSearchDependenciesGateway.js.map +1 -0
- package/dist/application/context/dependencies/search/SearchDependenciesController.d.ts +13 -0
- package/dist/application/context/dependencies/search/SearchDependenciesController.d.ts.map +1 -0
- package/dist/application/context/dependencies/search/SearchDependenciesController.js +13 -0
- package/dist/application/context/dependencies/search/SearchDependenciesController.js.map +1 -0
- package/dist/application/context/dependencies/search/SearchDependenciesRequest.d.ts +8 -0
- package/dist/application/context/dependencies/search/SearchDependenciesRequest.d.ts.map +1 -0
- package/dist/application/context/dependencies/search/SearchDependenciesRequest.js +5 -0
- package/dist/application/context/dependencies/search/SearchDependenciesRequest.js.map +1 -0
- package/dist/application/context/dependencies/search/SearchDependenciesResponse.d.ts +8 -0
- package/dist/application/context/dependencies/search/SearchDependenciesResponse.d.ts.map +1 -0
- package/dist/application/context/dependencies/search/SearchDependenciesResponse.js +5 -0
- package/dist/application/context/dependencies/search/SearchDependenciesResponse.js.map +1 -0
- package/dist/application/context/goals/codify/CodifierProcessManager.d.ts +34 -0
- package/dist/application/context/goals/codify/CodifierProcessManager.d.ts.map +1 -0
- package/dist/application/context/goals/codify/CodifierProcessManager.js +177 -0
- package/dist/application/context/goals/codify/CodifierProcessManager.js.map +1 -0
- package/dist/application/context/goals/refine/RefinerProcessManager.d.ts +28 -0
- package/dist/application/context/goals/refine/RefinerProcessManager.d.ts.map +1 -0
- package/dist/application/context/goals/refine/RefinerProcessManager.js +163 -0
- package/dist/application/context/goals/refine/RefinerProcessManager.js.map +1 -0
- package/dist/application/context/goals/review/ReviewerProcessManager.d.ts +28 -0
- package/dist/application/context/goals/review/ReviewerProcessManager.d.ts.map +1 -0
- package/dist/application/context/goals/review/ReviewerProcessManager.js +174 -0
- package/dist/application/context/goals/review/ReviewerProcessManager.js.map +1 -0
- package/dist/application/context/guidelines/get/IGuidelineViewReader.d.ts +7 -0
- package/dist/application/context/guidelines/get/IGuidelineViewReader.d.ts.map +1 -1
- package/dist/application/context/guidelines/search/GuidelineSearchCriteria.d.ts +17 -0
- package/dist/application/context/guidelines/search/GuidelineSearchCriteria.d.ts.map +1 -0
- package/dist/application/context/guidelines/search/GuidelineSearchCriteria.js +12 -0
- package/dist/application/context/guidelines/search/GuidelineSearchCriteria.js.map +1 -0
- package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.d.ts +10 -0
- package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.d.ts.map +1 -0
- package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.js +6 -0
- package/dist/application/context/guidelines/search/ISearchGuidelinesGateway.js.map +1 -0
- package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.d.ts +14 -0
- package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.d.ts.map +1 -0
- package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.js +14 -0
- package/dist/application/context/guidelines/search/LocalSearchGuidelinesGateway.js.map +1 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesController.d.ts +13 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesController.d.ts.map +1 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesController.js +13 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesController.js.map +1 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesRequest.d.ts +8 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesRequest.d.ts.map +1 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesRequest.js +5 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesRequest.js.map +1 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesResponse.d.ts +8 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesResponse.d.ts.map +1 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesResponse.js +5 -0
- package/dist/application/context/guidelines/search/SearchGuidelinesResponse.js.map +1 -0
- package/dist/application/context/invariants/get/IInvariantViewReader.d.ts +7 -0
- package/dist/application/context/invariants/get/IInvariantViewReader.d.ts.map +1 -1
- package/dist/application/context/invariants/search/ISearchInvariantsGateway.d.ts +10 -0
- package/dist/application/context/invariants/search/ISearchInvariantsGateway.d.ts.map +1 -0
- package/dist/application/context/invariants/search/ISearchInvariantsGateway.js +6 -0
- package/dist/application/context/invariants/search/ISearchInvariantsGateway.js.map +1 -0
- package/dist/application/context/invariants/search/InvariantSearchCriteria.d.ts +14 -0
- package/dist/application/context/invariants/search/InvariantSearchCriteria.d.ts.map +1 -0
- package/dist/application/context/invariants/search/InvariantSearchCriteria.js +11 -0
- package/dist/application/context/invariants/search/InvariantSearchCriteria.js.map +1 -0
- package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.d.ts +14 -0
- package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.d.ts.map +1 -0
- package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.js +14 -0
- package/dist/application/context/invariants/search/LocalSearchInvariantsGateway.js.map +1 -0
- package/dist/application/context/invariants/search/SearchInvariantsController.d.ts +13 -0
- package/dist/application/context/invariants/search/SearchInvariantsController.d.ts.map +1 -0
- package/dist/application/context/invariants/search/SearchInvariantsController.js +13 -0
- package/dist/application/context/invariants/search/SearchInvariantsController.js.map +1 -0
- package/dist/application/context/invariants/search/SearchInvariantsRequest.d.ts +8 -0
- package/dist/application/context/invariants/search/SearchInvariantsRequest.d.ts.map +1 -0
- package/dist/application/context/invariants/search/SearchInvariantsRequest.js +5 -0
- package/dist/application/context/invariants/search/SearchInvariantsRequest.js.map +1 -0
- package/dist/application/context/invariants/search/SearchInvariantsResponse.d.ts +8 -0
- package/dist/application/context/invariants/search/SearchInvariantsResponse.d.ts.map +1 -0
- package/dist/application/context/invariants/search/SearchInvariantsResponse.js +5 -0
- package/dist/application/context/invariants/search/SearchInvariantsResponse.js.map +1 -0
- package/dist/application/context/project/ProjectKnowledgeInventoryView.d.ts +12 -0
- package/dist/application/context/project/ProjectKnowledgeInventoryView.d.ts.map +1 -0
- package/dist/application/context/project/ProjectKnowledgeInventoryView.js +2 -0
- package/dist/application/context/project/ProjectKnowledgeInventoryView.js.map +1 -0
- package/dist/application/context/project/ProjectLifecycleState.d.ts +7 -0
- package/dist/application/context/project/ProjectLifecycleState.d.ts.map +1 -0
- package/dist/application/context/project/ProjectLifecycleState.js +2 -0
- package/dist/application/context/project/ProjectLifecycleState.js.map +1 -0
- package/dist/application/context/project/ProjectSummaryView.d.ts +2 -0
- package/dist/application/context/project/ProjectSummaryView.d.ts.map +1 -1
- package/dist/application/context/project/ProjectView.d.ts +2 -0
- package/dist/application/context/project/ProjectView.d.ts.map +1 -1
- package/dist/application/context/project/query/GetProjectSummaryQueryHandler.d.ts.map +1 -1
- package/dist/application/context/project/query/GetProjectSummaryQueryHandler.js +3 -0
- package/dist/application/context/project/query/GetProjectSummaryQueryHandler.js.map +1 -1
- package/dist/application/context/project/query/IProjectContextReader.d.ts +10 -0
- package/dist/application/context/project/query/IProjectContextReader.d.ts.map +1 -1
- package/dist/application/context/project/query/ProjectLifecycleClassifier.d.ts +9 -0
- package/dist/application/context/project/query/ProjectLifecycleClassifier.d.ts.map +1 -0
- package/dist/application/context/project/query/ProjectLifecycleClassifier.js +18 -0
- package/dist/application/context/project/query/ProjectLifecycleClassifier.js.map +1 -0
- package/dist/application/context/project/query/north-star/ProjectNorthStarView.d.ts +20 -0
- package/dist/application/context/project/query/north-star/ProjectNorthStarView.d.ts.map +1 -0
- package/dist/application/context/project/query/north-star/ProjectNorthStarView.js +2 -0
- package/dist/application/context/project/query/north-star/ProjectNorthStarView.js.map +1 -0
- package/dist/application/context/project/show/IShowProjectGateway.d.ts +6 -0
- package/dist/application/context/project/show/IShowProjectGateway.d.ts.map +1 -0
- package/dist/application/context/project/show/IShowProjectGateway.js +2 -0
- package/dist/application/context/project/show/IShowProjectGateway.js.map +1 -0
- package/dist/application/context/project/show/LocalShowProjectGateway.d.ts +16 -0
- package/dist/application/context/project/show/LocalShowProjectGateway.d.ts.map +1 -0
- package/dist/application/context/project/show/LocalShowProjectGateway.js +32 -0
- package/dist/application/context/project/show/LocalShowProjectGateway.js.map +1 -0
- package/dist/application/context/project/show/ShowProjectController.d.ts +9 -0
- package/dist/application/context/project/show/ShowProjectController.d.ts.map +1 -0
- package/dist/application/context/project/show/ShowProjectController.js +9 -0
- package/dist/application/context/project/show/ShowProjectController.js.map +1 -0
- package/dist/application/context/project/show/ShowProjectRequest.d.ts +4 -0
- package/dist/application/context/project/show/ShowProjectRequest.d.ts.map +1 -0
- package/dist/application/context/project/show/ShowProjectRequest.js +2 -0
- package/dist/application/context/project/show/ShowProjectRequest.js.map +1 -0
- package/dist/application/context/project/show/ShowProjectResponse.d.ts +7 -0
- package/dist/application/context/project/show/ShowProjectResponse.d.ts.map +1 -0
- package/dist/application/context/project/show/ShowProjectResponse.js +2 -0
- package/dist/application/context/project/show/ShowProjectResponse.js.map +1 -0
- package/dist/application/context/sessions/get/SessionContext.d.ts +2 -2
- package/dist/application/context/sessions/get/SessionContextQueryHandler.d.ts +1 -1
- package/dist/application/context/sessions/get/SessionContextQueryHandler.d.ts.map +1 -1
- package/dist/application/context/sessions/get/SessionContextQueryHandler.js +3 -1
- package/dist/application/context/sessions/get/SessionContextQueryHandler.js.map +1 -1
- package/dist/application/context/sessions/start/LocalStartSessionGateway.d.ts +2 -7
- package/dist/application/context/sessions/start/LocalStartSessionGateway.d.ts.map +1 -1
- package/dist/application/context/sessions/start/LocalStartSessionGateway.js +4 -35
- package/dist/application/context/sessions/start/LocalStartSessionGateway.js.map +1 -1
- package/dist/application/context/sessions/start/SessionStartResponse.d.ts +4 -4
- package/dist/application/context/sessions/start/SessionStartResponse.d.ts.map +1 -1
- package/dist/application/daemons/IProcessManager.d.ts +28 -0
- package/dist/application/daemons/IProcessManager.d.ts.map +1 -0
- package/dist/application/daemons/IProcessManager.js +2 -0
- package/dist/application/daemons/IProcessManager.js.map +1 -0
- package/dist/application/daemons/IShutdownSignal.d.ts +5 -0
- package/dist/application/daemons/IShutdownSignal.d.ts.map +1 -0
- package/dist/application/daemons/IShutdownSignal.js +2 -0
- package/dist/application/daemons/IShutdownSignal.js.map +1 -0
- package/dist/application/daemons/ITicker.d.ts +4 -0
- package/dist/application/daemons/ITicker.d.ts.map +1 -0
- package/dist/application/daemons/ITicker.js +2 -0
- package/dist/application/daemons/ITicker.js.map +1 -0
- package/dist/application/daemons/IWorkerDaemonProcessController.d.ts +30 -0
- package/dist/application/daemons/IWorkerDaemonProcessController.d.ts.map +1 -0
- package/dist/application/daemons/IWorkerDaemonProcessController.js +2 -0
- package/dist/application/daemons/IWorkerDaemonProcessController.js.map +1 -0
- package/dist/application/daemons/PollingLoop.d.ts +13 -0
- package/dist/application/daemons/PollingLoop.d.ts.map +1 -0
- package/dist/application/daemons/PollingLoop.js +15 -0
- package/dist/application/daemons/PollingLoop.js.map +1 -0
- package/dist/application/daemons/WorkerDaemonCatalog.d.ts +11 -0
- package/dist/application/daemons/WorkerDaemonCatalog.d.ts.map +1 -0
- package/dist/application/daemons/WorkerDaemonCatalog.js +12 -0
- package/dist/application/daemons/WorkerDaemonCatalog.js.map +1 -0
- package/dist/application/host/IApplicationContainer.d.ts +6 -0
- package/dist/application/host/IApplicationContainer.d.ts.map +1 -1
- package/dist/application/settings/Settings.d.ts +11 -0
- package/dist/application/settings/Settings.d.ts.map +1 -1
- package/dist/cli.js +68 -5
- package/dist/cli.js.map +1 -1
- package/dist/domain/architecture/define/ArchitectureDefinedEvent.d.ts +2 -1
- package/dist/domain/architecture/define/ArchitectureDefinedEvent.d.ts.map +1 -1
- package/dist/domain/architecture/update/ArchitectureUpdatedEvent.d.ts +2 -1
- package/dist/domain/architecture/update/ArchitectureUpdatedEvent.d.ts.map +1 -1
- package/dist/domain/audience-pains/add/AudiencePainAddedEvent.d.ts +2 -1
- package/dist/domain/audience-pains/add/AudiencePainAddedEvent.d.ts.map +1 -1
- package/dist/domain/audience-pains/update/AudiencePainUpdatedEvent.d.ts +2 -1
- package/dist/domain/audience-pains/update/AudiencePainUpdatedEvent.d.ts.map +1 -1
- package/dist/domain/audiences/add/AudienceAddedEvent.d.ts +2 -2
- package/dist/domain/audiences/add/AudienceAddedEvent.d.ts.map +1 -1
- package/dist/domain/audiences/remove/AudienceRemovedEvent.d.ts +2 -1
- package/dist/domain/audiences/remove/AudienceRemovedEvent.d.ts.map +1 -1
- package/dist/domain/audiences/update/AudienceUpdatedEvent.d.ts +2 -2
- package/dist/domain/audiences/update/AudienceUpdatedEvent.d.ts.map +1 -1
- package/dist/domain/components/add/ComponentAddedEvent.d.ts +2 -2
- package/dist/domain/components/add/ComponentAddedEvent.d.ts.map +1 -1
- package/dist/domain/components/deprecate/ComponentDeprecatedEvent.d.ts +2 -2
- package/dist/domain/components/deprecate/ComponentDeprecatedEvent.d.ts.map +1 -1
- package/dist/domain/components/remove/ComponentRemovedEvent.d.ts +2 -2
- package/dist/domain/components/remove/ComponentRemovedEvent.d.ts.map +1 -1
- package/dist/domain/components/update/ComponentUpdatedEvent.d.ts +2 -2
- package/dist/domain/components/update/ComponentUpdatedEvent.d.ts.map +1 -1
- package/dist/domain/goals/unblock/GoalUnblockedEvent.d.ts +2 -2
- package/dist/domain/goals/unblock/GoalUnblockedEvent.d.ts.map +1 -1
- package/dist/domain/guidelines/add/GuidelineAddedEvent.d.ts +2 -2
- package/dist/domain/guidelines/add/GuidelineAddedEvent.d.ts.map +1 -1
- package/dist/domain/guidelines/remove/GuidelineRemovedEvent.d.ts +2 -1
- package/dist/domain/guidelines/remove/GuidelineRemovedEvent.d.ts.map +1 -1
- package/dist/domain/guidelines/update/GuidelineUpdatedEvent.d.ts +2 -2
- package/dist/domain/guidelines/update/GuidelineUpdatedEvent.d.ts.map +1 -1
- package/dist/domain/invariants/add/InvariantAddedEvent.d.ts +2 -1
- package/dist/domain/invariants/add/InvariantAddedEvent.d.ts.map +1 -1
- package/dist/domain/invariants/remove/InvariantRemovedEvent.d.ts +2 -1
- package/dist/domain/invariants/remove/InvariantRemovedEvent.d.ts.map +1 -1
- package/dist/domain/invariants/update/InvariantUpdatedEvent.d.ts +2 -1
- package/dist/domain/invariants/update/InvariantUpdatedEvent.d.ts.map +1 -1
- package/dist/domain/project/Constants.d.ts +7 -0
- package/dist/domain/project/Constants.d.ts.map +1 -1
- package/dist/domain/project/Constants.js +7 -0
- package/dist/domain/project/Constants.js.map +1 -1
- package/dist/domain/project/JumboMdContent.js +1 -1
- package/dist/domain/project/ProjectLifecyle.d.ts +7 -0
- package/dist/domain/project/ProjectLifecyle.d.ts.map +1 -0
- package/dist/domain/project/ProjectLifecyle.js +8 -0
- package/dist/domain/project/ProjectLifecyle.js.map +1 -0
- package/dist/domain/relations/Constants.d.ts +6 -0
- package/dist/domain/relations/Constants.d.ts.map +1 -1
- package/dist/domain/relations/Constants.js +6 -0
- package/dist/domain/relations/Constants.js.map +1 -1
- package/dist/domain/relations/Relation.d.ts +2 -2
- package/dist/domain/relations/Relation.d.ts.map +1 -1
- package/dist/domain/relations/Relation.js +10 -10
- package/dist/domain/relations/Relation.js.map +1 -1
- package/dist/domain/relations/add/RelationAddedEvent.d.ts +2 -2
- package/dist/domain/relations/add/RelationAddedEvent.d.ts.map +1 -1
- package/dist/domain/relations/remove/RelationRemovedEvent.d.ts +2 -2
- package/dist/domain/relations/remove/RelationRemovedEvent.d.ts.map +1 -1
- package/dist/domain/value-propositions/add/ValuePropositionAddedEvent.d.ts +2 -1
- package/dist/domain/value-propositions/add/ValuePropositionAddedEvent.d.ts.map +1 -1
- package/dist/domain/value-propositions/remove/ValuePropositionRemovedEvent.d.ts +2 -1
- package/dist/domain/value-propositions/remove/ValuePropositionRemovedEvent.d.ts.map +1 -1
- package/dist/domain/value-propositions/update/ValuePropositionUpdatedEvent.d.ts +2 -1
- package/dist/domain/value-propositions/update/ValuePropositionUpdatedEvent.d.ts.map +1 -1
- package/dist/infrastructure/agents/AgentCliGateway.d.ts +15 -0
- package/dist/infrastructure/agents/AgentCliGateway.d.ts.map +1 -0
- package/dist/infrastructure/agents/AgentCliGateway.js +102 -0
- package/dist/infrastructure/agents/AgentCliGateway.js.map +1 -0
- package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.d.ts +8 -0
- package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.d.ts.map +1 -1
- package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.js +45 -0
- package/dist/infrastructure/context/decisions/get/SqliteDecisionViewReader.js.map +1 -1
- package/dist/infrastructure/context/decisions/migrations/002-add-decision-search-indexes.sql +11 -0
- package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.d.ts +3 -0
- package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.d.ts.map +1 -1
- package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.js +57 -0
- package/dist/infrastructure/context/dependencies/get/SqliteDependencyViewReader.js.map +1 -1
- package/dist/infrastructure/context/dependencies/migrations/003-add-dependency-search-indexes.sql +12 -0
- package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.d.ts +8 -0
- package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.d.ts.map +1 -1
- package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.js +31 -0
- package/dist/infrastructure/context/guidelines/get/SqliteGuidelineViewReader.js.map +1 -1
- package/dist/infrastructure/context/guidelines/migrations/003-add-guideline-search-indexes.sql +17 -0
- package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.d.ts +8 -0
- package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.d.ts.map +1 -1
- package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.js +31 -0
- package/dist/infrastructure/context/invariants/get/SqliteInvariantViewReader.js.map +1 -1
- package/dist/infrastructure/context/invariants/migrations/003-add-invariant-search-indexes.sql +6 -0
- package/dist/infrastructure/context/project/init/CodexConfigurer.d.ts +19 -6
- package/dist/infrastructure/context/project/init/CodexConfigurer.d.ts.map +1 -1
- package/dist/infrastructure/context/project/init/CodexConfigurer.js +177 -9
- package/dist/infrastructure/context/project/init/CodexConfigurer.js.map +1 -1
- package/dist/infrastructure/context/project/query/SqliteProjectContextReader.d.ts +5 -0
- package/dist/infrastructure/context/project/query/SqliteProjectContextReader.d.ts.map +1 -1
- package/dist/infrastructure/context/project/query/SqliteProjectContextReader.js +34 -2
- package/dist/infrastructure/context/project/query/SqliteProjectContextReader.js.map +1 -1
- package/dist/infrastructure/daemons/IntervalTicker.d.ts +7 -0
- package/dist/infrastructure/daemons/IntervalTicker.d.ts.map +1 -0
- package/dist/infrastructure/daemons/IntervalTicker.js +11 -0
- package/dist/infrastructure/daemons/IntervalTicker.js.map +1 -0
- package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.d.ts +12 -0
- package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.d.ts.map +1 -0
- package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.js +56 -0
- package/dist/infrastructure/daemons/NodeWorkerDaemonProcessController.js.map +1 -0
- package/dist/infrastructure/daemons/ProcessSignalSource.d.ts +10 -0
- package/dist/infrastructure/daemons/ProcessSignalSource.d.ts.map +1 -0
- package/dist/infrastructure/daemons/ProcessSignalSource.js +24 -0
- package/dist/infrastructure/daemons/ProcessSignalSource.js.map +1 -0
- package/dist/infrastructure/host/HostBuilder.d.ts.map +1 -1
- package/dist/infrastructure/host/HostBuilder.js +16 -1
- package/dist/infrastructure/host/HostBuilder.js.map +1 -1
- package/dist/infrastructure/logging/FileLogger.js +1 -1
- package/dist/infrastructure/settings/DefaultSettings.d.ts.map +1 -1
- package/dist/infrastructure/settings/DefaultSettings.js +3 -0
- package/dist/infrastructure/settings/DefaultSettings.js.map +1 -1
- package/dist/infrastructure/settings/FsSettingsInitializer.d.ts.map +1 -1
- package/dist/infrastructure/settings/FsSettingsInitializer.js +6 -0
- package/dist/infrastructure/settings/FsSettingsInitializer.js.map +1 -1
- package/dist/infrastructure/settings/FsSettingsReader.d.ts.map +1 -1
- package/dist/infrastructure/settings/FsSettingsReader.js +10 -0
- package/dist/infrastructure/settings/FsSettingsReader.js.map +1 -1
- package/dist/presentation/cli/AppRunner.d.ts +7 -1
- package/dist/presentation/cli/AppRunner.d.ts.map +1 -1
- package/dist/presentation/cli/AppRunner.js +10 -5
- package/dist/presentation/cli/AppRunner.js.map +1 -1
- package/dist/presentation/cli/CliBootstrapPlan.d.ts +12 -0
- package/dist/presentation/cli/CliBootstrapPlan.d.ts.map +1 -0
- package/dist/presentation/cli/CliBootstrapPlan.js +23 -0
- package/dist/presentation/cli/CliBootstrapPlan.js.map +1 -0
- package/dist/presentation/cli/banner/AnimationFrames.d.ts +6 -1
- package/dist/presentation/cli/banner/AnimationFrames.d.ts.map +1 -1
- package/dist/presentation/cli/banner/AnimationFrames.js +307 -288
- package/dist/presentation/cli/banner/AnimationFrames.js.map +1 -1
- package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.d.ts +17 -0
- package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.d.ts.map +1 -0
- package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.js +90 -0
- package/dist/presentation/cli/commands/decisions/search/DecisionSearchOutputBuilder.js.map +1 -0
- package/dist/presentation/cli/commands/decisions/search/decisions.search.d.ts +22 -0
- package/dist/presentation/cli/commands/decisions/search/decisions.search.d.ts.map +1 -0
- package/dist/presentation/cli/commands/decisions/search/decisions.search.js +93 -0
- package/dist/presentation/cli/commands/decisions/search/decisions.search.js.map +1 -0
- package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.d.ts +16 -0
- package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.d.ts.map +1 -0
- package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.js +85 -0
- package/dist/presentation/cli/commands/dependencies/search/DependencySearchOutputBuilder.js.map +1 -0
- package/dist/presentation/cli/commands/dependencies/search/dependencies.search.d.ts +21 -0
- package/dist/presentation/cli/commands/dependencies/search/dependencies.search.d.ts.map +1 -0
- package/dist/presentation/cli/commands/dependencies/search/dependencies.search.js +111 -0
- package/dist/presentation/cli/commands/dependencies/search/dependencies.search.js.map +1 -0
- package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.d.ts +22 -0
- package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.d.ts.map +1 -0
- package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.js +86 -0
- package/dist/presentation/cli/commands/guidelines/search/GuidelineSearchOutputBuilder.js.map +1 -0
- package/dist/presentation/cli/commands/guidelines/search/guidelines.search.d.ts +21 -0
- package/dist/presentation/cli/commands/guidelines/search/guidelines.search.d.ts.map +1 -0
- package/dist/presentation/cli/commands/guidelines/search/guidelines.search.js +92 -0
- package/dist/presentation/cli/commands/guidelines/search/guidelines.search.js.map +1 -0
- package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.d.ts +22 -0
- package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.d.ts.map +1 -0
- package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.js +79 -0
- package/dist/presentation/cli/commands/invariants/search/InvariantSearchOutputBuilder.js.map +1 -0
- package/dist/presentation/cli/commands/invariants/search/invariants.search.d.ts +20 -0
- package/dist/presentation/cli/commands/invariants/search/invariants.search.d.ts.map +1 -0
- package/dist/presentation/cli/commands/invariants/search/invariants.search.js +80 -0
- package/dist/presentation/cli/commands/invariants/search/invariants.search.js.map +1 -0
- package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.d.ts +14 -0
- package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.d.ts.map +1 -0
- package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.js +84 -0
- package/dist/presentation/cli/commands/project/show/ProjectShowOutputBuilder.js.map +1 -0
- package/dist/presentation/cli/commands/project/show/project.show.d.ts +12 -0
- package/dist/presentation/cli/commands/project/show/project.show.d.ts.map +1 -0
- package/dist/presentation/cli/commands/project/show/project.show.js +59 -0
- package/dist/presentation/cli/commands/project/show/project.show.js.map +1 -0
- package/dist/presentation/cli/commands/registry/generated-commands.d.ts.map +1 -1
- package/dist/presentation/cli/commands/registry/generated-commands.js +30 -0
- package/dist/presentation/cli/commands/registry/generated-commands.js.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.d.ts +1 -1
- package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.d.ts.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.js +3 -2
- package/dist/presentation/cli/commands/sessions/start/SessionContextOutputBuilder.js.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.d.ts +8 -9
- package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.d.ts.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.js +107 -42
- package/dist/presentation/cli/commands/sessions/start/SessionStartOutputBuilder.js.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.d.ts +3 -2
- package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.d.ts.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.js +24 -10
- package/dist/presentation/cli/commands/sessions/start/SessionStartTextRenderer.js.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/session.start.d.ts.map +1 -1
- package/dist/presentation/cli/commands/sessions/start/session.start.js +2 -5
- package/dist/presentation/cli/commands/sessions/start/session.start.js.map +1 -1
- package/dist/presentation/cli/commands/work/shared/AgentSpawner.d.ts +7 -4
- package/dist/presentation/cli/commands/work/shared/AgentSpawner.d.ts.map +1 -1
- package/dist/presentation/cli/commands/work/shared/AgentSpawner.js +11 -4
- package/dist/presentation/cli/commands/work/shared/AgentSpawner.js.map +1 -1
- package/dist/presentation/shared/DesignTokens.d.ts +94 -0
- package/dist/presentation/shared/DesignTokens.d.ts.map +1 -0
- package/dist/presentation/shared/DesignTokens.js +94 -0
- package/dist/presentation/shared/DesignTokens.js.map +1 -0
- package/dist/presentation/tui/Constants.d.ts +18 -0
- package/dist/presentation/tui/Constants.d.ts.map +1 -0
- package/dist/presentation/tui/Constants.js +28 -0
- package/dist/presentation/tui/Constants.js.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.d.ts +6 -0
- package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.d.ts.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.js +18 -0
- package/dist/presentation/tui/action-dispatch/TuiActionDispatcher.js.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.d.ts +4 -0
- package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.d.ts.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.js +9 -0
- package/dist/presentation/tui/action-dispatch/TuiActionErrorNormalizer.js.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiActionResult.d.ts +8 -0
- package/dist/presentation/tui/action-dispatch/TuiActionResult.d.ts.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiActionResult.js +2 -0
- package/dist/presentation/tui/action-dispatch/TuiActionResult.js.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiRequestController.d.ts +4 -0
- package/dist/presentation/tui/action-dispatch/TuiRequestController.d.ts.map +1 -0
- package/dist/presentation/tui/action-dispatch/TuiRequestController.js +2 -0
- package/dist/presentation/tui/action-dispatch/TuiRequestController.js.map +1 -0
- package/dist/presentation/tui/application-shell/Footer.d.ts +12 -0
- package/dist/presentation/tui/application-shell/Footer.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/Footer.js +41 -0
- package/dist/presentation/tui/application-shell/Footer.js.map +1 -0
- package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.d.ts +16 -0
- package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.js +10 -0
- package/dist/presentation/tui/application-shell/FooterShortcutDescriptor.js.map +1 -0
- package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.d.ts +3 -0
- package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.js +4 -0
- package/dist/presentation/tui/application-shell/FooterUnreadNotificationCounter.js.map +1 -0
- package/dist/presentation/tui/application-shell/Header.d.ts +10 -0
- package/dist/presentation/tui/application-shell/Header.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/Header.js +45 -0
- package/dist/presentation/tui/application-shell/Header.js.map +1 -0
- package/dist/presentation/tui/application-shell/HeaderConstants.d.ts +6 -0
- package/dist/presentation/tui/application-shell/HeaderConstants.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/HeaderConstants.js +6 -0
- package/dist/presentation/tui/application-shell/HeaderConstants.js.map +1 -0
- package/dist/presentation/tui/application-shell/NotificationDrawer.d.ts +16 -0
- package/dist/presentation/tui/application-shell/NotificationDrawer.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/NotificationDrawer.js +56 -0
- package/dist/presentation/tui/application-shell/NotificationDrawer.js.map +1 -0
- package/dist/presentation/tui/application-shell/TuiApp.d.ts +25 -0
- package/dist/presentation/tui/application-shell/TuiApp.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/TuiApp.js +233 -0
- package/dist/presentation/tui/application-shell/TuiApp.js.map +1 -0
- package/dist/presentation/tui/application-shell/TuiAppConstants.d.ts +18 -0
- package/dist/presentation/tui/application-shell/TuiAppConstants.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/TuiAppConstants.js +18 -0
- package/dist/presentation/tui/application-shell/TuiAppConstants.js.map +1 -0
- package/dist/presentation/tui/application-shell/TuiApplicationLauncher.d.ts +19 -0
- package/dist/presentation/tui/application-shell/TuiApplicationLauncher.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/TuiApplicationLauncher.js +46 -0
- package/dist/presentation/tui/application-shell/TuiApplicationLauncher.js.map +1 -0
- package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.d.ts +6 -0
- package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.d.ts.map +1 -0
- package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.js +9 -0
- package/dist/presentation/tui/application-shell/useFooterNotificationDismissal.js.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboard.d.ts +11 -0
- package/dist/presentation/tui/billboard/AnimatedBillboard.d.ts.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboard.js +332 -0
- package/dist/presentation/tui/billboard/AnimatedBillboard.js.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPalette.d.ts +31 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPalette.d.ts.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPalette.js +54 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPalette.js.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPhase.d.ts +8 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPhase.d.ts.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPhase.js +7 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardPhase.js.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.d.ts +2 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.d.ts.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.js +17 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardStickerArt.js.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.d.ts +2 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.d.ts.map +1 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.js +10 -0
- package/dist/presentation/tui/billboard/AnimatedBillboardWordmarkArt.js.map +1 -0
- package/dist/presentation/tui/cockpit/AnimatedBanner.d.ts +13 -0
- package/dist/presentation/tui/cockpit/AnimatedBanner.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/AnimatedBanner.js +193 -0
- package/dist/presentation/tui/cockpit/AnimatedBanner.js.map +1 -0
- package/dist/presentation/tui/cockpit/CenteredPrompt.d.ts +10 -0
- package/dist/presentation/tui/cockpit/CenteredPrompt.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CenteredPrompt.js +14 -0
- package/dist/presentation/tui/cockpit/CenteredPrompt.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.d.ts +7 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.js +32 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonConfiguration.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonEvents.d.ts +14 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonEvents.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonEvents.js +154 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonEvents.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonFrames.d.ts +39 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonFrames.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonFrames.js +186 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonFrames.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanel.d.ts +16 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanel.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanel.js +53 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanel.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.d.ts +12 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.js +12 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonPanelCopy.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.d.ts +10 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.js +2 -0
- package/dist/presentation/tui/cockpit/CockpitDaemonSnapshot.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterCopy.d.ts +10 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterCopy.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterCopy.js +14 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterCopy.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterView.d.ts +3 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterView.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterView.js +18 -0
- package/dist/presentation/tui/cockpit/CockpitGreeterView.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.d.ts +4 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.js +4 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadCopy.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadView.d.ts +25 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadView.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadView.js +231 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadView.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.d.ts +3 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.js +17 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcome.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.d.ts +9 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.js +12 -0
- package/dist/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.d.ts +12 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.js +16 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyCopy.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.d.ts +3 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.js +23 -0
- package/dist/presentation/tui/cockpit/CockpitPrimedEmptyView.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitScreen.d.ts +21 -0
- package/dist/presentation/tui/cockpit/CockpitScreen.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitScreen.js +59 -0
- package/dist/presentation/tui/cockpit/CockpitScreen.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitScreenCopy.d.ts +7 -0
- package/dist/presentation/tui/cockpit/CockpitScreenCopy.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitScreenCopy.js +7 -0
- package/dist/presentation/tui/cockpit/CockpitScreenCopy.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitScreenDefaults.d.ts +6 -0
- package/dist/presentation/tui/cockpit/CockpitScreenDefaults.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitScreenDefaults.js +6 -0
- package/dist/presentation/tui/cockpit/CockpitScreenDefaults.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.d.ts +12 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.js +16 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedCopy.js.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedView.d.ts +3 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedView.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedView.js +28 -0
- package/dist/presentation/tui/cockpit/CockpitUnprimedView.js.map +1 -0
- package/dist/presentation/tui/cockpit/DaemonFrameViews.d.ts +17 -0
- package/dist/presentation/tui/cockpit/DaemonFrameViews.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/DaemonFrameViews.js +20 -0
- package/dist/presentation/tui/cockpit/DaemonFrameViews.js.map +1 -0
- package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.d.ts +4 -0
- package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.js +14 -0
- package/dist/presentation/tui/cockpit/DaemonPanelStatusLabel.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.d.ts +11 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.js +15 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonConstants.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.d.ts +4 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.js +7 -0
- package/dist/presentation/tui/cockpit/daemons/CodifierDaemonFrame.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.d.ts +11 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.js +2 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonConstants.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.d.ts +11 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.js +2 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonFrame.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.d.ts +7 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.js +2 -0
- package/dist/presentation/tui/cockpit/daemons/IDaemonUiDefinition.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.d.ts +11 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.js +15 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonConstants.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.d.ts +4 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.js +7 -0
- package/dist/presentation/tui/cockpit/daemons/RefinerDaemonFrame.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.d.ts +11 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.js +16 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonConstants.js.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.d.ts +4 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.d.ts.map +1 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.js +7 -0
- package/dist/presentation/tui/cockpit/daemons/ReviewerDaemonFrame.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.d.ts +18 -0
- package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.js +2 -0
- package/dist/presentation/tui/daemon-subprocesses/ISubprocessManager.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.d.ts +11 -0
- package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.js +31 -0
- package/dist/presentation/tui/daemon-subprocesses/NoOpSubprocessManager.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.d.ts +3 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.js +4 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerContext.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.d.ts +8 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.js +6 -0
- package/dist/presentation/tui/daemon-subprocesses/SubprocessManagerProvider.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.d.ts +2 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.js +2 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonConfig.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.d.ts +6 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.js +2 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonCounts.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.d.ts +7 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.js +8 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventCategory.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.d.ts +15 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.js +2 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventSnapshot.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.d.ts +14 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.js +13 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonEventStatus.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.d.ts +2 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.js +2 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiDaemonName.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.d.ts +16 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.js +16 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessCopy.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.d.ts +22 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.js +299 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessManager.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.d.ts +17 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.js +2 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessSnapshot.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.d.ts +7 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.js +6 -0
- package/dist/presentation/tui/daemon-subprocesses/TuiSubprocessStatus.js.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.d.ts +3 -0
- package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.d.ts.map +1 -0
- package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.js +6 -0
- package/dist/presentation/tui/daemon-subprocesses/useSubprocessManager.js.map +1 -0
- package/dist/presentation/tui/goals/Constants.d.ts +2 -0
- package/dist/presentation/tui/goals/Constants.d.ts.map +1 -0
- package/dist/presentation/tui/goals/Constants.js +2 -0
- package/dist/presentation/tui/goals/Constants.js.map +1 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlow.d.ts +22 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlow.d.ts.map +1 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlow.js +219 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlow.js.map +1 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.d.ts +79 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.d.ts.map +1 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.js +84 -0
- package/dist/presentation/tui/goals/GoalAuthoringFlowConstants.js.map +1 -0
- package/dist/presentation/tui/goals/GoalsScreen.d.ts +3 -0
- package/dist/presentation/tui/goals/GoalsScreen.d.ts.map +1 -0
- package/dist/presentation/tui/goals/GoalsScreen.js +151 -0
- package/dist/presentation/tui/goals/GoalsScreen.js.map +1 -0
- package/dist/presentation/tui/goals/GoalsScreenConstants.d.ts +33 -0
- package/dist/presentation/tui/goals/GoalsScreenConstants.d.ts.map +1 -0
- package/dist/presentation/tui/goals/GoalsScreenConstants.js +41 -0
- package/dist/presentation/tui/goals/GoalsScreenConstants.js.map +1 -0
- package/dist/presentation/tui/index.d.ts +10 -0
- package/dist/presentation/tui/index.d.ts.map +1 -0
- package/dist/presentation/tui/index.js +6 -0
- package/dist/presentation/tui/index.js.map +1 -0
- package/dist/presentation/tui/memory/MemoryScreen.d.ts +3 -0
- package/dist/presentation/tui/memory/MemoryScreen.d.ts.map +1 -0
- package/dist/presentation/tui/memory/MemoryScreen.js +19 -0
- package/dist/presentation/tui/memory/MemoryScreen.js.map +1 -0
- package/dist/presentation/tui/memory/components/ComponentAddFlow.d.ts +14 -0
- package/dist/presentation/tui/memory/components/ComponentAddFlow.d.ts.map +1 -0
- package/dist/presentation/tui/memory/components/ComponentAddFlow.js +46 -0
- package/dist/presentation/tui/memory/components/ComponentAddFlow.js.map +1 -0
- package/dist/presentation/tui/memory/components/ComponentsScreen.d.ts +3 -0
- package/dist/presentation/tui/memory/components/ComponentsScreen.d.ts.map +1 -0
- package/dist/presentation/tui/memory/components/ComponentsScreen.js +21 -0
- package/dist/presentation/tui/memory/components/ComponentsScreen.js.map +1 -0
- package/dist/presentation/tui/memory/decisions/DecisionAddFlow.d.ts +15 -0
- package/dist/presentation/tui/memory/decisions/DecisionAddFlow.d.ts.map +1 -0
- package/dist/presentation/tui/memory/decisions/DecisionAddFlow.js +63 -0
- package/dist/presentation/tui/memory/decisions/DecisionAddFlow.js.map +1 -0
- package/dist/presentation/tui/memory/decisions/DecisionsScreen.d.ts +3 -0
- package/dist/presentation/tui/memory/decisions/DecisionsScreen.d.ts.map +1 -0
- package/dist/presentation/tui/memory/decisions/DecisionsScreen.js +22 -0
- package/dist/presentation/tui/memory/decisions/DecisionsScreen.js.map +1 -0
- package/dist/presentation/tui/memory/dependencies/DependenciesScreen.d.ts +3 -0
- package/dist/presentation/tui/memory/dependencies/DependenciesScreen.d.ts.map +1 -0
- package/dist/presentation/tui/memory/dependencies/DependenciesScreen.js +23 -0
- package/dist/presentation/tui/memory/dependencies/DependenciesScreen.js.map +1 -0
- package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.d.ts +16 -0
- package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.d.ts.map +1 -0
- package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.js +56 -0
- package/dist/presentation/tui/memory/dependencies/DependencyAddFlow.js.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/EntityColumn.d.ts +14 -0
- package/dist/presentation/tui/memory/entity-browser/EntityColumn.d.ts.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/EntityColumn.js +24 -0
- package/dist/presentation/tui/memory/entity-browser/EntityColumn.js.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/EntityDetailView.d.ts +10 -0
- package/dist/presentation/tui/memory/entity-browser/EntityDetailView.d.ts.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/EntityDetailView.js +141 -0
- package/dist/presentation/tui/memory/entity-browser/EntityDetailView.js.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.d.ts +13 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.d.ts.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.js +107 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityScreen.js.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.d.ts +41 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.d.ts.map +1 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.js +2 -0
- package/dist/presentation/tui/memory/entity-browser/MemoryEntityShapes.js.map +1 -0
- package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.d.ts +15 -0
- package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.d.ts.map +1 -0
- package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.js +57 -0
- package/dist/presentation/tui/memory/guidelines/GuidelineAddFlow.js.map +1 -0
- package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.d.ts +3 -0
- package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.d.ts.map +1 -0
- package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.js +22 -0
- package/dist/presentation/tui/memory/guidelines/GuidelinesScreen.js.map +1 -0
- package/dist/presentation/tui/memory/invariants/InvariantAddFlow.d.ts +13 -0
- package/dist/presentation/tui/memory/invariants/InvariantAddFlow.d.ts.map +1 -0
- package/dist/presentation/tui/memory/invariants/InvariantAddFlow.js +41 -0
- package/dist/presentation/tui/memory/invariants/InvariantAddFlow.js.map +1 -0
- package/dist/presentation/tui/memory/invariants/InvariantsScreen.d.ts +3 -0
- package/dist/presentation/tui/memory/invariants/InvariantsScreen.d.ts.map +1 -0
- package/dist/presentation/tui/memory/invariants/InvariantsScreen.js +20 -0
- package/dist/presentation/tui/memory/invariants/InvariantsScreen.js.map +1 -0
- package/dist/presentation/tui/navigation/MegaMenu.d.ts +10 -0
- package/dist/presentation/tui/navigation/MegaMenu.d.ts.map +1 -0
- package/dist/presentation/tui/navigation/MegaMenu.js +179 -0
- package/dist/presentation/tui/navigation/MegaMenu.js.map +1 -0
- package/dist/presentation/tui/navigation/MegaMenuDefinitions.d.ts +17 -0
- package/dist/presentation/tui/navigation/MegaMenuDefinitions.d.ts.map +1 -0
- package/dist/presentation/tui/navigation/MegaMenuDefinitions.js +207 -0
- package/dist/presentation/tui/navigation/MegaMenuDefinitions.js.map +1 -0
- package/dist/presentation/tui/navigation/ScreenDefinitions.d.ts +36 -0
- package/dist/presentation/tui/navigation/ScreenDefinitions.d.ts.map +1 -0
- package/dist/presentation/tui/navigation/ScreenDefinitions.js +12 -0
- package/dist/presentation/tui/navigation/ScreenDefinitions.js.map +1 -0
- package/dist/presentation/tui/navigation/ScreenRouter.d.ts +19 -0
- package/dist/presentation/tui/navigation/ScreenRouter.d.ts.map +1 -0
- package/dist/presentation/tui/navigation/ScreenRouter.js +32 -0
- package/dist/presentation/tui/navigation/ScreenRouter.js.map +1 -0
- package/dist/presentation/tui/project-initialization/Constants.d.ts +140 -0
- package/dist/presentation/tui/project-initialization/Constants.d.ts.map +1 -0
- package/dist/presentation/tui/project-initialization/Constants.js +140 -0
- package/dist/presentation/tui/project-initialization/Constants.js.map +1 -0
- package/dist/presentation/tui/project-initialization/InitFlow.d.ts +24 -0
- package/dist/presentation/tui/project-initialization/InitFlow.d.ts.map +1 -0
- package/dist/presentation/tui/project-initialization/InitFlow.js +650 -0
- package/dist/presentation/tui/project-initialization/InitFlow.js.map +1 -0
- package/dist/presentation/tui/sessions/SessionScreen.d.ts +3 -0
- package/dist/presentation/tui/sessions/SessionScreen.d.ts.map +1 -0
- package/dist/presentation/tui/sessions/SessionScreen.js +79 -0
- package/dist/presentation/tui/sessions/SessionScreen.js.map +1 -0
- package/dist/presentation/tui/state-reading/TuiStateReader.d.ts +58 -0
- package/dist/presentation/tui/state-reading/TuiStateReader.d.ts.map +1 -0
- package/dist/presentation/tui/state-reading/TuiStateReader.js +152 -0
- package/dist/presentation/tui/state-reading/TuiStateReader.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/DetailPane.d.ts +15 -0
- package/dist/presentation/tui/ui-primitives/DetailPane.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/DetailPane.js +12 -0
- package/dist/presentation/tui/ui-primitives/DetailPane.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/KeyBadge.d.ts +11 -0
- package/dist/presentation/tui/ui-primitives/KeyBadge.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/KeyBadge.js +9 -0
- package/dist/presentation/tui/ui-primitives/KeyBadge.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/ListPanel.d.ts +16 -0
- package/dist/presentation/tui/ui-primitives/ListPanel.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/ListPanel.js +16 -0
- package/dist/presentation/tui/ui-primitives/ListPanel.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/ListPanelConstants.d.ts +4 -0
- package/dist/presentation/tui/ui-primitives/ListPanelConstants.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/ListPanelConstants.js +4 -0
- package/dist/presentation/tui/ui-primitives/ListPanelConstants.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/Panel.d.ts +15 -0
- package/dist/presentation/tui/ui-primitives/Panel.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/Panel.js +9 -0
- package/dist/presentation/tui/ui-primitives/Panel.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/SectionHeading.d.ts +8 -0
- package/dist/presentation/tui/ui-primitives/SectionHeading.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/SectionHeading.js +9 -0
- package/dist/presentation/tui/ui-primitives/SectionHeading.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/StatusIndicator.d.ts +9 -0
- package/dist/presentation/tui/ui-primitives/StatusIndicator.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/StatusIndicator.js +21 -0
- package/dist/presentation/tui/ui-primitives/StatusIndicator.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/Tumbler.d.ts +18 -0
- package/dist/presentation/tui/ui-primitives/Tumbler.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/Tumbler.js +102 -0
- package/dist/presentation/tui/ui-primitives/Tumbler.js.map +1 -0
- package/dist/presentation/tui/ui-primitives/TumblerConstants.d.ts +4 -0
- package/dist/presentation/tui/ui-primitives/TumblerConstants.d.ts.map +1 -0
- package/dist/presentation/tui/ui-primitives/TumblerConstants.js +4 -0
- package/dist/presentation/tui/ui-primitives/TumblerConstants.js.map +1 -0
- package/dist/presentation/tui/wizard/Wizard.d.ts +54 -0
- package/dist/presentation/tui/wizard/Wizard.d.ts.map +1 -0
- package/dist/presentation/tui/wizard/Wizard.js +412 -0
- package/dist/presentation/tui/wizard/Wizard.js.map +1 -0
- package/dist/presentation/tui/wizard/WizardConstants.d.ts +27 -0
- package/dist/presentation/tui/wizard/WizardConstants.d.ts.map +1 -0
- package/dist/presentation/tui/wizard/WizardConstants.js +26 -0
- package/dist/presentation/tui/wizard/WizardConstants.js.map +1 -0
- package/dist/presentation/tui/wizard/WizardTextInput.d.ts +12 -0
- package/dist/presentation/tui/wizard/WizardTextInput.d.ts.map +1 -0
- package/dist/presentation/tui/wizard/WizardTextInput.js +39 -0
- package/dist/presentation/tui/wizard/WizardTextInput.js.map +1 -0
- package/dist/presentation/work/codifier.daemon.d.ts +3 -0
- package/dist/presentation/work/codifier.daemon.d.ts.map +1 -0
- package/dist/presentation/work/codifier.daemon.js +94 -0
- package/dist/presentation/work/codifier.daemon.js.map +1 -0
- package/dist/presentation/work/refiner.daemon.d.ts +3 -0
- package/dist/presentation/work/refiner.daemon.d.ts.map +1 -0
- package/dist/presentation/work/refiner.daemon.js +79 -0
- package/dist/presentation/work/refiner.daemon.js.map +1 -0
- package/dist/presentation/work/reviewer.daemon.d.ts +3 -0
- package/dist/presentation/work/reviewer.daemon.d.ts.map +1 -0
- package/dist/presentation/work/reviewer.daemon.js +79 -0
- package/dist/presentation/work/reviewer.daemon.js.map +1 -0
- package/package.json +5 -1
- package/dist/application/context/project/get/ContextualProjectView.d.ts +0 -24
- package/dist/application/context/project/get/ContextualProjectView.d.ts.map +0 -1
- package/dist/application/context/project/get/ContextualProjectView.js +0 -2
- package/dist/application/context/project/get/ContextualProjectView.js.map +0 -1
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import React, { useCallback, useEffect, useState } from "react";
|
|
2
|
+
import { Box, Text, useInput } from "ink";
|
|
3
|
+
import AnimatedBillboard from "../billboard/AnimatedBillboard.js";
|
|
4
|
+
import { BaseColors } from "../../shared/DesignTokens.js";
|
|
5
|
+
import { useSubprocessManager } from "../daemon-subprocesses/useSubprocessManager.js";
|
|
6
|
+
import { DEFAULT_WORKER_DAEMON_CONFIGS } from "../../../application/daemons/WorkerDaemonCatalog.js";
|
|
7
|
+
import { TuiSubprocessStatus } from "../daemon-subprocesses/TuiSubprocessStatus.js";
|
|
8
|
+
import { appendDaemonEventRows, findDaemonStatus, formatDaemonEventRow, getDaemonEventRows, } from "./CockpitDaemonEvents.js";
|
|
9
|
+
import { getNextFocusedDaemon, nextAgentConfig, nextDaemonConfigs, nextPollConfig, nextRetryConfig, } from "./CockpitDaemonConfiguration.js";
|
|
10
|
+
import { CODIFIER_FRAME_COUNT, DEFAULT_CODIFIER_FRAME_DURATION_MS, DEFAULT_CODIFIER_GLYPH_COLORS, DEFAULT_RANDOM_GLYPH_COLORS, DEFAULT_REFINER_FRAME_DURATION_MS, DEFAULT_REVIEWER_FRAME_DURATION_MS, REFINER_FRAME_COUNT, REVIEWER_FRAME_COUNT, getCodifierFrame, getRenderedFrameIndex, getReviewerFrame, } from "./CockpitDaemonFrames.js";
|
|
11
|
+
import { CockpitDaemonPanel, DaemonInfoOverlay } from "./CockpitDaemonPanel.js";
|
|
12
|
+
import { CockpitLaunchpadCopy } from "./CockpitLaunchpadCopy.js";
|
|
13
|
+
import { CockpitLaunchpadWelcome } from "./CockpitLaunchpadWelcome.js";
|
|
14
|
+
import { getDaemonPanelStatusLabel } from "./DaemonPanelStatusLabel.js";
|
|
15
|
+
import { CodifierDaemonConstants } from "./daemons/CodifierDaemonConstants.js";
|
|
16
|
+
import { CodifierDaemonFrame } from "./daemons/CodifierDaemonFrame.js";
|
|
17
|
+
import { RefinerDaemonConstants } from "./daemons/RefinerDaemonConstants.js";
|
|
18
|
+
import { RefinerDaemonFrame } from "./daemons/RefinerDaemonFrame.js";
|
|
19
|
+
import { ReviewerDaemonConstants } from "./daemons/ReviewerDaemonConstants.js";
|
|
20
|
+
import { ReviewerDaemonFrame } from "./daemons/ReviewerDaemonFrame.js";
|
|
21
|
+
const DAEMON_UI_DEFINITIONS = [
|
|
22
|
+
{
|
|
23
|
+
constants: RefinerDaemonConstants,
|
|
24
|
+
Frame: RefinerDaemonFrame,
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
constants: ReviewerDaemonConstants,
|
|
28
|
+
Frame: ReviewerDaemonFrame,
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
constants: CodifierDaemonConstants,
|
|
32
|
+
Frame: CodifierDaemonFrame,
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
const DAEMON_FOCUS_ORDER = DAEMON_UI_DEFINITIONS.map((daemonUiDefinition) => daemonUiDefinition.constants.name);
|
|
36
|
+
export { getCodifierFrame, getReviewerFrame };
|
|
37
|
+
export function CockpitLaunchpadView({ shortcutsEnabled = true, launchAnimationSize, onLaunchAnimationDone, launchAnimationRenderer = AnimatedBillboard.trigger, refinerGlyphPalette = DEFAULT_RANDOM_GLYPH_COLORS, reviewerGlyphPalette = DEFAULT_RANDOM_GLYPH_COLORS, codifierGlyphColors = DEFAULT_CODIFIER_GLYPH_COLORS, refinerFrameDurationMs = DEFAULT_REFINER_FRAME_DURATION_MS, reviewerFrameDurationMs = DEFAULT_REVIEWER_FRAME_DURATION_MS, codifierFrameDurationMs = DEFAULT_CODIFIER_FRAME_DURATION_MS, settingsReader, } = {}) {
|
|
38
|
+
const subprocessManager = useSubprocessManager();
|
|
39
|
+
const [launchAnimationDone, setLaunchAnimationDone] = useState(launchAnimationSize === undefined);
|
|
40
|
+
const [reviewerFrameIndex, setReviewerFrameIndex] = useState(0);
|
|
41
|
+
const [refinerFrameIndex, setRefinerFrameIndex] = useState(0);
|
|
42
|
+
const [codifierFrameIndex, setCodifierFrameIndex] = useState(0);
|
|
43
|
+
const [selectedDaemon, setSelectedDaemon] = useState("refiner");
|
|
44
|
+
const [configuredDaemon, setConfiguredDaemon] = useState(undefined);
|
|
45
|
+
const [infoDaemon, setInfoDaemon] = useState(undefined);
|
|
46
|
+
const [welcomeVisible, setWelcomeVisible] = useState(settingsReader === undefined ? true : undefined);
|
|
47
|
+
const [daemonConfigs, setDaemonConfigs] = useState(DEFAULT_WORKER_DAEMON_CONFIGS);
|
|
48
|
+
const [daemonStatuses, setDaemonStatuses] = useState(subprocessManager.getAllStatuses());
|
|
49
|
+
const [daemonEventRows, setDaemonEventRows] = useState(() => getDaemonEventRows(subprocessManager.getAllStatuses(), Date.now()));
|
|
50
|
+
const launchAnimationActive = launchAnimationSize !== undefined && !launchAnimationDone;
|
|
51
|
+
useEffect(() => {
|
|
52
|
+
if (launchAnimationSize === undefined) {
|
|
53
|
+
setLaunchAnimationDone(true);
|
|
54
|
+
}
|
|
55
|
+
}, [launchAnimationSize]);
|
|
56
|
+
const handleLaunchAnimationDone = useCallback(() => {
|
|
57
|
+
setLaunchAnimationDone(true);
|
|
58
|
+
onLaunchAnimationDone?.();
|
|
59
|
+
}, [onLaunchAnimationDone]);
|
|
60
|
+
useEffect(() => {
|
|
61
|
+
let mounted = true;
|
|
62
|
+
if (settingsReader === undefined) {
|
|
63
|
+
setWelcomeVisible(true);
|
|
64
|
+
return () => {
|
|
65
|
+
mounted = false;
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
setWelcomeVisible(undefined);
|
|
69
|
+
void settingsReader.read()
|
|
70
|
+
.then((settings) => {
|
|
71
|
+
if (mounted) {
|
|
72
|
+
setWelcomeVisible(settings.tui?.showLaunchpadWelcome ?? true);
|
|
73
|
+
}
|
|
74
|
+
})
|
|
75
|
+
.catch(() => {
|
|
76
|
+
if (mounted) {
|
|
77
|
+
setWelcomeVisible(true);
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
return () => {
|
|
81
|
+
mounted = false;
|
|
82
|
+
};
|
|
83
|
+
}, [settingsReader]);
|
|
84
|
+
const hideWelcome = useCallback(async () => {
|
|
85
|
+
setWelcomeVisible(false);
|
|
86
|
+
if (settingsReader === undefined) {
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
89
|
+
try {
|
|
90
|
+
const settings = await settingsReader.read();
|
|
91
|
+
await settingsReader.write({
|
|
92
|
+
...settings,
|
|
93
|
+
tui: {
|
|
94
|
+
...settings.tui,
|
|
95
|
+
showLaunchpadWelcome: false,
|
|
96
|
+
},
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
catch {
|
|
100
|
+
// Keep the in-memory dismissal even if persistence is unavailable.
|
|
101
|
+
}
|
|
102
|
+
}, [settingsReader]);
|
|
103
|
+
useDaemonAnimationFrames({
|
|
104
|
+
reviewerFrameDurationMs,
|
|
105
|
+
refinerFrameDurationMs,
|
|
106
|
+
codifierFrameDurationMs,
|
|
107
|
+
setReviewerFrameIndex,
|
|
108
|
+
setRefinerFrameIndex,
|
|
109
|
+
setCodifierFrameIndex,
|
|
110
|
+
});
|
|
111
|
+
useEffect(() => {
|
|
112
|
+
const timer = setInterval(() => {
|
|
113
|
+
const snapshots = subprocessManager.getAllStatuses();
|
|
114
|
+
setDaemonStatuses(snapshots);
|
|
115
|
+
setDaemonEventRows((currentRows) => appendDaemonEventRows(currentRows, getDaemonEventRows(snapshots, Date.now())));
|
|
116
|
+
}, 500);
|
|
117
|
+
return () => clearInterval(timer);
|
|
118
|
+
}, [subprocessManager]);
|
|
119
|
+
useInput((input, key) => {
|
|
120
|
+
if (key.tab || input === "\t") {
|
|
121
|
+
setSelectedDaemon((currentDaemon) => {
|
|
122
|
+
const nextDaemon = getNextFocusedDaemon(currentDaemon, DAEMON_FOCUS_ORDER);
|
|
123
|
+
setInfoDaemon((currentInfoDaemon) => currentInfoDaemon === undefined ? undefined : nextDaemon);
|
|
124
|
+
return nextDaemon;
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
if (input === "s" || input === "S") {
|
|
128
|
+
void toggleDaemon(selectedDaemon, subprocessManager, daemonConfigs[selectedDaemon], setDaemonStatuses, setDaemonEventRows);
|
|
129
|
+
}
|
|
130
|
+
if (input === "@") {
|
|
131
|
+
setConfiguredDaemon((currentDaemon) => currentDaemon === selectedDaemon ? undefined : selectedDaemon);
|
|
132
|
+
}
|
|
133
|
+
if (input === "i" || input === "I") {
|
|
134
|
+
setInfoDaemon((currentDaemon) => currentDaemon === selectedDaemon ? undefined : selectedDaemon);
|
|
135
|
+
}
|
|
136
|
+
if ((input === "x" || input === "X") &&
|
|
137
|
+
welcomeVisible === true &&
|
|
138
|
+
configuredDaemon === undefined) {
|
|
139
|
+
void hideWelcome();
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
if (input === "a" || input === "A") {
|
|
143
|
+
if (configuredDaemon !== undefined) {
|
|
144
|
+
setDaemonConfigs((configs) => nextDaemonConfigs(configs, configuredDaemon, nextAgentConfig));
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
if (input === "p" || input === "P") {
|
|
148
|
+
if (configuredDaemon !== undefined) {
|
|
149
|
+
setDaemonConfigs((configs) => nextDaemonConfigs(configs, configuredDaemon, nextPollConfig));
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
if (input === "x" || input === "X") {
|
|
153
|
+
if (configuredDaemon !== undefined) {
|
|
154
|
+
setDaemonConfigs((configs) => nextDaemonConfigs(configs, configuredDaemon, nextRetryConfig));
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}, { isActive: shortcutsEnabled });
|
|
158
|
+
const daemonStatusByName = Object.fromEntries(DAEMON_UI_DEFINITIONS.map((daemonUiDefinition) => [
|
|
159
|
+
daemonUiDefinition.constants.name,
|
|
160
|
+
findDaemonStatus(daemonStatuses, daemonUiDefinition.constants.name),
|
|
161
|
+
]));
|
|
162
|
+
const daemonFrameIndexByName = {
|
|
163
|
+
refiner: getRenderedFrameIndex(daemonStatusByName.refiner, refinerFrameIndex),
|
|
164
|
+
reviewer: getRenderedFrameIndex(daemonStatusByName.reviewer, reviewerFrameIndex),
|
|
165
|
+
codifier: getRenderedFrameIndex(daemonStatusByName.codifier, codifierFrameIndex),
|
|
166
|
+
};
|
|
167
|
+
const infoDaemonConstants = infoDaemon === undefined
|
|
168
|
+
? undefined
|
|
169
|
+
: DAEMON_UI_DEFINITIONS.find((definition) => definition.constants.name === infoDaemon)?.constants;
|
|
170
|
+
if (launchAnimationActive) {
|
|
171
|
+
return (React.createElement(Box, { flexDirection: "column", flexGrow: 1, width: "100%", height: "100%" }, launchAnimationRenderer({
|
|
172
|
+
height: launchAnimationSize.height,
|
|
173
|
+
width: launchAnimationSize.width,
|
|
174
|
+
onDone: handleLaunchAnimationDone,
|
|
175
|
+
})));
|
|
176
|
+
}
|
|
177
|
+
return (React.createElement(Box, { flexDirection: "column", width: "100%", height: "100%", paddingX: 1 },
|
|
178
|
+
welcomeVisible === true && (React.createElement(CockpitLaunchpadWelcome, null)),
|
|
179
|
+
React.createElement(Box, { flexDirection: "row", flexShrink: 0, height: 13, width: "100%", gap: 1, marginY: 1 }, DAEMON_UI_DEFINITIONS.map((daemonUiDefinition) => {
|
|
180
|
+
const { constants: daemonConstants, Frame } = daemonUiDefinition;
|
|
181
|
+
const name = daemonConstants.name;
|
|
182
|
+
const snapshot = daemonStatusByName[name];
|
|
183
|
+
const frameIndex = daemonFrameIndexByName[name];
|
|
184
|
+
const statusLabel = getDaemonPanelStatusLabel(snapshot, daemonConstants);
|
|
185
|
+
return (React.createElement(CockpitDaemonPanel, { key: name, daemonConstants: daemonConstants, selected: selectedDaemon === name, configuring: configuredDaemon === name, infoVisible: infoDaemon === name, snapshot: snapshot, pendingConfig: daemonConfigs[name] },
|
|
186
|
+
React.createElement(Frame, { frameIndex: frameIndex, snapshot: snapshot, statusLabel: statusLabel, refinerGlyphPalette: refinerGlyphPalette, reviewerGlyphPalette: reviewerGlyphPalette, codifierGlyphColors: codifierGlyphColors })));
|
|
187
|
+
})),
|
|
188
|
+
React.createElement(Box, { flexDirection: "column", flexGrow: 1, flexBasis: 0, width: "100%", paddingY: 1 },
|
|
189
|
+
infoDaemonConstants !== undefined && (React.createElement(DaemonInfoOverlay, { daemonConstants: infoDaemonConstants })),
|
|
190
|
+
React.createElement(Text, { color: BaseColors.shade2, bold: true }, CockpitLaunchpadCopy.eventsHeading),
|
|
191
|
+
React.createElement(Box, { flexDirection: "column", marginTop: 1 }, daemonEventRows.map((row) => (React.createElement(Text, { key: row.key, color: row.color }, formatDaemonEventRow(row))))))));
|
|
192
|
+
}
|
|
193
|
+
function useDaemonAnimationFrames({ reviewerFrameDurationMs, refinerFrameDurationMs, codifierFrameDurationMs, setReviewerFrameIndex, setRefinerFrameIndex, setCodifierFrameIndex, }) {
|
|
194
|
+
useEffect(() => {
|
|
195
|
+
if (reviewerFrameDurationMs <= 0)
|
|
196
|
+
return;
|
|
197
|
+
const timer = setInterval(() => {
|
|
198
|
+
setReviewerFrameIndex((previousFrameIndex) => (previousFrameIndex + 1) % REVIEWER_FRAME_COUNT);
|
|
199
|
+
}, reviewerFrameDurationMs);
|
|
200
|
+
return () => clearInterval(timer);
|
|
201
|
+
}, [reviewerFrameDurationMs, setReviewerFrameIndex]);
|
|
202
|
+
useEffect(() => {
|
|
203
|
+
if (REFINER_FRAME_COUNT <= 1 || refinerFrameDurationMs <= 0)
|
|
204
|
+
return;
|
|
205
|
+
const timer = setInterval(() => {
|
|
206
|
+
setRefinerFrameIndex((previousFrameIndex) => (previousFrameIndex + 1) % REFINER_FRAME_COUNT);
|
|
207
|
+
}, refinerFrameDurationMs);
|
|
208
|
+
return () => clearInterval(timer);
|
|
209
|
+
}, [refinerFrameDurationMs, setRefinerFrameIndex]);
|
|
210
|
+
useEffect(() => {
|
|
211
|
+
if (codifierFrameDurationMs <= 0)
|
|
212
|
+
return;
|
|
213
|
+
const timer = setInterval(() => {
|
|
214
|
+
setCodifierFrameIndex((previousFrameIndex) => (previousFrameIndex + 1) % CODIFIER_FRAME_COUNT);
|
|
215
|
+
}, codifierFrameDurationMs);
|
|
216
|
+
return () => clearInterval(timer);
|
|
217
|
+
}, [codifierFrameDurationMs, setCodifierFrameIndex]);
|
|
218
|
+
}
|
|
219
|
+
async function toggleDaemon(name, manager, config, setDaemonStatuses, setDaemonEventRows) {
|
|
220
|
+
const snapshot = manager.getStatus(name);
|
|
221
|
+
if (snapshot.status === TuiSubprocessStatus.RUNNING) {
|
|
222
|
+
await manager.terminate(name);
|
|
223
|
+
}
|
|
224
|
+
else {
|
|
225
|
+
await manager.spawn(name, config);
|
|
226
|
+
}
|
|
227
|
+
const snapshots = manager.getAllStatuses();
|
|
228
|
+
setDaemonStatuses(snapshots);
|
|
229
|
+
setDaemonEventRows((currentRows) => appendDaemonEventRows(currentRows, getDaemonEventRows(snapshots, Date.now())));
|
|
230
|
+
}
|
|
231
|
+
//# sourceMappingURL=CockpitLaunchpadView.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitLaunchpadView.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitLaunchpadView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAChE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC1C,OAAO,iBAAiB,MAAM,mCAAmC,CAAC;AAElE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AACtF,OAAO,EAAE,6BAA6B,EAAE,MAAM,qDAAqD,CAAC;AASpG,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AACpF,OAAO,EACL,qBAAqB,EACrB,gBAAgB,EAChB,oBAAoB,EACpB,kBAAkB,GAEnB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,oBAAoB,EACpB,eAAe,EACf,iBAAiB,EACjB,cAAc,EACd,eAAe,GAChB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EACL,oBAAoB,EACpB,kCAAkC,EAClC,6BAA6B,EAC7B,2BAA2B,EAC3B,iCAAiC,EACjC,kCAAkC,EAClC,mBAAmB,EACnB,oBAAoB,EACpB,gBAAgB,EAChB,qBAAqB,EACrB,gBAAgB,GAGjB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAChF,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACjE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAC7E,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AA0BvE,MAAM,qBAAqB,GAAG;IAC5B;QACE,SAAS,EAAE,sBAAsB;QACjC,KAAK,EAAE,kBAAkB;KAC1B;IACD;QACE,SAAS,EAAE,uBAAuB;QAClC,KAAK,EAAE,mBAAmB;KAC3B;IACD;QACE,SAAS,EAAE,uBAAuB;QAClC,KAAK,EAAE,mBAAmB;KAC3B;CACgD,CAAC;AAEpD,MAAM,kBAAkB,GAAG,qBAAqB,CAAC,GAAG,CAClD,CAAC,kBAAkB,EAAE,EAAE,CAAC,kBAAkB,CAAC,SAAS,CAAC,IAAI,CAC9B,CAAC;AAE9B,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;AAE9C,MAAM,UAAU,oBAAoB,CAAC,EACnC,gBAAgB,GAAG,IAAI,EACvB,mBAAmB,EACnB,qBAAqB,EACrB,uBAAuB,GAAG,iBAAiB,CAAC,OAAO,EACnD,mBAAmB,GAAG,2BAA2B,EACjD,oBAAoB,GAAG,2BAA2B,EAClD,mBAAmB,GAAG,6BAA6B,EACnD,sBAAsB,GAAG,iCAAiC,EAC1D,uBAAuB,GAAG,kCAAkC,EAC5D,uBAAuB,GAAG,kCAAkC,EAC5D,cAAc,MACe,EAAE;IAC/B,MAAM,iBAAiB,GAAG,oBAAoB,EAAE,CAAC;IACjD,MAAM,CAAC,mBAAmB,EAAE,sBAAsB,CAAC,GAAG,QAAQ,CAC5D,mBAAmB,KAAK,SAAS,CAClC,CAAC;IACF,MAAM,CAAC,kBAAkB,EAAE,qBAAqB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChE,MAAM,CAAC,iBAAiB,EAAE,oBAAoB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAC9D,MAAM,CAAC,kBAAkB,EAAE,qBAAqB,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;IAChE,MAAM,CAAC,cAAc,EAAE,iBAAiB,CAAC,GAAG,QAAQ,CAAgB,SAAS,CAAC,CAAC;IAC/E,MAAM,CAAC,gBAAgB,EAAE,mBAAmB,CAAC,GAAG,QAAQ,CAA4B,SAAS,CAAC,CAAC;IAC/F,MAAM,CAAC,UAAU,EAAE,aAAa,CAAC,GAAG,QAAQ,CAA4B,SAAS,CAAC,CAAC;IACnF,MAAM,CAAC,cAAc,EAAE,iBAAiB,CAAC,GAAG,QAAQ,CAClD,cAAc,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAChD,CAAC;IACF,MAAM,CAAC,aAAa,EAAE,gBAAgB,CAAC,GAAG,QAAQ,CAAmB,6BAA6B,CAAC,CAAC;IACpG,MAAM,CAAC,cAAc,EAAE,iBAAiB,CAAC,GAAG,QAAQ,CAClD,iBAAiB,CAAC,cAAc,EAAE,CACnC,CAAC;IACF,MAAM,CAAC,eAAe,EAAE,kBAAkB,CAAC,GAAG,QAAQ,CAA4B,GAAG,EAAE,CACrF,kBAAkB,CAAC,iBAAiB,CAAC,cAAc,EAAE,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CACnE,CAAC;IACF,MAAM,qBAAqB,GACzB,mBAAmB,KAAK,SAAS,IAAI,CAAC,mBAAmB,CAAC;IAE5D,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,mBAAmB,KAAK,SAAS,EAAE,CAAC;YACtC,sBAAsB,CAAC,IAAI,CAAC,CAAC;QAC/B,CAAC;IACH,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC,CAAC;IAE1B,MAAM,yBAAyB,GAAG,WAAW,CAAC,GAAG,EAAE;QACjD,sBAAsB,CAAC,IAAI,CAAC,CAAC;QAC7B,qBAAqB,EAAE,EAAE,CAAC;IAC5B,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAC,CAAC;IAE5B,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,OAAO,GAAG,IAAI,CAAC;QAEnB,IAAI,cAAc,KAAK,SAAS,EAAE,CAAC;YACjC,iBAAiB,CAAC,IAAI,CAAC,CAAC;YACxB,OAAO,GAAG,EAAE;gBACV,OAAO,GAAG,KAAK,CAAC;YAClB,CAAC,CAAC;QACJ,CAAC;QAED,iBAAiB,CAAC,SAAS,CAAC,CAAC;QAC7B,KAAK,cAAc,CAAC,IAAI,EAAE;aACvB,IAAI,CAAC,CAAC,QAAQ,EAAE,EAAE;YACjB,IAAI,OAAO,EAAE,CAAC;gBACZ,iBAAiB,CAAC,QAAQ,CAAC,GAAG,EAAE,oBAAoB,IAAI,IAAI,CAAC,CAAC;YAChE,CAAC;QACH,CAAC,CAAC;aACD,KAAK,CAAC,GAAG,EAAE;YACV,IAAI,OAAO,EAAE,CAAC;gBACZ,iBAAiB,CAAC,IAAI,CAAC,CAAC;YAC1B,CAAC;QACH,CAAC,CAAC,CAAC;QAEL,OAAO,GAAG,EAAE;YACV,OAAO,GAAG,KAAK,CAAC;QAClB,CAAC,CAAC;IACJ,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC;IAErB,MAAM,WAAW,GAAG,WAAW,CAAC,KAAK,IAAI,EAAE;QACzC,iBAAiB,CAAC,KAAK,CAAC,CAAC;QAEzB,IAAI,cAAc,KAAK,SAAS,EAAE,CAAC;YACjC,OAAO;QACT,CAAC;QAED,IAAI,CAAC;YACH,MAAM,QAAQ,GAAG,MAAM,cAAc,CAAC,IAAI,EAAE,CAAC;YAC7C,MAAM,cAAc,CAAC,KAAK,CAAC;gBACzB,GAAG,QAAQ;gBACX,GAAG,EAAE;oBACH,GAAG,QAAQ,CAAC,GAAG;oBACf,oBAAoB,EAAE,KAAK;iBAC5B;aACF,CAAC,CAAC;QACL,CAAC;QAAC,MAAM,CAAC;YACP,mEAAmE;QACrE,CAAC;IACH,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC;IAErB,wBAAwB,CAAC;QACvB,uBAAuB;QACvB,sBAAsB;QACtB,uBAAuB;QACvB,qBAAqB;QACrB,oBAAoB;QACpB,qBAAqB;KACtB,CAAC,CAAC;IAEH,SAAS,CAAC,GAAG,EAAE;QACb,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE;YAC7B,MAAM,SAAS,GAAG,iBAAiB,CAAC,cAAc,EAAE,CAAC;YACrD,iBAAiB,CAAC,SAAS,CAAC,CAAC;YAC7B,kBAAkB,CAAC,CAAC,WAAW,EAAE,EAAE,CACjC,qBAAqB,CAAC,WAAW,EAAE,kBAAkB,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAC9E,CAAC;QACJ,CAAC,EAAE,GAAG,CAAC,CAAC;QAER,OAAO,GAAG,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACpC,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAExB,QAAQ,CACN,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;QACb,IAAI,GAAG,CAAC,GAAG,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;YAC9B,iBAAiB,CAAC,CAAC,aAAa,EAAE,EAAE;gBAClC,MAAM,UAAU,GAAG,oBAAoB,CACrC,aAAa,EACb,kBAAkB,CACnB,CAAC;gBACF,aAAa,CAAC,CAAC,iBAAiB,EAAE,EAAE,CAClC,iBAAiB,KAAK,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,CACzD,CAAC;gBACF,OAAO,UAAU,CAAC;YACpB,CAAC,CAAC,CAAC;QACL,CAAC;QACD,IAAI,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;YACnC,KAAK,YAAY,CAAC,cAAc,EAAE,iBAAiB,EAAE,aAAa,CAAC,cAAc,CAAC,EAAE,iBAAiB,EAAE,kBAAkB,CAAC,CAAC;QAC7H,CAAC;QACD,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;YAClB,mBAAmB,CAAC,CAAC,aAAa,EAAE,EAAE,CACpC,aAAa,KAAK,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,cAAc,CAC9D,CAAC;QACJ,CAAC;QACD,IAAI,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;YACnC,aAAa,CAAC,CAAC,aAAa,EAAE,EAAE,CAC9B,aAAa,KAAK,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,cAAc,CAC9D,CAAC;QACJ,CAAC;QACD,IACE,CAAC,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,GAAG,CAAC;YAChC,cAAc,KAAK,IAAI;YACvB,gBAAgB,KAAK,SAAS,EAC9B,CAAC;YACD,KAAK,WAAW,EAAE,CAAC;YACnB,OAAO;QACT,CAAC;QACD,IAAI,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;YACnC,IAAI,gBAAgB,KAAK,SAAS,EAAE,CAAC;gBACnC,gBAAgB,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,iBAAiB,CAAC,OAAO,EAAE,gBAAgB,EAAE,eAAe,CAAC,CAAC,CAAC;YAC/F,CAAC;QACH,CAAC;QACD,IAAI,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;YACnC,IAAI,gBAAgB,KAAK,SAAS,EAAE,CAAC;gBACnC,gBAAgB,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,iBAAiB,CAAC,OAAO,EAAE,gBAAgB,EAAE,cAAc,CAAC,CAAC,CAAC;YAC9F,CAAC;QACH,CAAC;QACD,IAAI,KAAK,KAAK,GAAG,IAAI,KAAK,KAAK,GAAG,EAAE,CAAC;YACnC,IAAI,gBAAgB,KAAK,SAAS,EAAE,CAAC;gBACnC,gBAAgB,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,iBAAiB,CAAC,OAAO,EAAE,gBAAgB,EAAE,eAAe,CAAC,CAAC,CAAC;YAC/F,CAAC;QACH,CAAC;IACH,CAAC,EACD,EAAE,QAAQ,EAAE,gBAAgB,EAAE,CAC/B,CAAC;IAEF,MAAM,kBAAkB,GAAG,MAAM,CAAC,WAAW,CAC3C,qBAAqB,CAAC,GAAG,CAAC,CAAC,kBAAkB,EAAE,EAAE,CAAC;QAChD,kBAAkB,CAAC,SAAS,CAAC,IAAI;QACjC,gBAAgB,CAAC,cAAc,EAAE,kBAAkB,CAAC,SAAS,CAAC,IAAI,CAAC;KACpE,CAAC,CAC6C,CAAC;IAClD,MAAM,sBAAsB,GAAG;QAC7B,OAAO,EAAE,qBAAqB,CAAC,kBAAkB,CAAC,OAAO,EAAE,iBAAiB,CAAC;QAC7E,QAAQ,EAAE,qBAAqB,CAAC,kBAAkB,CAAC,QAAQ,EAAE,kBAAkB,CAAC;QAChF,QAAQ,EAAE,qBAAqB,CAAC,kBAAkB,CAAC,QAAQ,EAAE,kBAAkB,CAAC;KAChC,CAAC;IACnD,MAAM,mBAAmB,GAAG,UAAU,KAAK,SAAS;QAClD,CAAC,CAAC,SAAS;QACX,CAAC,CAAC,qBAAqB,CAAC,IAAI,CAC1B,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC,IAAI,KAAK,UAAU,CACzD,EAAE,SAAS,CAAC;IAEf,IAAI,qBAAqB,EAAE,CAAC;QAC1B,OAAO,CACL,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,IAChE,uBAAuB,CAAC;YACvB,MAAM,EAAE,mBAAmB,CAAC,MAAM;YAClC,KAAK,EAAE,mBAAmB,CAAC,KAAK;YAChC,MAAM,EAAE,yBAAyB;SAClC,CAAC,CACE,CACP,CAAC;IACJ,CAAC;IAED,OAAO,CACL,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,KAAK,EAAC,MAAM,EAAC,MAAM,EAAC,MAAM,EAAC,QAAQ,EAAE,CAAC;QAC/D,cAAc,KAAK,IAAI,IAAI,CAC1B,oBAAC,uBAAuB,OAAG,CAC5B;QACD,oBAAC,GAAG,IAAC,aAAa,EAAC,KAAK,EAAC,UAAU,EAAE,CAAC,EAAE,MAAM,EAAE,EAAE,EAAE,KAAK,EAAC,MAAM,EAAC,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,IAChF,qBAAqB,CAAC,GAAG,CAAC,CAAC,kBAAkB,EAAE,EAAE;YAChD,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,KAAK,EAAE,GAAG,kBAAkB,CAAC;YACjE,MAAM,IAAI,GAAG,eAAe,CAAC,IAAI,CAAC;YAClC,MAAM,QAAQ,GAAG,kBAAkB,CAAC,IAAI,CAAC,CAAC;YAC1C,MAAM,UAAU,GAAG,sBAAsB,CAAC,IAAI,CAAC,CAAC;YAChD,MAAM,WAAW,GAAG,yBAAyB,CAC3C,QAAQ,EACR,eAAe,CAChB,CAAC;YAEF,OAAO,CACP,oBAAC,kBAAkB,IACjB,GAAG,EAAE,IAAI,EACT,eAAe,EAAE,eAAe,EAChC,QAAQ,EAAE,cAAc,KAAK,IAAI,EACjC,WAAW,EAAE,gBAAgB,KAAK,IAAI,EACtC,WAAW,EAAE,UAAU,KAAK,IAAI,EAChC,QAAQ,EAAE,QAAQ,EAClB,aAAa,EAAE,aAAa,CAAC,IAAI,CAAC;gBAElC,oBAAC,KAAK,IACJ,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,QAAQ,EAClB,WAAW,EAAE,WAAW,EACxB,mBAAmB,EAAE,mBAAmB,EACxC,oBAAoB,EAAE,oBAAoB,EAC1C,mBAAmB,EAAE,mBAAmB,GACxC,CACiB,CACpB,CAAC;QACJ,CAAC,CAAC,CACE;QACN,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,QAAQ,EAAE,CAAC,EAAE,SAAS,EAAE,CAAC,EAAE,KAAK,EAAC,MAAM,EAAC,QAAQ,EAAE,CAAC;YAC5E,mBAAmB,KAAK,SAAS,IAAI,CACpC,oBAAC,iBAAiB,IAAC,eAAe,EAAE,mBAAmB,GAAI,CAC5D;YACD,oBAAC,IAAI,IAAC,KAAK,EAAE,UAAU,CAAC,MAAM,EAAE,IAAI,UACjC,oBAAoB,CAAC,aAAa,CAC9B;YACP,oBAAC,GAAG,IAAC,aAAa,EAAC,QAAQ,EAAC,SAAS,EAAE,CAAC,IACrC,eAAe,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAC5B,oBAAC,IAAI,IAAC,GAAG,EAAE,GAAG,CAAC,GAAG,EAAE,KAAK,EAAE,GAAG,CAAC,KAAK,IACjC,oBAAoB,CAAC,GAAG,CAAC,CACrB,CACR,CAAC,CACE,CACF,CACF,CACP,CAAC;AACJ,CAAC;AAED,SAAS,wBAAwB,CAAC,EAChC,uBAAuB,EACvB,sBAAsB,EACtB,uBAAuB,EACvB,qBAAqB,EACrB,oBAAoB,EACpB,qBAAqB,GAQtB;IACC,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,uBAAuB,IAAI,CAAC;YAAE,OAAO;QAEzC,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE;YAC7B,qBAAqB,CAAC,CAAC,kBAAkB,EAAE,EAAE,CAC3C,CAAC,kBAAkB,GAAG,CAAC,CAAC,GAAG,oBAAoB,CAChD,CAAC;QACJ,CAAC,EAAE,uBAAuB,CAAC,CAAC;QAE5B,OAAO,GAAG,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACpC,CAAC,EAAE,CAAC,uBAAuB,EAAE,qBAAqB,CAAC,CAAC,CAAC;IAErD,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,mBAAmB,IAAI,CAAC,IAAI,sBAAsB,IAAI,CAAC;YAAE,OAAO;QAEpE,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE;YAC7B,oBAAoB,CAAC,CAAC,kBAAkB,EAAE,EAAE,CAC1C,CAAC,kBAAkB,GAAG,CAAC,CAAC,GAAG,mBAAmB,CAC/C,CAAC;QACJ,CAAC,EAAE,sBAAsB,CAAC,CAAC;QAE3B,OAAO,GAAG,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACpC,CAAC,EAAE,CAAC,sBAAsB,EAAE,oBAAoB,CAAC,CAAC,CAAC;IAEnD,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,uBAAuB,IAAI,CAAC;YAAE,OAAO;QAEzC,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE;YAC7B,qBAAqB,CAAC,CAAC,kBAAkB,EAAE,EAAE,CAC3C,CAAC,kBAAkB,GAAG,CAAC,CAAC,GAAG,oBAAoB,CAChD,CAAC;QACJ,CAAC,EAAE,uBAAuB,CAAC,CAAC;QAE5B,OAAO,GAAG,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACpC,CAAC,EAAE,CAAC,uBAAuB,EAAE,qBAAqB,CAAC,CAAC,CAAC;AACvD,CAAC;AAED,KAAK,UAAU,YAAY,CACzB,IAAmB,EACnB,OAA2B,EAC3B,MAAuB,EACvB,iBAAuE,EACvE,kBAA2G;IAE3G,MAAM,QAAQ,GAAG,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IACzC,IAAI,QAAQ,CAAC,MAAM,KAAK,mBAAmB,CAAC,OAAO,EAAE,CAAC;QACpD,MAAM,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IAChC,CAAC;SAAM,CAAC;QACN,MAAM,OAAO,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IACpC,CAAC;IACD,MAAM,SAAS,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC;IAC3C,iBAAiB,CAAC,SAAS,CAAC,CAAC;IAC7B,kBAAkB,CAAC,CAAC,WAAW,EAAE,EAAE,CACjC,qBAAqB,CAAC,WAAW,EAAE,kBAAkB,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAC9E,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitLaunchpadWelcome.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitLaunchpadWelcome.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,wBAAgB,uBAAuB,IAAI,KAAK,CAAC,YAAY,CAmC5D"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Box, Text } from "ink";
|
|
3
|
+
import { BaseColors } from "../../shared/DesignTokens.js";
|
|
4
|
+
import { KeyBadge } from "../ui-primitives/KeyBadge.js";
|
|
5
|
+
import { CockpitLaunchpadWelcomeCopy } from "./CockpitLaunchpadWelcomeCopy.js";
|
|
6
|
+
export function CockpitLaunchpadWelcome() {
|
|
7
|
+
return (React.createElement(Box, { flexDirection: "column", flexShrink: 0, paddingX: 1, marginY: 1, borderColor: BaseColors.brandBlue, borderStyle: "round" },
|
|
8
|
+
React.createElement(Box, { flexDirection: "row" },
|
|
9
|
+
React.createElement(Text, { color: BaseColors.brandBlue }, CockpitLaunchpadWelcomeCopy.title)),
|
|
10
|
+
React.createElement(Box, { flexDirection: "row" },
|
|
11
|
+
React.createElement(Text, { color: BaseColors.shade1 }, CockpitLaunchpadWelcomeCopy.paragraphs[0])),
|
|
12
|
+
React.createElement(Box, { flexDirection: "row", marginTop: 1 },
|
|
13
|
+
React.createElement(Text, { color: BaseColors.shade1 }, CockpitLaunchpadWelcomeCopy.paragraphs[1])),
|
|
14
|
+
React.createElement(Box, { width: "100%", justifyContent: "flex-end" },
|
|
15
|
+
React.createElement(KeyBadge, { char: CockpitLaunchpadWelcomeCopy.hidePrompt.char, label: CockpitLaunchpadWelcomeCopy.hidePrompt.label, color: BaseColors.brandBlue, labelColor: BaseColors.shade4 }))));
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=CockpitLaunchpadWelcome.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitLaunchpadWelcome.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitLaunchpadWelcome.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;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E,MAAM,UAAU,uBAAuB;IACrC,OAAO,CACL,oBAAC,GAAG,IACF,aAAa,EAAC,QAAQ,EACtB,UAAU,EAAE,CAAC,EACb,QAAQ,EAAE,CAAC,EACX,OAAO,EAAE,CAAC,EACV,WAAW,EAAE,UAAU,CAAC,SAAS,EACjC,WAAW,EAAC,OAAO;QAEnB,oBAAC,GAAG,IAAC,aAAa,EAAC,KAAK;YACtB,oBAAC,IAAI,IAAC,KAAK,EAAE,UAAU,CAAC,SAAS,IAC9B,2BAA2B,CAAC,KAAK,CAC7B,CACH;QACN,oBAAC,GAAG,IAAC,aAAa,EAAC,KAAK;YACtB,oBAAC,IAAI,IAAC,KAAK,EAAE,UAAU,CAAC,MAAM,IAC3B,2BAA2B,CAAC,UAAU,CAAC,CAAC,CAAC,CACrC,CACH;QACN,oBAAC,GAAG,IAAC,aAAa,EAAC,KAAK,EAAC,SAAS,EAAE,CAAC;YACnC,oBAAC,IAAI,IAAC,KAAK,EAAE,UAAU,CAAC,MAAM,IAC3B,2BAA2B,CAAC,UAAU,CAAC,CAAC,CAAC,CACrC,CACH;QACN,oBAAC,GAAG,IAAC,KAAK,EAAC,MAAM,EAAC,cAAc,EAAC,UAAU;YACzC,oBAAC,QAAQ,IACP,IAAI,EAAE,2BAA2B,CAAC,UAAU,CAAC,IAAI,EACjD,KAAK,EAAE,2BAA2B,CAAC,UAAU,CAAC,KAAK,EACnD,KAAK,EAAE,UAAU,CAAC,SAAS,EAC3B,UAAU,EAAE,UAAU,CAAC,MAAM,GAC7B,CACE,CACF,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const CockpitLaunchpadWelcomeCopy: {
|
|
2
|
+
readonly title: "Welcome//";
|
|
3
|
+
readonly paragraphs: readonly ["Run Jumbo worker daemons to keep goal workflows moving. Each worker watches Jumbo state, starts your configured agent when a goal is ready, and prompts it through the next CLI step: refinement, review, or codification.", "You define and prioritize the work; Jumbo handles the repeatable agent handoffs."];
|
|
4
|
+
readonly hidePrompt: {
|
|
5
|
+
readonly char: "x";
|
|
6
|
+
readonly label: "hide";
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=CockpitLaunchpadWelcomeCopy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitLaunchpadWelcomeCopy.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,2BAA2B;;;;;;;CAU9B,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const CockpitLaunchpadWelcomeCopy = {
|
|
2
|
+
title: "Welcome//",
|
|
3
|
+
paragraphs: [
|
|
4
|
+
"Run Jumbo worker daemons to keep goal workflows moving. Each worker watches Jumbo state, starts your configured agent when a goal is ready, and prompts it through the next CLI step: refinement, review, or codification.",
|
|
5
|
+
"You define and prioritize the work; Jumbo handles the repeatable agent handoffs.",
|
|
6
|
+
],
|
|
7
|
+
hidePrompt: {
|
|
8
|
+
char: "x",
|
|
9
|
+
label: "hide",
|
|
10
|
+
},
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=CockpitLaunchpadWelcomeCopy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitLaunchpadWelcomeCopy.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitLaunchpadWelcomeCopy.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,KAAK,EAAE,WAAW;IAClB,UAAU,EAAE;QACV,4NAA4N;QAC5N,kFAAkF;KACnF;IACD,UAAU,EAAE;QACV,IAAI,EAAE,GAAG;QACT,KAAK,EAAE,MAAM;KACd;CACO,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const CockpitPrimedEmptyCopy: {
|
|
2
|
+
readonly intro: "Project memory is stored. Ready to create your first goal.";
|
|
3
|
+
readonly addGoalPrompt: {
|
|
4
|
+
readonly keyChar: "g";
|
|
5
|
+
readonly prefix: "Press ";
|
|
6
|
+
readonly suffix: " to add a goal";
|
|
7
|
+
readonly secondary: "or run 'jumbo goal add' from another terminal";
|
|
8
|
+
};
|
|
9
|
+
readonly primerHeading: "A PRIMER ON GOALS";
|
|
10
|
+
readonly primerParagraphs: readonly ["With Jumbo, you define work as goals, not open-ended agent prompts. A goal is the unit of work: an objective, success criteria, and scope.", "Goals give project memory a single object to organize around. When an agent starts the goal with the Jumbo CLI, Jumbo returns focused project knowledge and workflow instructions for that goal.", "New memories are captured only through explicit Jumbo commands run by the agent or by you as corrections, decisions, and discoveries arise during the work."];
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=CockpitPrimedEmptyCopy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitPrimedEmptyCopy.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitPrimedEmptyCopy.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB;;;;;;;;;;CAczB,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export const CockpitPrimedEmptyCopy = {
|
|
2
|
+
intro: "Project memory is stored. Ready to create your first goal.",
|
|
3
|
+
addGoalPrompt: {
|
|
4
|
+
keyChar: "g",
|
|
5
|
+
prefix: "Press ",
|
|
6
|
+
suffix: " to add a goal",
|
|
7
|
+
secondary: "or run 'jumbo goal add' from another terminal",
|
|
8
|
+
},
|
|
9
|
+
primerHeading: "A PRIMER ON GOALS",
|
|
10
|
+
primerParagraphs: [
|
|
11
|
+
"With Jumbo, you define work as goals, not open-ended agent prompts. A goal is the unit of work: an objective, success criteria, and scope.",
|
|
12
|
+
"Goals give project memory a single object to organize around. When an agent starts the goal with the Jumbo CLI, Jumbo returns focused project knowledge and workflow instructions for that goal.",
|
|
13
|
+
"New memories are captured only through explicit Jumbo commands run by the agent or by you as corrections, decisions, and discoveries arise during the work.",
|
|
14
|
+
],
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=CockpitPrimedEmptyCopy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitPrimedEmptyCopy.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitPrimedEmptyCopy.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACpC,KAAK,EAAE,4DAA4D;IACnE,aAAa,EAAE;QACb,OAAO,EAAE,GAAG;QACZ,MAAM,EAAE,QAAQ;QAChB,MAAM,EAAE,gBAAgB;QACxB,SAAS,EAAE,+CAA+C;KAC3D;IACD,aAAa,EAAE,mBAAmB;IAClC,gBAAgB,EAAE;QAChB,4IAA4I;QAC5I,kMAAkM;QAClM,6JAA6J;KAC9J;CACO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitPrimedEmptyView.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitPrimedEmptyView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,wBAAgB,sBAAsB,IAAI,KAAK,CAAC,YAAY,CAsC3D"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Box, Text } from "ink";
|
|
3
|
+
import { SemanticColors, TuiLayout } from "../../shared/DesignTokens.js";
|
|
4
|
+
import { CenteredPrompt } from "./CenteredPrompt.js";
|
|
5
|
+
import { SectionHeading } from "../ui-primitives/SectionHeading.js";
|
|
6
|
+
import { CockpitPrimedEmptyCopy } from "./CockpitPrimedEmptyCopy.js";
|
|
7
|
+
export function CockpitPrimedEmptyView() {
|
|
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, { marginTop: 1, flexDirection: "column", alignItems: "center" },
|
|
11
|
+
React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitPrimedEmptyCopy.intro)),
|
|
12
|
+
React.createElement(Box, { marginTop: 2 },
|
|
13
|
+
React.createElement(CenteredPrompt, { keyChar: CockpitPrimedEmptyCopy.addGoalPrompt.keyChar, prefix: CockpitPrimedEmptyCopy.addGoalPrompt.prefix, suffix: CockpitPrimedEmptyCopy.addGoalPrompt.suffix, secondary: CockpitPrimedEmptyCopy.addGoalPrompt.secondary })),
|
|
14
|
+
React.createElement(Box, { marginTop: 1 },
|
|
15
|
+
React.createElement(SectionHeading, { title: CockpitPrimedEmptyCopy.primerHeading })),
|
|
16
|
+
React.createElement(Box, { marginTop: 1 },
|
|
17
|
+
React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitPrimedEmptyCopy.primerParagraphs[0])),
|
|
18
|
+
React.createElement(Box, { marginTop: 1 },
|
|
19
|
+
React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitPrimedEmptyCopy.primerParagraphs[1])),
|
|
20
|
+
React.createElement(Box, { marginTop: 1 },
|
|
21
|
+
React.createElement(Text, { color: SemanticColors.primary, wrap: "wrap" }, CockpitPrimedEmptyCopy.primerParagraphs[2])))));
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=CockpitPrimedEmptyView.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitPrimedEmptyView.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitPrimedEmptyView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAChC,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE,MAAM,UAAU,sBAAsB;IACpC,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,SAAS,EAAE,CAAC,EAAE,aAAa,EAAC,QAAQ,EAAC,UAAU,EAAC,QAAQ;gBAC3D,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,sBAAsB,CAAC,KAAK,CACxB,CACH;YACN,oBAAC,GAAG,IAAC,SAAS,EAAE,CAAC;gBACf,oBAAC,cAAc,IACb,OAAO,EAAE,sBAAsB,CAAC,aAAa,CAAC,OAAO,EACrD,MAAM,EAAE,sBAAsB,CAAC,aAAa,CAAC,MAAM,EACnD,MAAM,EAAE,sBAAsB,CAAC,aAAa,CAAC,MAAM,EACnD,SAAS,EAAE,sBAAsB,CAAC,aAAa,CAAC,SAAS,GACzD,CACE;YACN,oBAAC,GAAG,IAAC,SAAS,EAAE,CAAC;gBACf,oBAAC,cAAc,IAAC,KAAK,EAAE,sBAAsB,CAAC,aAAa,GAAI,CAC3D;YACN,oBAAC,GAAG,IAAC,SAAS,EAAE,CAAC;gBACf,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,CAAC,CACtC,CACH;YACN,oBAAC,GAAG,IAAC,SAAS,EAAE,CAAC;gBACf,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,CAAC,CACtC,CACH;YACN,oBAAC,GAAG,IAAC,SAAS,EAAE,CAAC;gBACf,oBAAC,IAAI,IAAC,KAAK,EAAE,cAAc,CAAC,OAAO,EAAE,IAAI,EAAC,MAAM,IAC7C,sBAAsB,CAAC,gBAAgB,CAAC,CAAC,CAAC,CACtC,CACH,CACF,CACF,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { LaunchAnimationRenderer } from "./CockpitLaunchpadView.js";
|
|
3
|
+
import type { ISettingsReader } from "../../../application/settings/ISettingsReader.js";
|
|
4
|
+
import { ProjectLifecycle } from "../../../domain/project/Constants.js";
|
|
5
|
+
export type CockpitState = (typeof ProjectLifecycle)[keyof typeof ProjectLifecycle];
|
|
6
|
+
interface CockpitScreenProps {
|
|
7
|
+
state?: CockpitState;
|
|
8
|
+
shortcutsEnabled?: boolean;
|
|
9
|
+
terminalWidth?: number;
|
|
10
|
+
terminalHeight?: number;
|
|
11
|
+
launchAnimationEnabled?: boolean;
|
|
12
|
+
bannerAnimationComplete?: boolean;
|
|
13
|
+
billboardAnimationComplete?: boolean;
|
|
14
|
+
onBannerAnimationComplete?: () => void;
|
|
15
|
+
onBillboardAnimationComplete?: () => void;
|
|
16
|
+
launchAnimationRenderer?: LaunchAnimationRenderer;
|
|
17
|
+
settingsReader?: Pick<ISettingsReader, "read" | "write">;
|
|
18
|
+
}
|
|
19
|
+
export declare function CockpitScreen({ state, shortcutsEnabled, terminalWidth, terminalHeight, launchAnimationEnabled, bannerAnimationComplete, billboardAnimationComplete, onBannerAnimationComplete, onBillboardAnimationComplete, launchAnimationRenderer, settingsReader, }?: CockpitScreenProps): React.ReactElement;
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=CockpitScreen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitScreen.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAQ9D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kDAAkD,CAAC;AACxF,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAIxE,MAAM,MAAM,YAAY,GACtB,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAC;AAI3D,UAAU,kBAAkB;IAC1B,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,yBAAyB,CAAC,EAAE,MAAM,IAAI,CAAC;IACvC,4BAA4B,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1C,uBAAuB,CAAC,EAAE,uBAAuB,CAAC;IAClD,cAAc,CAAC,EAAE,IAAI,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC;CAC1D;AAED,wBAAgB,aAAa,CAAC,EAC5B,KAAiC,EACjC,gBAAuB,EACvB,aAAmD,EACnD,cAAiD,EACjD,sBAA6B,EAC7B,uBAAuB,EACvB,0BAAkC,EAClC,yBAAyB,EACzB,4BAA4B,EAC5B,uBAAuB,EACvB,cAAc,GACf,GAAE,kBAAuB,GAAG,KAAK,CAAC,YAAY,CAkF9C"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import React, { useState, useCallback, useMemo } from "react";
|
|
2
|
+
import { Box } from "ink";
|
|
3
|
+
import { AnimatedBanner } from "./AnimatedBanner.js";
|
|
4
|
+
import { generateCustomInfoBoxLines } from "../../cli/banner/AnimationFrames.js";
|
|
5
|
+
import { CockpitGreeterView } from "./CockpitGreeterView.js";
|
|
6
|
+
import { CockpitUnprimedView } from "./CockpitUnprimedView.js";
|
|
7
|
+
import { CockpitPrimedEmptyView } from "./CockpitPrimedEmptyView.js";
|
|
8
|
+
import { CockpitLaunchpadView } from "./CockpitLaunchpadView.js";
|
|
9
|
+
import { ProjectLifecycle } from "../../../domain/project/Constants.js";
|
|
10
|
+
import { CockpitScreenCopy } from "./CockpitScreenCopy.js";
|
|
11
|
+
import { CockpitScreenDefaults } from "./CockpitScreenDefaults.js";
|
|
12
|
+
const PLACEHOLDER_COCKPIT_STATE = ProjectLifecycle.UNINITIALIZED;
|
|
13
|
+
export function CockpitScreen({ state = PLACEHOLDER_COCKPIT_STATE, shortcutsEnabled = true, terminalWidth = CockpitScreenDefaults.terminalWidth, terminalHeight = CockpitScreenDefaults.bodyHeight, launchAnimationEnabled = true, bannerAnimationComplete, billboardAnimationComplete = false, onBannerAnimationComplete, onBillboardAnimationComplete, launchAnimationRenderer, settingsReader, } = {}) {
|
|
14
|
+
const [localBannerComplete, setLocalBannerComplete] = useState(!launchAnimationEnabled);
|
|
15
|
+
const bannerComplete = !launchAnimationEnabled ||
|
|
16
|
+
bannerAnimationComplete === true ||
|
|
17
|
+
localBannerComplete;
|
|
18
|
+
const bannerAnimationActive = launchAnimationEnabled && !bannerComplete;
|
|
19
|
+
const billboardAnimationActive = launchAnimationEnabled && !billboardAnimationComplete;
|
|
20
|
+
const bannerPersists = state === ProjectLifecycle.UNINITIALIZED ||
|
|
21
|
+
state === ProjectLifecycle.UNPRIMED;
|
|
22
|
+
const shouldRenderBanner = state !== ProjectLifecycle.PRIMED && (bannerAnimationActive || bannerPersists);
|
|
23
|
+
const shouldRenderContent = state === ProjectLifecycle.PRIMED || bannerComplete;
|
|
24
|
+
const launchAnimationSize = useMemo(() => ({
|
|
25
|
+
height: Math.max(1, Math.floor(terminalHeight)),
|
|
26
|
+
width: Math.max(1, Math.floor(terminalWidth)),
|
|
27
|
+
}), [terminalHeight, terminalWidth]);
|
|
28
|
+
const handleBannerComplete = useCallback(() => {
|
|
29
|
+
setLocalBannerComplete(true);
|
|
30
|
+
onBannerAnimationComplete?.();
|
|
31
|
+
}, [onBannerAnimationComplete]);
|
|
32
|
+
const infoBoxLines = useMemo(() => {
|
|
33
|
+
if (state === ProjectLifecycle.UNINITIALIZED) {
|
|
34
|
+
return generateCustomInfoBoxLines([
|
|
35
|
+
{ label: CockpitScreenCopy.directoryLabel, value: process.cwd() },
|
|
36
|
+
{
|
|
37
|
+
label: CockpitScreenCopy.statusLabel,
|
|
38
|
+
value: CockpitScreenCopy.uninitializedStatus,
|
|
39
|
+
},
|
|
40
|
+
]);
|
|
41
|
+
}
|
|
42
|
+
if (state === ProjectLifecycle.UNPRIMED) {
|
|
43
|
+
return generateCustomInfoBoxLines([
|
|
44
|
+
{ label: CockpitScreenCopy.directoryLabel, value: process.cwd() },
|
|
45
|
+
{ label: CockpitScreenCopy.statusLabel, value: CockpitScreenCopy.readyStatus },
|
|
46
|
+
]);
|
|
47
|
+
}
|
|
48
|
+
return undefined;
|
|
49
|
+
}, [state]);
|
|
50
|
+
return (React.createElement(Box, { flexDirection: "column", flexGrow: 1, width: "100%" },
|
|
51
|
+
shouldRenderBanner && (React.createElement(Box, { alignSelf: "center", marginTop: 1, flexShrink: 0 },
|
|
52
|
+
React.createElement(AnimatedBanner, { onComplete: handleBannerComplete, persist: bannerPersists, version: CockpitScreenDefaults.placeholderVersion, infoBoxLines: infoBoxLines, animated: bannerAnimationActive }))),
|
|
53
|
+
shouldRenderContent && (React.createElement(Box, { flexDirection: "column", flexGrow: 1, width: "100%" },
|
|
54
|
+
state === ProjectLifecycle.UNINITIALIZED && React.createElement(CockpitGreeterView, null),
|
|
55
|
+
state === ProjectLifecycle.UNPRIMED && React.createElement(CockpitUnprimedView, null),
|
|
56
|
+
state === ProjectLifecycle.PRIMED_EMPTY && React.createElement(CockpitPrimedEmptyView, null),
|
|
57
|
+
state === ProjectLifecycle.PRIMED && (React.createElement(CockpitLaunchpadView, { shortcutsEnabled: shortcutsEnabled, launchAnimationSize: billboardAnimationActive ? launchAnimationSize : undefined, onLaunchAnimationDone: onBillboardAnimationComplete, launchAnimationRenderer: launchAnimationRenderer, settingsReader: settingsReader }))))));
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=CockpitScreen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitScreen.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitScreen.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitScreenCopy.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitScreenCopy.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB;;;;;CAKpB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitScreenCopy.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitScreenCopy.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,cAAc,EAAE,WAAW;IAC3B,WAAW,EAAE,QAAQ;IACrB,mBAAmB,EAAE,eAAe;IACpC,WAAW,EAAE,OAAO;CACZ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitScreenDefaults.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitScreenDefaults.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB;;;;CAIxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitScreenDefaults.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitScreenDefaults.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,kBAAkB,EAAE,OAAO;IAC3B,aAAa,EAAE,EAAE;IACjB,UAAU,EAAE,EAAE;CACN,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const CockpitUnprimedCopy: {
|
|
2
|
+
readonly intro: "This looks like an existing project.\nStart by giving Jumbo some project context before adding your first goal.";
|
|
3
|
+
readonly nextStepsHeading: "NEXT STEPS";
|
|
4
|
+
readonly nextSteps: readonly ["1. Open another shell in this directory", "2. Start AI coding agent (e.g. claude, codex, etc.)", "3. Let the agent explore the project and save insights to Jumbo's memory when it asks"];
|
|
5
|
+
readonly agentNudgeNote: "Note: You'll need to nudge your agent by prompting 'follow instructions'.";
|
|
6
|
+
readonly skipPrompt: {
|
|
7
|
+
readonly keyChar: "s";
|
|
8
|
+
readonly prefix: "Press ";
|
|
9
|
+
readonly suffix: " to skip this screen for now";
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=CockpitUnprimedCopy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitUnprimedCopy.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitUnprimedCopy.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;CActB,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export const CockpitUnprimedCopy = {
|
|
2
|
+
intro: "This looks like an existing project.\nStart by giving Jumbo some project context before adding your first goal.",
|
|
3
|
+
nextStepsHeading: "NEXT STEPS",
|
|
4
|
+
nextSteps: [
|
|
5
|
+
"1. Open another shell in this directory",
|
|
6
|
+
"2. Start AI coding agent (e.g. claude, codex, etc.)",
|
|
7
|
+
"3. Let the agent explore the project and save insights to Jumbo's memory when it asks",
|
|
8
|
+
],
|
|
9
|
+
agentNudgeNote: "Note: You'll need to nudge your agent by prompting 'follow instructions'.",
|
|
10
|
+
skipPrompt: {
|
|
11
|
+
keyChar: "s",
|
|
12
|
+
prefix: "Press ",
|
|
13
|
+
suffix: " to skip this screen for now",
|
|
14
|
+
},
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=CockpitUnprimedCopy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitUnprimedCopy.js","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitUnprimedCopy.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,KAAK,EAAE,iHAAiH;IACxH,gBAAgB,EAAE,YAAY;IAC9B,SAAS,EAAE;QACT,yCAAyC;QACzC,qDAAqD;QACrD,uFAAuF;KACxF;IACD,cAAc,EAAE,2EAA2E;IAC3F,UAAU,EAAE;QACV,OAAO,EAAE,GAAG;QACZ,MAAM,EAAE,QAAQ;QAChB,MAAM,EAAE,8BAA8B;KACvC;CACO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CockpitUnprimedView.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tui/cockpit/CockpitUnprimedView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,wBAAgB,mBAAmB,IAAI,KAAK,CAAC,YAAY,CA4CxD"}
|