jumbo-cli 2.0.1 → 2.0.3
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/LICENSE.txt +661 -661
- package/README.md +239 -239
- package/assets/claude-logo.svg +7 -7
- package/assets/codex-logo.svg +3 -3
- package/assets/cursor-logo.svg +31 -31
- package/assets/mistral-logo.svg +19 -19
- package/assets/skills/codify-jumbo-goal/SKILL.md +116 -116
- package/assets/skills/define-jumbo-goals/SKILL.md +193 -193
- package/assets/skills/refine-jumbo-goals/SKILL.md +156 -156
- package/assets/skills/reject-jumbo-goal/SKILL.md +58 -58
- package/assets/skills/review-jumbo-goal/SKILL.md +94 -94
- package/assets/skills/start-jumbo-goal/SKILL.md +86 -86
- package/assets/vscode-logo.svg +41 -41
- package/dist/domain/project/AgentFileReferenceContent.js +7 -7
- package/dist/domain/project/AgentsMdContent.js +74 -74
- package/dist/domain/project/CopilotInstructionsContent.js +38 -38
- package/dist/infrastructure/context/architecture/define/SqliteArchitectureDefinedProjector.js +5 -5
- package/dist/infrastructure/context/architecture/migrations/001-create-architecture-views.sql +16 -16
- package/dist/infrastructure/context/architecture/migrations/002-drop-dataflow-column.sql +4 -4
- package/dist/infrastructure/context/architecture/update/SqliteArchitectureUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/audience-pains/add/SqliteAudiencePainAddedProjector.js +4 -4
- package/dist/infrastructure/context/audience-pains/migrations/001-create-audience-pain-views.sql +17 -17
- package/dist/infrastructure/context/audience-pains/update/SqliteAudiencePainUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/audiences/add/SqliteAudienceAddedProjector.js +5 -5
- package/dist/infrastructure/context/audiences/migrations/001-create-audience-views.sql +17 -17
- package/dist/infrastructure/context/audiences/remove/SqliteAudienceRemovedProjector.js +6 -6
- package/dist/infrastructure/context/audiences/update/SqliteAudienceUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/components/add/SqliteComponentAddedProjector.js +5 -5
- package/dist/infrastructure/context/components/deprecate/SqliteComponentDeprecatedProjector.js +7 -7
- package/dist/infrastructure/context/components/migrations/001-create-component-views.sql +21 -21
- package/dist/infrastructure/context/components/remove/SqliteComponentRemovedProjector.js +6 -6
- package/dist/infrastructure/context/components/rename/SqliteComponentRenamedProjector.js +4 -4
- package/dist/infrastructure/context/components/undeprecate/SqliteComponentUndeprecatedProjector.js +7 -7
- package/dist/infrastructure/context/components/update/SqliteComponentUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/decisions/add/SqliteDecisionAddedProjector.js +6 -6
- package/dist/infrastructure/context/decisions/migrations/001-create-decision-views.sql +22 -22
- package/dist/infrastructure/context/decisions/restore/SqliteDecisionRestoredProjector.js +9 -9
- package/dist/infrastructure/context/decisions/reverse/SqliteDecisionReversedProjector.js +8 -8
- package/dist/infrastructure/context/decisions/supersede/SqliteDecisionSupersededProjector.js +7 -7
- package/dist/infrastructure/context/decisions/update/SqliteDecisionUpdatedProjector.js +10 -10
- package/dist/infrastructure/context/dependencies/add/SqliteDependencyAddedProjector.js +5 -5
- package/dist/infrastructure/context/dependencies/get/SqliteLegacyDependencyReader.js +5 -5
- package/dist/infrastructure/context/dependencies/migrations/001-create-dependency-views.sql +21 -21
- package/dist/infrastructure/context/dependencies/migrations/002-add-external-dependency-columns.sql +11 -11
- package/dist/infrastructure/context/dependencies/remove/SqliteDependencyRemovedProjector.js +8 -8
- package/dist/infrastructure/context/dependencies/update/SqliteDependencyUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/goals/add/SqliteGoalAddedProjector.js +7 -7
- package/dist/infrastructure/context/goals/approve/SqliteGoalApprovedProjector.js +9 -9
- package/dist/infrastructure/context/goals/block/SqliteGoalBlockedProjector.js +7 -7
- package/dist/infrastructure/context/goals/close/SqliteGoalClosedProjector.js +9 -9
- package/dist/infrastructure/context/goals/codify/SqliteGoalCodifyingStartedProjector.js +9 -9
- package/dist/infrastructure/context/goals/commit/SqliteGoalCommittedProjector.js +9 -9
- package/dist/infrastructure/context/goals/complete/SqliteGoalCompletedProjector.js +9 -9
- package/dist/infrastructure/context/goals/migrate/SqliteGoalStatusMigratedProjector.js +7 -7
- package/dist/infrastructure/context/goals/migrations/001-create-goal-views.sql +20 -20
- package/dist/infrastructure/context/goals/migrations/002-add-embedded-context-columns.sql +11 -11
- package/dist/infrastructure/context/goals/migrations/003-add-next-goal-column.sql +4 -4
- package/dist/infrastructure/context/goals/migrations/004-add-claim-columns.sql +7 -7
- package/dist/infrastructure/context/goals/migrations/005-add-progress-column.sql +4 -4
- package/dist/infrastructure/context/goals/migrations/006-drop-boundaries-and-embedded-context-columns.sql +11 -11
- package/dist/infrastructure/context/goals/migrations/007-add-title-column.sql +2 -2
- package/dist/infrastructure/context/goals/migrations/008-add-prerequisite-goals-column.sql +1 -1
- package/dist/infrastructure/context/goals/migrations/009-add-review-issues-column.sql +1 -1
- package/dist/infrastructure/context/goals/pause/SqliteGoalPausedProjector.js +7 -7
- package/dist/infrastructure/context/goals/qualify/SqliteGoalQualifiedProjector.js +9 -9
- package/dist/infrastructure/context/goals/refine/SqliteGoalRefinedProjector.js +15 -15
- package/dist/infrastructure/context/goals/reject/SqliteGoalRejectedProjector.js +10 -10
- package/dist/infrastructure/context/goals/remove/SqliteGoalRemovedProjector.js +3 -3
- package/dist/infrastructure/context/goals/reset/SqliteGoalResetProjector.js +11 -11
- package/dist/infrastructure/context/goals/resume/SqliteGoalResumedProjector.js +10 -10
- package/dist/infrastructure/context/goals/review/SqliteGoalSubmittedForReviewProjector.js +9 -9
- package/dist/infrastructure/context/goals/start/SqliteGoalStartedProjector.js +9 -9
- package/dist/infrastructure/context/goals/submit/SqliteGoalSubmittedProjector.js +9 -9
- package/dist/infrastructure/context/goals/unblock/SqliteGoalUnblockedProjector.js +7 -7
- package/dist/infrastructure/context/goals/update/SqliteGoalUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/goals/update-progress/SqliteGoalProgressUpdatedProjector.js +8 -8
- package/dist/infrastructure/context/guidelines/add/SqliteGuidelineAddedProjector.js +5 -5
- package/dist/infrastructure/context/guidelines/migrations/001-create-guideline-views.sql +22 -22
- package/dist/infrastructure/context/guidelines/remove/SqliteGuidelineRemovedProjector.js +8 -8
- package/dist/infrastructure/context/guidelines/update/SqliteGuidelineUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/invariants/add/SqliteInvariantAddedProjector.js +5 -5
- package/dist/infrastructure/context/invariants/migrations/001-create-invariant-views.sql +16 -16
- package/dist/infrastructure/context/invariants/remove/SqliteInvariantRemovedProjector.js +2 -2
- package/dist/infrastructure/context/invariants/update/SqliteInvariantUpdatedProjector.js +9 -9
- package/dist/infrastructure/context/project/init/SqliteProjectInitializedProjector.js +5 -5
- package/dist/infrastructure/context/project/migrations/001-create-project-views.sql +13 -13
- package/dist/infrastructure/context/project/migrations/002-drop-boundaries-column.sql +4 -4
- package/dist/infrastructure/context/project/update/SqliteProjectUpdatedProjector.js +4 -4
- package/dist/infrastructure/context/relations/add/SqliteRelationAddedProjector.js +12 -12
- package/dist/infrastructure/context/relations/deactivate/SqliteRelationDeactivatedProjector.js +14 -14
- package/dist/infrastructure/context/relations/migrations/001-create-relation-views.sql +28 -28
- package/dist/infrastructure/context/relations/reactivate/SqliteRelationReactivatedProjector.js +14 -14
- package/dist/infrastructure/context/relations/remove/SqliteRelationRemovedProjector.js +14 -14
- package/dist/infrastructure/context/sessions/end/SqliteSessionEndedProjector.js +8 -8
- package/dist/infrastructure/context/sessions/migrations/001-create-session-views.sql +43 -43
- package/dist/infrastructure/context/sessions/migrations/002-add-goal-lifecycle-columns.sql +7 -7
- package/dist/infrastructure/context/sessions/migrations/003-remove-session-pause-status.sql +8 -8
- package/dist/infrastructure/context/sessions/migrations/004-drop-session-summary-views.sql +5 -5
- package/dist/infrastructure/context/sessions/start/SqliteSessionStartedProjector.js +5 -5
- package/dist/infrastructure/context/value-propositions/add/SqliteValuePropositionAddedProjector.js +5 -5
- package/dist/infrastructure/context/value-propositions/migrations/001-create-value-proposition-views.sql +19 -19
- package/dist/infrastructure/context/value-propositions/remove/SqliteValuePropositionRemovedProjector.js +2 -2
- package/dist/infrastructure/context/value-propositions/update/SqliteValuePropositionUpdatedProjector.js +4 -4
- package/dist/infrastructure/host/workers/migrations/001-create-workers.sql +12 -12
- package/dist/infrastructure/persistence/MigrationRunner.js +10 -10
- package/dist/infrastructure/settings/FsSettingsInitializer.js +25 -25
- package/dist/infrastructure/settings/FsSettingsReader.js +25 -25
- package/dist/infrastructure/telemetry/PostHogTelemetryClient.d.ts +1 -1
- package/dist/infrastructure/telemetry/PostHogTelemetryClient.d.ts.map +1 -1
- package/dist/infrastructure/telemetry/PostHogTelemetryClient.js +7 -1
- package/dist/infrastructure/telemetry/PostHogTelemetryClient.js.map +1 -1
- package/dist/infrastructure/telemetry/PostHogTelemetryConstants.d.ts +2 -2
- package/dist/infrastructure/telemetry/PostHogTelemetryConstants.d.ts.map +1 -1
- package/dist/infrastructure/telemetry/PostHogTelemetryConstants.js +2 -2
- package/dist/infrastructure/telemetry/PostHogTelemetryConstants.js.map +1 -1
- package/dist/presentation/cli/commands/project/init/project.init.d.ts.map +1 -1
- package/dist/presentation/cli/commands/project/init/project.init.js +4 -1
- package/dist/presentation/cli/commands/project/init/project.init.js.map +1 -1
- package/package.json +90 -89
- package/dist/application/context/goals/complete/CompleteGoalCommand.d.ts +0 -8
- package/dist/application/context/goals/complete/CompleteGoalCommand.d.ts.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalCommand.js +0 -3
- package/dist/application/context/goals/complete/CompleteGoalCommand.js.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalCommandHandler.d.ts +0 -27
- package/dist/application/context/goals/complete/CompleteGoalCommandHandler.d.ts.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalCommandHandler.js +0 -52
- package/dist/application/context/goals/complete/CompleteGoalCommandHandler.js.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalController.d.ts +0 -9
- package/dist/application/context/goals/complete/CompleteGoalController.d.ts.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalController.js +0 -13
- package/dist/application/context/goals/complete/CompleteGoalController.js.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalRequest.d.ts +0 -10
- package/dist/application/context/goals/complete/CompleteGoalRequest.d.ts.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalRequest.js +0 -3
- package/dist/application/context/goals/complete/CompleteGoalRequest.js.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalResponse.d.ts +0 -17
- package/dist/application/context/goals/complete/CompleteGoalResponse.d.ts.map +0 -1
- package/dist/application/context/goals/complete/CompleteGoalResponse.js +0 -3
- package/dist/application/context/goals/complete/CompleteGoalResponse.js.map +0 -1
- package/dist/application/context/goals/complete/ICompleteGoalGateway.d.ts +0 -6
- package/dist/application/context/goals/complete/ICompleteGoalGateway.d.ts.map +0 -1
- package/dist/application/context/goals/complete/ICompleteGoalGateway.js +0 -3
- package/dist/application/context/goals/complete/ICompleteGoalGateway.js.map +0 -1
- package/dist/application/context/goals/complete/LocalCompleteGoalGateway.d.ts +0 -16
- package/dist/application/context/goals/complete/LocalCompleteGoalGateway.d.ts.map +0 -1
- package/dist/application/context/goals/complete/LocalCompleteGoalGateway.js +0 -49
- package/dist/application/context/goals/complete/LocalCompleteGoalGateway.js.map +0 -1
- package/dist/application/context/project/init/IInitializationProtocol.d.ts +0 -44
- package/dist/application/context/project/init/IInitializationProtocol.d.ts.map +0 -1
- package/dist/application/context/project/init/IInitializationProtocol.js +0 -14
- package/dist/application/context/project/init/IInitializationProtocol.js.map +0 -1
- package/dist/application/context/project/init/InitializationProtocol.d.ts +0 -32
- package/dist/application/context/project/init/InitializationProtocol.d.ts.map +0 -1
- package/dist/application/context/project/init/InitializationProtocol.js +0 -51
- package/dist/application/context/project/init/InitializationProtocol.js.map +0 -1
- package/dist/application/context/relations/get/GetRelationsQueryHandler.d.ts +0 -14
- package/dist/application/context/relations/get/GetRelationsQueryHandler.d.ts.map +0 -1
- package/dist/application/context/relations/get/GetRelationsQueryHandler.js +0 -19
- package/dist/application/context/relations/get/GetRelationsQueryHandler.js.map +0 -1
- package/dist/application/context/value-propositions/list/ListValuePropositionsQueryHandler.d.ts +0 -27
- package/dist/application/context/value-propositions/list/ListValuePropositionsQueryHandler.d.ts.map +0 -1
- package/dist/application/context/value-propositions/list/ListValuePropositionsQueryHandler.js +0 -32
- package/dist/application/context/value-propositions/list/ListValuePropositionsQueryHandler.js.map +0 -1
- package/dist/application/maintenance/repair/IRepairMaintenanceGateway.d.ts +0 -6
- package/dist/application/maintenance/repair/IRepairMaintenanceGateway.d.ts.map +0 -1
- package/dist/application/maintenance/repair/IRepairMaintenanceGateway.js +0 -3
- package/dist/application/maintenance/repair/IRepairMaintenanceGateway.js.map +0 -1
- package/dist/application/maintenance/repair/LocalRepairMaintenanceGateway.d.ts +0 -16
- package/dist/application/maintenance/repair/LocalRepairMaintenanceGateway.d.ts.map +0 -1
- package/dist/application/maintenance/repair/LocalRepairMaintenanceGateway.js +0 -90
- package/dist/application/maintenance/repair/LocalRepairMaintenanceGateway.js.map +0 -1
- package/dist/application/maintenance/repair/RepairMaintenanceController.d.ts +0 -9
- package/dist/application/maintenance/repair/RepairMaintenanceController.d.ts.map +0 -1
- package/dist/application/maintenance/repair/RepairMaintenanceController.js +0 -13
- package/dist/application/maintenance/repair/RepairMaintenanceController.js.map +0 -1
- package/dist/application/maintenance/repair/RepairMaintenanceRequest.d.ts +0 -6
- package/dist/application/maintenance/repair/RepairMaintenanceRequest.d.ts.map +0 -1
- package/dist/application/maintenance/repair/RepairMaintenanceRequest.js +0 -3
- package/dist/application/maintenance/repair/RepairMaintenanceRequest.js.map +0 -1
- package/dist/application/maintenance/repair/RepairMaintenanceResponse.d.ts +0 -9
- package/dist/application/maintenance/repair/RepairMaintenanceResponse.d.ts.map +0 -1
- package/dist/application/maintenance/repair/RepairMaintenanceResponse.js +0 -3
- package/dist/application/maintenance/repair/RepairMaintenanceResponse.js.map +0 -1
- package/dist/application/repair/IRepairGateway.d.ts +0 -6
- package/dist/application/repair/IRepairGateway.d.ts.map +0 -1
- package/dist/application/repair/IRepairGateway.js +0 -3
- package/dist/application/repair/IRepairGateway.js.map +0 -1
- package/dist/application/repair/LocalRepairGateway.d.ts +0 -16
- package/dist/application/repair/LocalRepairGateway.d.ts.map +0 -1
- package/dist/application/repair/LocalRepairGateway.js +0 -90
- package/dist/application/repair/LocalRepairGateway.js.map +0 -1
- package/dist/application/repair/RepairController.d.ts +0 -9
- package/dist/application/repair/RepairController.d.ts.map +0 -1
- package/dist/application/repair/RepairController.js +0 -13
- package/dist/application/repair/RepairController.js.map +0 -1
- package/dist/application/repair/RepairRequest.d.ts +0 -6
- package/dist/application/repair/RepairRequest.d.ts.map +0 -1
- package/dist/application/repair/RepairRequest.js +0 -3
- package/dist/application/repair/RepairRequest.js.map +0 -1
- package/dist/application/repair/RepairResponse.d.ts +0 -9
- package/dist/application/repair/RepairResponse.d.ts.map +0 -1
- package/dist/application/repair/RepairResponse.js +0 -3
- package/dist/application/repair/RepairResponse.js.map +0 -1
- package/dist/domain/project/AgentInstructions.d.ts +0 -67
- package/dist/domain/project/AgentInstructions.d.ts.map +0 -1
- package/dist/domain/project/AgentInstructions.js +0 -261
- package/dist/domain/project/AgentInstructions.js.map +0 -1
- package/dist/infrastructure/context/goals/claims/FsGoalClaimStore.d.ts +0 -33
- package/dist/infrastructure/context/goals/claims/FsGoalClaimStore.d.ts.map +0 -1
- package/dist/infrastructure/context/goals/claims/FsGoalClaimStore.js +0 -66
- package/dist/infrastructure/context/goals/claims/FsGoalClaimStore.js.map +0 -1
- package/dist/infrastructure/context/goals/get/LocalGetGoalsGateway.d.ts +0 -10
- package/dist/infrastructure/context/goals/get/LocalGetGoalsGateway.d.ts.map +0 -1
- package/dist/infrastructure/context/goals/get/LocalGetGoalsGateway.js +0 -36
- package/dist/infrastructure/context/goals/get/LocalGetGoalsGateway.js.map +0 -1
- package/dist/infrastructure/context/goals/get/LocalShowGoalGateway.d.ts +0 -10
- package/dist/infrastructure/context/goals/get/LocalShowGoalGateway.d.ts.map +0 -1
- package/dist/infrastructure/context/goals/get/LocalShowGoalGateway.js +0 -14
- package/dist/infrastructure/context/goals/get/LocalShowGoalGateway.js.map +0 -1
- package/dist/infrastructure/context/relations/get/LocalGetRelationsGateway.d.ts +0 -10
- package/dist/infrastructure/context/relations/get/LocalGetRelationsGateway.d.ts.map +0 -1
- package/dist/infrastructure/context/relations/get/LocalGetRelationsGateway.js +0 -18
- package/dist/infrastructure/context/relations/get/LocalGetRelationsGateway.js.map +0 -1
- package/dist/infrastructure/context/sessions/get/LocalGetSessionsGateway.d.ts +0 -10
- package/dist/infrastructure/context/sessions/get/LocalGetSessionsGateway.d.ts.map +0 -1
- package/dist/infrastructure/context/sessions/get/LocalGetSessionsGateway.js +0 -14
- package/dist/infrastructure/context/sessions/get/LocalGetSessionsGateway.js.map +0 -1
- package/dist/presentation/cli/commands/goals/complete/GoalCompleteOutputBuilder.d.ts +0 -29
- package/dist/presentation/cli/commands/goals/complete/GoalCompleteOutputBuilder.d.ts.map +0 -1
- package/dist/presentation/cli/commands/goals/complete/GoalCompleteOutputBuilder.js +0 -105
- package/dist/presentation/cli/commands/goals/complete/GoalCompleteOutputBuilder.js.map +0 -1
- package/dist/presentation/cli/commands/goals/complete/goal.complete.d.ts +0 -20
- package/dist/presentation/cli/commands/goals/complete/goal.complete.d.ts.map +0 -1
- package/dist/presentation/cli/commands/goals/complete/goal.complete.js +0 -58
- package/dist/presentation/cli/commands/goals/complete/goal.complete.js.map +0 -1
- package/dist/presentation/cli/commands/maintenance/db/rebuild/db.rebuild.d.ts +0 -26
- package/dist/presentation/cli/commands/maintenance/db/rebuild/db.rebuild.d.ts.map +0 -1
- package/dist/presentation/cli/commands/maintenance/db/rebuild/db.rebuild.js +0 -68
- package/dist/presentation/cli/commands/maintenance/db/rebuild/db.rebuild.js.map +0 -1
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/MigrateDependenciesOutputBuilder.d.ts +0 -14
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/MigrateDependenciesOutputBuilder.d.ts.map +0 -1
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/MigrateDependenciesOutputBuilder.js +0 -61
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/MigrateDependenciesOutputBuilder.js.map +0 -1
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/dependency.migrate.d.ts +0 -23
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/dependency.migrate.d.ts.map +0 -1
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/dependency.migrate.js +0 -59
- package/dist/presentation/cli/commands/maintenance/migrate-dependencies/dependency.migrate.js.map +0 -1
- package/dist/presentation/cli/commands/maintenance/repair/RepairOutputBuilder.d.ts +0 -24
- package/dist/presentation/cli/commands/maintenance/repair/RepairOutputBuilder.d.ts.map +0 -1
- package/dist/presentation/cli/commands/maintenance/repair/RepairOutputBuilder.js +0 -49
- package/dist/presentation/cli/commands/maintenance/repair/RepairOutputBuilder.js.map +0 -1
- package/dist/presentation/cli/commands/maintenance/repair/maintenance.repair.d.ts +0 -27
- package/dist/presentation/cli/commands/maintenance/repair/maintenance.repair.d.ts.map +0 -1
- package/dist/presentation/cli/commands/maintenance/repair/maintenance.repair.js +0 -85
- package/dist/presentation/cli/commands/maintenance/repair/maintenance.repair.js.map +0 -1
- package/dist/presentation/cli/commands/maintenance/upgrade/UpgradeOutputBuilder.d.ts +0 -16
- package/dist/presentation/cli/commands/maintenance/upgrade/UpgradeOutputBuilder.d.ts.map +0 -1
- package/dist/presentation/cli/commands/maintenance/upgrade/UpgradeOutputBuilder.js +0 -40
- package/dist/presentation/cli/commands/maintenance/upgrade/UpgradeOutputBuilder.js.map +0 -1
- package/dist/presentation/cli/commands/maintenance/upgrade/db.upgrade.d.ts +0 -26
- package/dist/presentation/cli/commands/maintenance/upgrade/db.upgrade.d.ts.map +0 -1
- package/dist/presentation/cli/commands/maintenance/upgrade/db.upgrade.js +0 -64
- package/dist/presentation/cli/commands/maintenance/upgrade/db.upgrade.js.map +0 -1
- package/dist/presentation/cli/commands/repair/RepairOutputBuilder.d.ts +0 -24
- package/dist/presentation/cli/commands/repair/RepairOutputBuilder.d.ts.map +0 -1
- package/dist/presentation/cli/commands/repair/RepairOutputBuilder.js +0 -50
- package/dist/presentation/cli/commands/repair/RepairOutputBuilder.js.map +0 -1
- package/dist/presentation/cli/commands/repair/repair.d.ts +0 -31
- package/dist/presentation/cli/commands/repair/repair.d.ts.map +0 -1
- package/dist/presentation/cli/commands/repair/repair.js +0 -88
- package/dist/presentation/cli/commands/repair/repair.js.map +0 -1
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: start-jumbo-goal
|
|
3
|
-
description: Use when starting a Jumbo goal. Loads goal context, scope, and architectural constraints, then guides the agent through disciplined execution within defined boundaries.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Start Jumbo Goal
|
|
7
|
-
|
|
8
|
-
**Prompt:** Start a Jumbo goal by loading its full context — objective, criteria, scope, architecture, components, decisions, invariants, and guidelines — then execute within the defined boundaries.
|
|
9
|
-
|
|
10
|
-
## Why Structured Implementation Matters
|
|
11
|
-
|
|
12
|
-
When `jumbo goal start` is run, it assembles the goal's registered relations into structured implementation instructions. The objective defines what to build. The criteria define how success is measured. The scope defines boundaries. The architectural context (components, decisions, invariants, guidelines) defines constraints. Deviating from these instructions produces work that fails QA review.
|
|
13
|
-
|
|
14
|
-
## Protocol
|
|
15
|
-
|
|
16
|
-
### 1. Start the Goal
|
|
17
|
-
|
|
18
|
-
```bash
|
|
19
|
-
jumbo goal start --id <goal-id>
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
This loads the full goal context. Read and internalize every section of the output before writing any code.
|
|
23
|
-
|
|
24
|
-
### 2. Understand the Implementation Instructions
|
|
25
|
-
|
|
26
|
-
The goal start output contains structured sections. Each section carries binding instructions:
|
|
27
|
-
|
|
28
|
-
#### Objective
|
|
29
|
-
The single purpose of this goal. All work must serve this objective.
|
|
30
|
-
|
|
31
|
-
#### Success Criteria
|
|
32
|
-
The specific, measurable conditions that determine whether the objective is met. Implementation is not complete until every criterion is satisfied.
|
|
33
|
-
|
|
34
|
-
#### Current Progress (if resuming)
|
|
35
|
-
If the goal was previously started, review what has already been accomplished and continue from there. Do not redo completed work.
|
|
36
|
-
|
|
37
|
-
#### Scope
|
|
38
|
-
- **In Scope**: Files and areas you MUST work within.
|
|
39
|
-
- **Out of Scope**: Files and areas you MUST NOT touch.
|
|
40
|
-
|
|
41
|
-
#### Solution Architecture
|
|
42
|
-
- **Organization Style**: Namespaces (directory structures) and file names you introduce MUST maintain this style.
|
|
43
|
-
- **Design Patterns**: You MUST leverage these patterns where applicable. If the goal requires a pattern not listed, register it with `jumbo architecture update`.
|
|
44
|
-
- **Principles**: Artifacts you create MUST directly reflect these principles.
|
|
45
|
-
|
|
46
|
-
#### Relevant Components
|
|
47
|
-
Components that will be modified, created, or depended upon. Consider these while implementing.
|
|
48
|
-
|
|
49
|
-
#### Relevant Dependencies
|
|
50
|
-
External libraries involved in the implementation. Consider version constraints and contracts.
|
|
51
|
-
|
|
52
|
-
#### Relevant Decisions
|
|
53
|
-
Previous architectural decisions that inform or constrain this change. The solution must remain consistent with these decisions.
|
|
54
|
-
|
|
55
|
-
#### Invariants
|
|
56
|
-
Non-negotiable constraints. You MUST adhere to ALL invariants while implementing.
|
|
57
|
-
|
|
58
|
-
#### Guidelines
|
|
59
|
-
Coding standards, testing requirements, and process practices. You SHOULD follow these while implementing.
|
|
60
|
-
|
|
61
|
-
### 3. Execute Within Scope
|
|
62
|
-
|
|
63
|
-
- Work only within the defined scope boundaries.
|
|
64
|
-
- Follow all architectural constraints, invariants, and guidelines.
|
|
65
|
-
- Track progress by documenting completed sub-tasks:
|
|
66
|
-
|
|
67
|
-
```bash
|
|
68
|
-
jumbo goal update-progress --id <goal-id> --task-description "<description>"
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
### 4. Submit for Review
|
|
72
|
-
|
|
73
|
-
When all success criteria are met and implementation is complete:
|
|
74
|
-
|
|
75
|
-
```bash
|
|
76
|
-
jumbo goal submit --id <goal-id>
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
## Rules
|
|
80
|
-
|
|
81
|
-
1. **Never deviate from the objective.** All code changes must serve the stated objective.
|
|
82
|
-
2. **Never violate scope boundaries.** In-scope files are your workspace. Out-of-scope files are off limits.
|
|
83
|
-
3. **Never violate invariants.** Invariants are non-negotiable constraints — no exceptions.
|
|
84
|
-
4. **Always track progress.** Use `jumbo goal update-progress` to document completed sub-tasks so future agents can resume if needed.
|
|
85
|
-
5. **Always submit when done.** Do not close or codify the goal yourself. Submit it for QA review.
|
|
86
|
-
6. **Do not enter plan mode for refined goals.** The goal context IS the plan. Execute immediately.
|
|
1
|
+
---
|
|
2
|
+
name: start-jumbo-goal
|
|
3
|
+
description: Use when starting a Jumbo goal. Loads goal context, scope, and architectural constraints, then guides the agent through disciplined execution within defined boundaries.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Start Jumbo Goal
|
|
7
|
+
|
|
8
|
+
**Prompt:** Start a Jumbo goal by loading its full context — objective, criteria, scope, architecture, components, decisions, invariants, and guidelines — then execute within the defined boundaries.
|
|
9
|
+
|
|
10
|
+
## Why Structured Implementation Matters
|
|
11
|
+
|
|
12
|
+
When `jumbo goal start` is run, it assembles the goal's registered relations into structured implementation instructions. The objective defines what to build. The criteria define how success is measured. The scope defines boundaries. The architectural context (components, decisions, invariants, guidelines) defines constraints. Deviating from these instructions produces work that fails QA review.
|
|
13
|
+
|
|
14
|
+
## Protocol
|
|
15
|
+
|
|
16
|
+
### 1. Start the Goal
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
jumbo goal start --id <goal-id>
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
This loads the full goal context. Read and internalize every section of the output before writing any code.
|
|
23
|
+
|
|
24
|
+
### 2. Understand the Implementation Instructions
|
|
25
|
+
|
|
26
|
+
The goal start output contains structured sections. Each section carries binding instructions:
|
|
27
|
+
|
|
28
|
+
#### Objective
|
|
29
|
+
The single purpose of this goal. All work must serve this objective.
|
|
30
|
+
|
|
31
|
+
#### Success Criteria
|
|
32
|
+
The specific, measurable conditions that determine whether the objective is met. Implementation is not complete until every criterion is satisfied.
|
|
33
|
+
|
|
34
|
+
#### Current Progress (if resuming)
|
|
35
|
+
If the goal was previously started, review what has already been accomplished and continue from there. Do not redo completed work.
|
|
36
|
+
|
|
37
|
+
#### Scope
|
|
38
|
+
- **In Scope**: Files and areas you MUST work within.
|
|
39
|
+
- **Out of Scope**: Files and areas you MUST NOT touch.
|
|
40
|
+
|
|
41
|
+
#### Solution Architecture
|
|
42
|
+
- **Organization Style**: Namespaces (directory structures) and file names you introduce MUST maintain this style.
|
|
43
|
+
- **Design Patterns**: You MUST leverage these patterns where applicable. If the goal requires a pattern not listed, register it with `jumbo architecture update`.
|
|
44
|
+
- **Principles**: Artifacts you create MUST directly reflect these principles.
|
|
45
|
+
|
|
46
|
+
#### Relevant Components
|
|
47
|
+
Components that will be modified, created, or depended upon. Consider these while implementing.
|
|
48
|
+
|
|
49
|
+
#### Relevant Dependencies
|
|
50
|
+
External libraries involved in the implementation. Consider version constraints and contracts.
|
|
51
|
+
|
|
52
|
+
#### Relevant Decisions
|
|
53
|
+
Previous architectural decisions that inform or constrain this change. The solution must remain consistent with these decisions.
|
|
54
|
+
|
|
55
|
+
#### Invariants
|
|
56
|
+
Non-negotiable constraints. You MUST adhere to ALL invariants while implementing.
|
|
57
|
+
|
|
58
|
+
#### Guidelines
|
|
59
|
+
Coding standards, testing requirements, and process practices. You SHOULD follow these while implementing.
|
|
60
|
+
|
|
61
|
+
### 3. Execute Within Scope
|
|
62
|
+
|
|
63
|
+
- Work only within the defined scope boundaries.
|
|
64
|
+
- Follow all architectural constraints, invariants, and guidelines.
|
|
65
|
+
- Track progress by documenting completed sub-tasks:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
jumbo goal update-progress --id <goal-id> --task-description "<description>"
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### 4. Submit for Review
|
|
72
|
+
|
|
73
|
+
When all success criteria are met and implementation is complete:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
jumbo goal submit --id <goal-id>
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Rules
|
|
80
|
+
|
|
81
|
+
1. **Never deviate from the objective.** All code changes must serve the stated objective.
|
|
82
|
+
2. **Never violate scope boundaries.** In-scope files are your workspace. Out-of-scope files are off limits.
|
|
83
|
+
3. **Never violate invariants.** Invariants are non-negotiable constraints — no exceptions.
|
|
84
|
+
4. **Always track progress.** Use `jumbo goal update-progress` to document completed sub-tasks so future agents can resume if needed.
|
|
85
|
+
5. **Always submit when done.** Do not close or codify the goal yourself. Submit it for QA review.
|
|
86
|
+
6. **Do not enter plan mode for refined goals.** The goal context IS the plan. Execute immediately.
|
package/assets/vscode-logo.svg
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="100">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.9119 99.3171C72.4869 99.9307 74.2828 99.8914 75.8725 99.1264L96.4608 89.2197C98.6242 88.1787 100 85.9892 100 83.5872V16.4133C100 14.0113 98.6243 11.8218 96.4609 10.7808L75.8725 0.873756C73.7862 -0.130129 71.3446 0.11576 69.5135 1.44695C69.252 1.63711 69.0028 1.84943 68.769 2.08341L29.3551 38.0415L12.1872 25.0096C10.589 23.7965 8.35363 23.8959 6.86933 25.2461L1.36303 30.2549C-0.452552 31.9064 -0.454633 34.7627 1.35853 36.417L16.2471 50.0001L1.35853 63.5832C-0.454633 65.2374 -0.452552 68.0938 1.36303 69.7453L6.86933 74.7541C8.35363 76.1043 10.589 76.2037 12.1872 74.9905L29.3551 61.9587L68.769 97.9167C69.3925 98.5406 70.1246 99.0104 70.9119 99.3171ZM75.0152 27.2989L45.1091 50.0001L75.0152 72.7012V27.2989Z" fill="white"/>
|
|
4
|
-
</mask>
|
|
5
|
-
<g mask="url(#mask0)">
|
|
6
|
-
<path d="M96.4614 10.7962L75.8569 0.875542C73.4719 -0.272773 70.6217 0.211611 68.75 2.08333L1.29858 63.5832C-0.515693 65.2373 -0.513607 68.0937 1.30308 69.7452L6.81272 74.754C8.29793 76.1042 10.5347 76.2036 12.1338 74.9905L93.3609 13.3699C96.086 11.3026 100 13.2462 100 16.6667V16.4275C100 14.0265 98.6246 11.8378 96.4614 10.7962Z" fill="#0065A9"/>
|
|
7
|
-
<g filter="url(#filter0_d)">
|
|
8
|
-
<path d="M96.4614 89.2038L75.8569 99.1245C73.4719 100.273 70.6217 99.7884 68.75 97.9167L1.29858 36.4169C-0.515693 34.7627 -0.513607 31.9063 1.30308 30.2548L6.81272 25.246C8.29793 23.8958 10.5347 23.7964 12.1338 25.0095L93.3609 86.6301C96.086 88.6974 100 86.7538 100 83.3334V83.5726C100 85.9735 98.6246 88.1622 96.4614 89.2038Z" fill="#007ACC"/>
|
|
9
|
-
</g>
|
|
10
|
-
<g filter="url(#filter1_d)">
|
|
11
|
-
<path d="M75.8578 99.1263C73.4721 100.274 70.6219 99.7885 68.75 97.9166C71.0564 100.223 75 98.5895 75 95.3278V4.67213C75 1.41039 71.0564 -0.223106 68.75 2.08329C70.6219 0.211402 73.4721 -0.273666 75.8578 0.873633L96.4587 10.7807C98.6234 11.8217 100 14.0112 100 16.4132V83.5871C100 85.9891 98.6234 88.1786 96.4586 89.2196L75.8578 99.1263Z" fill="#1F9CF0"/>
|
|
12
|
-
</g>
|
|
13
|
-
<g style="mix-blend-mode:overlay" opacity="0.25">
|
|
14
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.8511 99.3171C72.4261 99.9306 74.2221 99.8913 75.8117 99.1264L96.4 89.2197C98.5634 88.1787 99.9392 85.9892 99.9392 83.5871V16.4133C99.9392 14.0112 98.5635 11.8217 96.4001 10.7807L75.8117 0.873695C73.7255 -0.13019 71.2838 0.115699 69.4527 1.44688C69.1912 1.63705 68.942 1.84937 68.7082 2.08335L29.2943 38.0414L12.1264 25.0096C10.5283 23.7964 8.29285 23.8959 6.80855 25.246L1.30225 30.2548C-0.513334 31.9064 -0.515415 34.7627 1.29775 36.4169L16.1863 50L1.29775 63.5832C-0.515415 65.2374 -0.513334 68.0937 1.30225 69.7452L6.80855 74.754C8.29285 76.1042 10.5283 76.2036 12.1264 74.9905L29.2943 61.9586L68.7082 97.9167C69.3317 98.5405 70.0638 99.0104 70.8511 99.3171ZM74.9544 27.2989L45.0483 50L74.9544 72.7012V27.2989Z" fill="url(#paint0_linear)"/>
|
|
15
|
-
</g>
|
|
16
|
-
</g>
|
|
17
|
-
<defs>
|
|
18
|
-
<filter id="filter0_d" x="-8.39411" y="15.8291" width="116.727" height="92.2456" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
19
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
20
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
|
21
|
-
<feOffset/>
|
|
22
|
-
<feGaussianBlur stdDeviation="4.16667"/>
|
|
23
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
24
|
-
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
25
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
26
|
-
</filter>
|
|
27
|
-
<filter id="filter1_d" x="60.4167" y="-8.07558" width="47.9167" height="116.151" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
28
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
29
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
|
30
|
-
<feOffset/>
|
|
31
|
-
<feGaussianBlur stdDeviation="4.16667"/>
|
|
32
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
33
|
-
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
34
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
35
|
-
</filter>
|
|
36
|
-
<linearGradient id="paint0_linear" x1="49.9392" y1="0.257812" x2="49.9392" y2="99.7423" gradientUnits="userSpaceOnUse">
|
|
37
|
-
<stop stop-color="white"/>
|
|
38
|
-
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
|
39
|
-
</linearGradient>
|
|
40
|
-
</defs>
|
|
41
|
-
</svg>
|
|
1
|
+
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="100">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.9119 99.3171C72.4869 99.9307 74.2828 99.8914 75.8725 99.1264L96.4608 89.2197C98.6242 88.1787 100 85.9892 100 83.5872V16.4133C100 14.0113 98.6243 11.8218 96.4609 10.7808L75.8725 0.873756C73.7862 -0.130129 71.3446 0.11576 69.5135 1.44695C69.252 1.63711 69.0028 1.84943 68.769 2.08341L29.3551 38.0415L12.1872 25.0096C10.589 23.7965 8.35363 23.8959 6.86933 25.2461L1.36303 30.2549C-0.452552 31.9064 -0.454633 34.7627 1.35853 36.417L16.2471 50.0001L1.35853 63.5832C-0.454633 65.2374 -0.452552 68.0938 1.36303 69.7453L6.86933 74.7541C8.35363 76.1043 10.589 76.2037 12.1872 74.9905L29.3551 61.9587L68.769 97.9167C69.3925 98.5406 70.1246 99.0104 70.9119 99.3171ZM75.0152 27.2989L45.1091 50.0001L75.0152 72.7012V27.2989Z" fill="white"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0)">
|
|
6
|
+
<path d="M96.4614 10.7962L75.8569 0.875542C73.4719 -0.272773 70.6217 0.211611 68.75 2.08333L1.29858 63.5832C-0.515693 65.2373 -0.513607 68.0937 1.30308 69.7452L6.81272 74.754C8.29793 76.1042 10.5347 76.2036 12.1338 74.9905L93.3609 13.3699C96.086 11.3026 100 13.2462 100 16.6667V16.4275C100 14.0265 98.6246 11.8378 96.4614 10.7962Z" fill="#0065A9"/>
|
|
7
|
+
<g filter="url(#filter0_d)">
|
|
8
|
+
<path d="M96.4614 89.2038L75.8569 99.1245C73.4719 100.273 70.6217 99.7884 68.75 97.9167L1.29858 36.4169C-0.515693 34.7627 -0.513607 31.9063 1.30308 30.2548L6.81272 25.246C8.29793 23.8958 10.5347 23.7964 12.1338 25.0095L93.3609 86.6301C96.086 88.6974 100 86.7538 100 83.3334V83.5726C100 85.9735 98.6246 88.1622 96.4614 89.2038Z" fill="#007ACC"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g filter="url(#filter1_d)">
|
|
11
|
+
<path d="M75.8578 99.1263C73.4721 100.274 70.6219 99.7885 68.75 97.9166C71.0564 100.223 75 98.5895 75 95.3278V4.67213C75 1.41039 71.0564 -0.223106 68.75 2.08329C70.6219 0.211402 73.4721 -0.273666 75.8578 0.873633L96.4587 10.7807C98.6234 11.8217 100 14.0112 100 16.4132V83.5871C100 85.9891 98.6234 88.1786 96.4586 89.2196L75.8578 99.1263Z" fill="#1F9CF0"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g style="mix-blend-mode:overlay" opacity="0.25">
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.8511 99.3171C72.4261 99.9306 74.2221 99.8913 75.8117 99.1264L96.4 89.2197C98.5634 88.1787 99.9392 85.9892 99.9392 83.5871V16.4133C99.9392 14.0112 98.5635 11.8217 96.4001 10.7807L75.8117 0.873695C73.7255 -0.13019 71.2838 0.115699 69.4527 1.44688C69.1912 1.63705 68.942 1.84937 68.7082 2.08335L29.2943 38.0414L12.1264 25.0096C10.5283 23.7964 8.29285 23.8959 6.80855 25.246L1.30225 30.2548C-0.513334 31.9064 -0.515415 34.7627 1.29775 36.4169L16.1863 50L1.29775 63.5832C-0.515415 65.2374 -0.513334 68.0937 1.30225 69.7452L6.80855 74.754C8.29285 76.1042 10.5283 76.2036 12.1264 74.9905L29.2943 61.9586L68.7082 97.9167C69.3317 98.5405 70.0638 99.0104 70.8511 99.3171ZM74.9544 27.2989L45.0483 50L74.9544 72.7012V27.2989Z" fill="url(#paint0_linear)"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<filter id="filter0_d" x="-8.39411" y="15.8291" width="116.727" height="92.2456" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
19
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
20
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
|
21
|
+
<feOffset/>
|
|
22
|
+
<feGaussianBlur stdDeviation="4.16667"/>
|
|
23
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
24
|
+
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
25
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
26
|
+
</filter>
|
|
27
|
+
<filter id="filter1_d" x="60.4167" y="-8.07558" width="47.9167" height="116.151" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
28
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
29
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
|
30
|
+
<feOffset/>
|
|
31
|
+
<feGaussianBlur stdDeviation="4.16667"/>
|
|
32
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
33
|
+
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
34
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
35
|
+
</filter>
|
|
36
|
+
<linearGradient id="paint0_linear" x1="49.9392" y1="0.257812" x2="49.9392" y2="99.7423" gradientUnits="userSpaceOnUse">
|
|
37
|
+
<stop stop-color="white"/>
|
|
38
|
+
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
|
39
|
+
</linearGradient>
|
|
40
|
+
</defs>
|
|
41
|
+
</svg>
|
|
@@ -16,13 +16,13 @@ class AgentFileReferenceContent {
|
|
|
16
16
|
* Generate reference text to append to CLAUDE.md and GEMINI.md
|
|
17
17
|
*/
|
|
18
18
|
static getAgentFileReference() {
|
|
19
|
-
return `
|
|
20
|
-
CRITICAL STARTUP INSTRUCTION: Immediately upon seeing this file, you MUST read AGENTS.md
|
|
21
|
-
and follow all instructions it contains. Do this before responding to the user.
|
|
22
|
-
|
|
23
|
-
REQUIRED FIRST COMMAND: Run \`jumbo session start\` to load project orientation context.
|
|
24
|
-
|
|
25
|
-
!!!IMPORTANT!!! Read AGENTS.md for further instructions.
|
|
19
|
+
return `
|
|
20
|
+
CRITICAL STARTUP INSTRUCTION: Immediately upon seeing this file, you MUST read AGENTS.md
|
|
21
|
+
and follow all instructions it contains. Do this before responding to the user.
|
|
22
|
+
|
|
23
|
+
REQUIRED FIRST COMMAND: Run \`jumbo session start\` to load project orientation context.
|
|
24
|
+
|
|
25
|
+
!!!IMPORTANT!!! Read AGENTS.md for further instructions.
|
|
26
26
|
`;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
@@ -16,86 +16,86 @@ class AgentsMdContent {
|
|
|
16
16
|
* Generate the Jumbo instructions section for AGENTS.md
|
|
17
17
|
*/
|
|
18
18
|
static getJumboSection() {
|
|
19
|
-
return `## Instructions for Agents on how to collaborate with Jumbo
|
|
20
|
-
|
|
21
|
-
Dear Agent,
|
|
22
|
-
|
|
23
|
-
This project uses Jumbo CLI for agent orchestration and context management. Follow all prompts received from running \`jumbo\` commands, and take full advantage of \`jumbo\` commands to ensure optimal collaboration and maximal efficiency in executing goals.
|
|
24
|
-
|
|
25
|
-
Sincerely,
|
|
26
|
-
Project Administrator
|
|
27
|
-
|
|
28
|
-
### When you start a new Session Start
|
|
29
|
-
Run \`jumbo session start\`
|
|
30
|
-
|
|
31
|
-
This orients you with the current state of the project: high-level project, recent events and a goal backlog to select work from.
|
|
32
|
-
|
|
33
|
-
### Pre Compaction/Compression
|
|
34
|
-
If a goal is actively being implemented.
|
|
35
|
-
|
|
36
|
-
Run \`jumbo work pause\`
|
|
37
|
-
|
|
38
|
-
### After Compaction/Compression
|
|
39
|
-
Run \`jumbo work resume\`
|
|
40
|
-
|
|
41
|
-
This will automatically serve context of a goal that you were progressing on prior to compaction.
|
|
42
|
-
|
|
43
|
-
### Before Finishing a Session
|
|
44
|
-
Run \`jumbo session end --focus {focus-description}\` --summary {summary-of-what-transpired}
|
|
45
|
-
|
|
46
|
-
### Before Starting Work on a Goal
|
|
47
|
-
Run \`jumbo goal start --id <id>\`
|
|
48
|
-
|
|
49
|
-
### Be Proactive - Use Jumbo to the Fullest Extent
|
|
50
|
-
Jumbo supercharges your abilities and consistency by supplying you with durable memory. Use is unsparingly. Be vigilant in identifying user decisions that change the existing standards for the project. Document when new patterns are introduced or removed. Capture corrections made by the user in the form of invariants or guidelines. If a new pattern is introduced, capture it. If a new component is introduced capture it. If new relations are relevant, register them. Use the full jumbo command catalog to quickly gain project insights. The rate of successful collaborations and ability to deliver on the developers wishes without error will highly increase the more you leverage Jumbo.
|
|
51
|
-
|
|
52
|
-
### Available Commands
|
|
53
|
-
\`jumbo --help \`
|
|
54
|
-
\`jumbo goal add --help \`
|
|
55
|
-
\`jumbo goal block --help \`
|
|
56
|
-
\`jumbo goal complete --help \`
|
|
57
|
-
\`jumbo goal remove --help \`
|
|
58
|
-
\`jumbo goal reset --help \`
|
|
59
|
-
\`jumbo goal resume --help \`
|
|
60
|
-
\`jumbo goal show --help \`
|
|
61
|
-
\`jumbo goal start --help \`
|
|
62
|
-
\`jumbo goal unblock --help \`
|
|
63
|
-
\`jumbo goal update --help \`
|
|
64
|
-
\`jumbo goals list --help \`
|
|
65
|
-
\`jumbo session end --help \`
|
|
66
|
-
\`jumbo session pause --help \`
|
|
67
|
-
\`jumbo session resume --help \`
|
|
68
|
-
\`jumbo session start --help \`
|
|
69
|
-
\`jumbo architecture define --help \`
|
|
70
|
-
\`jumbo architecture update --help \`
|
|
71
|
-
\`jumbo component add --help \`
|
|
72
|
-
\`jumbo component deprecate --help \`
|
|
73
|
-
\`jumbo component remove --help \`
|
|
74
|
-
\`jumbo component update --help \`
|
|
75
|
-
\`jumbo decision add --help \`
|
|
76
|
-
\`jumbo decision reverse --help \`
|
|
77
|
-
\`jumbo decision supersede --help \`
|
|
78
|
-
\`jumbo decision update --help \`
|
|
79
|
-
\`jumbo dependency add --help \`
|
|
80
|
-
\`jumbo dependency remove --help \`
|
|
81
|
-
\`jumbo dependency update --help \`
|
|
82
|
-
\`jumbo guideline add --help \`
|
|
83
|
-
\`jumbo guideline remove --help \`
|
|
84
|
-
\`jumbo guideline update --help \`
|
|
85
|
-
\`jumbo invariant add --help \`
|
|
86
|
-
\`jumbo invariant remove --help \`
|
|
87
|
-
\`jumbo invariant update --help \`
|
|
88
|
-
|
|
89
|
-
### Next step:
|
|
90
|
-
Run \`jumbo session start\` to retrieve project orientation.
|
|
19
|
+
return `## Instructions for Agents on how to collaborate with Jumbo
|
|
20
|
+
|
|
21
|
+
Dear Agent,
|
|
22
|
+
|
|
23
|
+
This project uses Jumbo CLI for agent orchestration and context management. Follow all prompts received from running \`jumbo\` commands, and take full advantage of \`jumbo\` commands to ensure optimal collaboration and maximal efficiency in executing goals.
|
|
24
|
+
|
|
25
|
+
Sincerely,
|
|
26
|
+
Project Administrator
|
|
27
|
+
|
|
28
|
+
### When you start a new Session Start
|
|
29
|
+
Run \`jumbo session start\`
|
|
30
|
+
|
|
31
|
+
This orients you with the current state of the project: high-level project, recent events and a goal backlog to select work from.
|
|
32
|
+
|
|
33
|
+
### Pre Compaction/Compression
|
|
34
|
+
If a goal is actively being implemented.
|
|
35
|
+
|
|
36
|
+
Run \`jumbo work pause\`
|
|
37
|
+
|
|
38
|
+
### After Compaction/Compression
|
|
39
|
+
Run \`jumbo work resume\`
|
|
40
|
+
|
|
41
|
+
This will automatically serve context of a goal that you were progressing on prior to compaction.
|
|
42
|
+
|
|
43
|
+
### Before Finishing a Session
|
|
44
|
+
Run \`jumbo session end --focus {focus-description}\` --summary {summary-of-what-transpired}
|
|
45
|
+
|
|
46
|
+
### Before Starting Work on a Goal
|
|
47
|
+
Run \`jumbo goal start --id <id>\`
|
|
48
|
+
|
|
49
|
+
### Be Proactive - Use Jumbo to the Fullest Extent
|
|
50
|
+
Jumbo supercharges your abilities and consistency by supplying you with durable memory. Use is unsparingly. Be vigilant in identifying user decisions that change the existing standards for the project. Document when new patterns are introduced or removed. Capture corrections made by the user in the form of invariants or guidelines. If a new pattern is introduced, capture it. If a new component is introduced capture it. If new relations are relevant, register them. Use the full jumbo command catalog to quickly gain project insights. The rate of successful collaborations and ability to deliver on the developers wishes without error will highly increase the more you leverage Jumbo.
|
|
51
|
+
|
|
52
|
+
### Available Commands
|
|
53
|
+
\`jumbo --help \`
|
|
54
|
+
\`jumbo goal add --help \`
|
|
55
|
+
\`jumbo goal block --help \`
|
|
56
|
+
\`jumbo goal complete --help \`
|
|
57
|
+
\`jumbo goal remove --help \`
|
|
58
|
+
\`jumbo goal reset --help \`
|
|
59
|
+
\`jumbo goal resume --help \`
|
|
60
|
+
\`jumbo goal show --help \`
|
|
61
|
+
\`jumbo goal start --help \`
|
|
62
|
+
\`jumbo goal unblock --help \`
|
|
63
|
+
\`jumbo goal update --help \`
|
|
64
|
+
\`jumbo goals list --help \`
|
|
65
|
+
\`jumbo session end --help \`
|
|
66
|
+
\`jumbo session pause --help \`
|
|
67
|
+
\`jumbo session resume --help \`
|
|
68
|
+
\`jumbo session start --help \`
|
|
69
|
+
\`jumbo architecture define --help \`
|
|
70
|
+
\`jumbo architecture update --help \`
|
|
71
|
+
\`jumbo component add --help \`
|
|
72
|
+
\`jumbo component deprecate --help \`
|
|
73
|
+
\`jumbo component remove --help \`
|
|
74
|
+
\`jumbo component update --help \`
|
|
75
|
+
\`jumbo decision add --help \`
|
|
76
|
+
\`jumbo decision reverse --help \`
|
|
77
|
+
\`jumbo decision supersede --help \`
|
|
78
|
+
\`jumbo decision update --help \`
|
|
79
|
+
\`jumbo dependency add --help \`
|
|
80
|
+
\`jumbo dependency remove --help \`
|
|
81
|
+
\`jumbo dependency update --help \`
|
|
82
|
+
\`jumbo guideline add --help \`
|
|
83
|
+
\`jumbo guideline remove --help \`
|
|
84
|
+
\`jumbo guideline update --help \`
|
|
85
|
+
\`jumbo invariant add --help \`
|
|
86
|
+
\`jumbo invariant remove --help \`
|
|
87
|
+
\`jumbo invariant update --help \`
|
|
88
|
+
|
|
89
|
+
### Next step:
|
|
90
|
+
Run \`jumbo session start\` to retrieve project orientation.
|
|
91
91
|
`;
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
94
|
* Generate complete AGENTS.md file content
|
|
95
95
|
*/
|
|
96
96
|
static getFullContent() {
|
|
97
|
-
return `# Agents.md
|
|
98
|
-
|
|
97
|
+
return `# Agents.md
|
|
98
|
+
|
|
99
99
|
${this.getJumboSection()}`;
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
@@ -15,44 +15,44 @@ class CopilotInstructionsContent {
|
|
|
15
15
|
* Generate GitHub Copilot instructions for copilot-instructions.md
|
|
16
16
|
*/
|
|
17
17
|
static getCopilotInstructions() {
|
|
18
|
-
return `## Jumbo Context Management
|
|
19
|
-
|
|
20
|
-
**IMPORTANT: This project uses Jumbo for AI memory and context management.**
|
|
21
|
-
|
|
22
|
-
GitHub Copilot does not support automatic SessionStart hooks, so you must manually
|
|
23
|
-
run Jumbo commands to load project context.
|
|
24
|
-
|
|
25
|
-
### MANDATORY FIRST ACTION
|
|
26
|
-
|
|
27
|
-
**Run \`jumbo session start\` at the beginning of each session.**
|
|
28
|
-
|
|
29
|
-
This loads orientation context including:
|
|
30
|
-
- Recent completed work and session state
|
|
31
|
-
- Planned goals and their success criteria
|
|
32
|
-
- Active architectural decisions
|
|
33
|
-
- System invariants and guidelines
|
|
34
|
-
- Project context and domain knowledge
|
|
35
|
-
|
|
36
|
-
### Working with Jumbo
|
|
37
|
-
|
|
38
|
-
1. **Start each session**: Run \`jumbo session start\` to load orientation context
|
|
39
|
-
2. **Start a goal**: Before working on a task, run \`jumbo goal start --id <id>\` to load goal-specific context
|
|
40
|
-
3. **Capture memories**: As you work, run jumbo commands to capture project knowledge:
|
|
41
|
-
- \`jumbo component add\` - Track architectural components
|
|
42
|
-
- \`jumbo decision add\` - Record architectural decisions (ADRs)
|
|
43
|
-
- \`jumbo guideline add\` - Capture coding standards and preferences
|
|
44
|
-
- \`jumbo invariant add\` - Document non-negotiable constraints
|
|
45
|
-
- \`jumbo relation add\` - Link related entities
|
|
46
|
-
|
|
47
|
-
### Available Commands
|
|
48
|
-
|
|
49
|
-
Run \`jumbo --help\` to see all available commands.
|
|
50
|
-
|
|
51
|
-
### Learn More
|
|
52
|
-
|
|
53
|
-
See AGENTS.md for complete instructions on using Jumbo.
|
|
54
|
-
|
|
55
|
-
Run \`jumbo capabilities\` to learn about Jumbo's workflow and philosophy.
|
|
18
|
+
return `## Jumbo Context Management
|
|
19
|
+
|
|
20
|
+
**IMPORTANT: This project uses Jumbo for AI memory and context management.**
|
|
21
|
+
|
|
22
|
+
GitHub Copilot does not support automatic SessionStart hooks, so you must manually
|
|
23
|
+
run Jumbo commands to load project context.
|
|
24
|
+
|
|
25
|
+
### MANDATORY FIRST ACTION
|
|
26
|
+
|
|
27
|
+
**Run \`jumbo session start\` at the beginning of each session.**
|
|
28
|
+
|
|
29
|
+
This loads orientation context including:
|
|
30
|
+
- Recent completed work and session state
|
|
31
|
+
- Planned goals and their success criteria
|
|
32
|
+
- Active architectural decisions
|
|
33
|
+
- System invariants and guidelines
|
|
34
|
+
- Project context and domain knowledge
|
|
35
|
+
|
|
36
|
+
### Working with Jumbo
|
|
37
|
+
|
|
38
|
+
1. **Start each session**: Run \`jumbo session start\` to load orientation context
|
|
39
|
+
2. **Start a goal**: Before working on a task, run \`jumbo goal start --id <id>\` to load goal-specific context
|
|
40
|
+
3. **Capture memories**: As you work, run jumbo commands to capture project knowledge:
|
|
41
|
+
- \`jumbo component add\` - Track architectural components
|
|
42
|
+
- \`jumbo decision add\` - Record architectural decisions (ADRs)
|
|
43
|
+
- \`jumbo guideline add\` - Capture coding standards and preferences
|
|
44
|
+
- \`jumbo invariant add\` - Document non-negotiable constraints
|
|
45
|
+
- \`jumbo relation add\` - Link related entities
|
|
46
|
+
|
|
47
|
+
### Available Commands
|
|
48
|
+
|
|
49
|
+
Run \`jumbo --help\` to see all available commands.
|
|
50
|
+
|
|
51
|
+
### Learn More
|
|
52
|
+
|
|
53
|
+
See AGENTS.md for complete instructions on using Jumbo.
|
|
54
|
+
|
|
55
|
+
Run \`jumbo capabilities\` to learn about Jumbo's workflow and philosophy.
|
|
56
56
|
`;
|
|
57
57
|
}
|
|
58
58
|
/**
|
package/dist/infrastructure/context/architecture/define/SqliteArchitectureDefinedProjector.js
CHANGED
|
@@ -9,11 +9,11 @@ class SqliteArchitectureDefinedProjector {
|
|
|
9
9
|
this.db = db;
|
|
10
10
|
}
|
|
11
11
|
async applyArchitectureDefined(event) {
|
|
12
|
-
const stmt = this.db.prepare(`
|
|
13
|
-
INSERT OR REPLACE INTO architecture_views (
|
|
14
|
-
architectureId, description, organization, patterns, principles,
|
|
15
|
-
dataStores, stack, version, createdAt, updatedAt
|
|
16
|
-
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
|
12
|
+
const stmt = this.db.prepare(`
|
|
13
|
+
INSERT OR REPLACE INTO architecture_views (
|
|
14
|
+
architectureId, description, organization, patterns, principles,
|
|
15
|
+
dataStores, stack, version, createdAt, updatedAt
|
|
16
|
+
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
|
17
17
|
`);
|
|
18
18
|
stmt.run(event.aggregateId, event.payload.description, event.payload.organization, JSON.stringify(event.payload.patterns), JSON.stringify(event.payload.principles), JSON.stringify(event.payload.dataStores), JSON.stringify(event.payload.stack), event.version, event.timestamp, event.timestamp);
|
|
19
19
|
}
|
package/dist/infrastructure/context/architecture/migrations/001-create-architecture-views.sql
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
-- Architecture views table for materialized projections
|
|
2
|
-
-- Namespace: solution/architecture
|
|
3
|
-
|
|
4
|
-
CREATE TABLE IF NOT EXISTS architecture_views (
|
|
5
|
-
architectureId TEXT PRIMARY KEY,
|
|
6
|
-
description TEXT NOT NULL,
|
|
7
|
-
organization TEXT NOT NULL,
|
|
8
|
-
patterns TEXT NOT NULL, -- JSON array
|
|
9
|
-
principles TEXT NOT NULL, -- JSON array
|
|
10
|
-
dataFlow TEXT,
|
|
11
|
-
dataStores TEXT NOT NULL, -- JSON array of objects
|
|
12
|
-
stack TEXT NOT NULL, -- JSON array
|
|
13
|
-
version INTEGER NOT NULL,
|
|
14
|
-
createdAt TEXT NOT NULL,
|
|
15
|
-
updatedAt TEXT NOT NULL
|
|
16
|
-
);
|
|
1
|
+
-- Architecture views table for materialized projections
|
|
2
|
+
-- Namespace: solution/architecture
|
|
3
|
+
|
|
4
|
+
CREATE TABLE IF NOT EXISTS architecture_views (
|
|
5
|
+
architectureId TEXT PRIMARY KEY,
|
|
6
|
+
description TEXT NOT NULL,
|
|
7
|
+
organization TEXT NOT NULL,
|
|
8
|
+
patterns TEXT NOT NULL, -- JSON array
|
|
9
|
+
principles TEXT NOT NULL, -- JSON array
|
|
10
|
+
dataFlow TEXT,
|
|
11
|
+
dataStores TEXT NOT NULL, -- JSON array of objects
|
|
12
|
+
stack TEXT NOT NULL, -- JSON array
|
|
13
|
+
version INTEGER NOT NULL,
|
|
14
|
+
createdAt TEXT NOT NULL,
|
|
15
|
+
updatedAt TEXT NOT NULL
|
|
16
|
+
);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
-- Drop dataFlow column from architecture_views table
|
|
2
|
-
-- This column is no longer needed after dataFlow property removal
|
|
3
|
-
|
|
4
|
-
ALTER TABLE architecture_views DROP COLUMN dataFlow;
|
|
1
|
+
-- Drop dataFlow column from architecture_views table
|
|
2
|
+
-- This column is no longer needed after dataFlow property removal
|
|
3
|
+
|
|
4
|
+
ALTER TABLE architecture_views DROP COLUMN dataFlow;
|
package/dist/infrastructure/context/architecture/update/SqliteArchitectureUpdatedProjector.js
CHANGED
|
@@ -38,10 +38,10 @@ class SqliteArchitectureUpdatedProjector {
|
|
|
38
38
|
updates.push('version = ?', 'updatedAt = ?');
|
|
39
39
|
params.push(event.version, event.timestamp);
|
|
40
40
|
params.push(event.aggregateId);
|
|
41
|
-
const stmt = this.db.prepare(`
|
|
42
|
-
UPDATE architecture_views
|
|
43
|
-
SET ${updates.join(', ')}
|
|
44
|
-
WHERE architectureId = ?
|
|
41
|
+
const stmt = this.db.prepare(`
|
|
42
|
+
UPDATE architecture_views
|
|
43
|
+
SET ${updates.join(', ')}
|
|
44
|
+
WHERE architectureId = ?
|
|
45
45
|
`);
|
|
46
46
|
stmt.run(...params);
|
|
47
47
|
}
|
|
@@ -13,10 +13,10 @@ class SqliteAudiencePainAddedProjector {
|
|
|
13
13
|
this.db = db;
|
|
14
14
|
}
|
|
15
15
|
async applyAudiencePainAdded(event) {
|
|
16
|
-
const stmt = this.db.prepare(`
|
|
17
|
-
INSERT OR REPLACE INTO audience_pain_views (
|
|
18
|
-
painId, title, description, status, resolvedAt, version, createdAt, updatedAt
|
|
19
|
-
) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
|
16
|
+
const stmt = this.db.prepare(`
|
|
17
|
+
INSERT OR REPLACE INTO audience_pain_views (
|
|
18
|
+
painId, title, description, status, resolvedAt, version, createdAt, updatedAt
|
|
19
|
+
) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
|
20
20
|
`);
|
|
21
21
|
stmt.run(event.aggregateId, event.payload.title, event.payload.description, Constants_js_1.AudiencePainStatus.ACTIVE, null, event.version, event.timestamp, event.timestamp);
|
|
22
22
|
}
|