@accelerationguy/accel 1.0.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/CLAUDE.md +19 -0
- package/LICENSE +33 -0
- package/README.md +275 -0
- package/bin/install.js +661 -0
- package/docs/getting-started.md +164 -0
- package/docs/module-guide.md +139 -0
- package/modules/drive/LICENSE +21 -0
- package/modules/drive/PAUL-VS-GSD.md +171 -0
- package/modules/drive/README.md +555 -0
- package/modules/drive/assets/terminal.svg +67 -0
- package/modules/drive/bin/install.js +210 -0
- package/modules/drive/integration.js +76 -0
- package/modules/drive/package.json +38 -0
- package/modules/drive/src/commands/add-phase.md +36 -0
- package/modules/drive/src/commands/apply.md +83 -0
- package/modules/drive/src/commands/assumptions.md +37 -0
- package/modules/drive/src/commands/audit.md +57 -0
- package/modules/drive/src/commands/complete-milestone.md +36 -0
- package/modules/drive/src/commands/config.md +175 -0
- package/modules/drive/src/commands/consider-issues.md +41 -0
- package/modules/drive/src/commands/discover.md +48 -0
- package/modules/drive/src/commands/discuss-milestone.md +33 -0
- package/modules/drive/src/commands/discuss.md +34 -0
- package/modules/drive/src/commands/flows.md +73 -0
- package/modules/drive/src/commands/handoff.md +201 -0
- package/modules/drive/src/commands/help.md +525 -0
- package/modules/drive/src/commands/init.md +54 -0
- package/modules/drive/src/commands/map-codebase.md +34 -0
- package/modules/drive/src/commands/milestone.md +34 -0
- package/modules/drive/src/commands/pause.md +44 -0
- package/modules/drive/src/commands/plan-fix.md +216 -0
- package/modules/drive/src/commands/plan.md +36 -0
- package/modules/drive/src/commands/progress.md +138 -0
- package/modules/drive/src/commands/register.md +29 -0
- package/modules/drive/src/commands/remove-phase.md +37 -0
- package/modules/drive/src/commands/research-phase.md +209 -0
- package/modules/drive/src/commands/research.md +47 -0
- package/modules/drive/src/commands/resume.md +49 -0
- package/modules/drive/src/commands/status.md +78 -0
- package/modules/drive/src/commands/unify.md +87 -0
- package/modules/drive/src/commands/verify.md +60 -0
- package/modules/drive/src/references/checkpoints.md +234 -0
- package/modules/drive/src/references/context-management.md +219 -0
- package/modules/drive/src/references/git-strategy.md +206 -0
- package/modules/drive/src/references/loop-phases.md +254 -0
- package/modules/drive/src/references/plan-format.md +263 -0
- package/modules/drive/src/references/quality-principles.md +152 -0
- package/modules/drive/src/references/research-quality-control.md +247 -0
- package/modules/drive/src/references/sonarqube-integration.md +244 -0
- package/modules/drive/src/references/specialized-workflow-integration.md +186 -0
- package/modules/drive/src/references/subagent-criteria.md +179 -0
- package/modules/drive/src/references/tdd.md +219 -0
- package/modules/drive/src/references/work-units.md +161 -0
- package/modules/drive/src/rules/commands.md +108 -0
- package/modules/drive/src/rules/references.md +107 -0
- package/modules/drive/src/rules/style.md +123 -0
- package/modules/drive/src/rules/templates.md +51 -0
- package/modules/drive/src/rules/workflows.md +133 -0
- package/modules/drive/src/templates/CONTEXT.md +88 -0
- package/modules/drive/src/templates/DEBUG.md +164 -0
- package/modules/drive/src/templates/DISCOVERY.md +148 -0
- package/modules/drive/src/templates/HANDOFF.md +77 -0
- package/modules/drive/src/templates/ISSUES.md +93 -0
- package/modules/drive/src/templates/MILESTONES.md +167 -0
- package/modules/drive/src/templates/PLAN.md +328 -0
- package/modules/drive/src/templates/PROJECT.md +219 -0
- package/modules/drive/src/templates/RESEARCH.md +130 -0
- package/modules/drive/src/templates/ROADMAP.md +328 -0
- package/modules/drive/src/templates/SPECIAL-FLOWS.md +70 -0
- package/modules/drive/src/templates/STATE.md +210 -0
- package/modules/drive/src/templates/SUMMARY.md +221 -0
- package/modules/drive/src/templates/UAT-ISSUES.md +139 -0
- package/modules/drive/src/templates/codebase/architecture.md +259 -0
- package/modules/drive/src/templates/codebase/concerns.md +329 -0
- package/modules/drive/src/templates/codebase/conventions.md +311 -0
- package/modules/drive/src/templates/codebase/integrations.md +284 -0
- package/modules/drive/src/templates/codebase/stack.md +190 -0
- package/modules/drive/src/templates/codebase/structure.md +287 -0
- package/modules/drive/src/templates/codebase/testing.md +484 -0
- package/modules/drive/src/templates/config.md +181 -0
- package/modules/drive/src/templates/milestone-archive.md +236 -0
- package/modules/drive/src/templates/milestone-context.md +190 -0
- package/modules/drive/src/templates/paul-json.md +147 -0
- package/modules/drive/src/vector-config/PAUL +26 -0
- package/modules/drive/src/vector-config/PAUL.manifest +11 -0
- package/modules/drive/src/workflows/apply-phase.md +393 -0
- package/modules/drive/src/workflows/audit-plan.md +344 -0
- package/modules/drive/src/workflows/complete-milestone.md +479 -0
- package/modules/drive/src/workflows/configure-special-flows.md +283 -0
- package/modules/drive/src/workflows/consider-issues.md +172 -0
- package/modules/drive/src/workflows/create-milestone.md +268 -0
- package/modules/drive/src/workflows/debug.md +292 -0
- package/modules/drive/src/workflows/discovery.md +187 -0
- package/modules/drive/src/workflows/discuss-milestone.md +245 -0
- package/modules/drive/src/workflows/discuss-phase.md +231 -0
- package/modules/drive/src/workflows/init-project.md +698 -0
- package/modules/drive/src/workflows/map-codebase.md +459 -0
- package/modules/drive/src/workflows/pause-work.md +259 -0
- package/modules/drive/src/workflows/phase-assumptions.md +181 -0
- package/modules/drive/src/workflows/plan-phase.md +385 -0
- package/modules/drive/src/workflows/quality-gate.md +263 -0
- package/modules/drive/src/workflows/register-manifest.md +107 -0
- package/modules/drive/src/workflows/research.md +241 -0
- package/modules/drive/src/workflows/resume-project.md +200 -0
- package/modules/drive/src/workflows/roadmap-management.md +334 -0
- package/modules/drive/src/workflows/transition-phase.md +368 -0
- package/modules/drive/src/workflows/unify-phase.md +290 -0
- package/modules/drive/src/workflows/verify-work.md +241 -0
- package/modules/forge/README.md +281 -0
- package/modules/forge/bin/install.js +200 -0
- package/modules/forge/package.json +32 -0
- package/modules/forge/skillsmith/rules/checklists-rules.md +42 -0
- package/modules/forge/skillsmith/rules/context-rules.md +43 -0
- package/modules/forge/skillsmith/rules/entry-point-rules.md +44 -0
- package/modules/forge/skillsmith/rules/frameworks-rules.md +43 -0
- package/modules/forge/skillsmith/rules/tasks-rules.md +52 -0
- package/modules/forge/skillsmith/rules/templates-rules.md +43 -0
- package/modules/forge/skillsmith/skillsmith.md +82 -0
- package/modules/forge/skillsmith/tasks/audit.md +277 -0
- package/modules/forge/skillsmith/tasks/discover.md +145 -0
- package/modules/forge/skillsmith/tasks/distill.md +276 -0
- package/modules/forge/skillsmith/tasks/scaffold.md +349 -0
- package/modules/forge/specs/checklists.md +193 -0
- package/modules/forge/specs/context.md +223 -0
- package/modules/forge/specs/entry-point.md +320 -0
- package/modules/forge/specs/frameworks.md +228 -0
- package/modules/forge/specs/rules.md +245 -0
- package/modules/forge/specs/tasks.md +344 -0
- package/modules/forge/specs/templates.md +335 -0
- package/modules/forge/terminal.svg +70 -0
- package/modules/ignition/README.md +245 -0
- package/modules/ignition/bin/install.js +184 -0
- package/modules/ignition/checklists/planning-quality.md +55 -0
- package/modules/ignition/data/application/config.md +21 -0
- package/modules/ignition/data/application/guide.md +51 -0
- package/modules/ignition/data/application/skill-loadout.md +11 -0
- package/modules/ignition/data/campaign/config.md +18 -0
- package/modules/ignition/data/campaign/guide.md +36 -0
- package/modules/ignition/data/campaign/skill-loadout.md +10 -0
- package/modules/ignition/data/client/config.md +18 -0
- package/modules/ignition/data/client/guide.md +36 -0
- package/modules/ignition/data/client/skill-loadout.md +11 -0
- package/modules/ignition/data/utility/config.md +18 -0
- package/modules/ignition/data/utility/guide.md +31 -0
- package/modules/ignition/data/utility/skill-loadout.md +8 -0
- package/modules/ignition/data/workflow/config.md +19 -0
- package/modules/ignition/data/workflow/guide.md +41 -0
- package/modules/ignition/data/workflow/skill-loadout.md +10 -0
- package/modules/ignition/integration.js +54 -0
- package/modules/ignition/package.json +35 -0
- package/modules/ignition/seed.md +81 -0
- package/modules/ignition/tasks/add-type.md +164 -0
- package/modules/ignition/tasks/graduate.md +182 -0
- package/modules/ignition/tasks/ideate.md +221 -0
- package/modules/ignition/tasks/launch.md +137 -0
- package/modules/ignition/tasks/status.md +71 -0
- package/modules/ignition/templates/planning-application.md +193 -0
- package/modules/ignition/templates/planning-campaign.md +138 -0
- package/modules/ignition/templates/planning-client.md +149 -0
- package/modules/ignition/templates/planning-utility.md +112 -0
- package/modules/ignition/templates/planning-workflow.md +125 -0
- package/modules/ignition/terminal.svg +74 -0
- package/modules/mission-control/CONTEXT-CONTINUITY-SPEC.md +293 -0
- package/modules/mission-control/CONTEXT-ENGINEERING-GUIDE.md +282 -0
- package/modules/mission-control/README.md +91 -0
- package/modules/mission-control/assets/terminal.svg +80 -0
- package/modules/mission-control/examples/entities.example.json +133 -0
- package/modules/mission-control/examples/projects.example.json +318 -0
- package/modules/mission-control/examples/state.example.json +183 -0
- package/modules/mission-control/examples/vector.example.json +245 -0
- package/modules/mission-control/mission-control/checklists/install-verification.md +46 -0
- package/modules/mission-control/mission-control/frameworks/framework-registry.md +83 -0
- package/modules/mission-control/mission-control/mission-control.md +83 -0
- package/modules/mission-control/mission-control/tasks/insights.md +73 -0
- package/modules/mission-control/mission-control/tasks/install.md +194 -0
- package/modules/mission-control/mission-control/tasks/status.md +125 -0
- package/modules/mission-control/schemas/entities.schema.json +89 -0
- package/modules/mission-control/schemas/projects.schema.json +221 -0
- package/modules/mission-control/schemas/state.schema.json +108 -0
- package/modules/mission-control/schemas/vector.schema.json +200 -0
- package/modules/momentum/README.md +678 -0
- package/modules/momentum/bin/install.js +563 -0
- package/modules/momentum/integration.js +131 -0
- package/modules/momentum/package.json +42 -0
- package/modules/momentum/schemas/entities.schema.json +89 -0
- package/modules/momentum/schemas/projects.schema.json +221 -0
- package/modules/momentum/schemas/state.schema.json +108 -0
- package/modules/momentum/src/commands/audit-claude-md.md +31 -0
- package/modules/momentum/src/commands/audit.md +33 -0
- package/modules/momentum/src/commands/groom.md +35 -0
- package/modules/momentum/src/commands/history.md +27 -0
- package/modules/momentum/src/commands/pulse.md +33 -0
- package/modules/momentum/src/commands/scaffold.md +33 -0
- package/modules/momentum/src/commands/status.md +28 -0
- package/modules/momentum/src/commands/surface-convert.md +35 -0
- package/modules/momentum/src/commands/surface-create.md +34 -0
- package/modules/momentum/src/commands/surface-list.md +27 -0
- package/modules/momentum/src/commands/vector-hygiene.md +33 -0
- package/modules/momentum/src/framework/context/momentum-principles.md +71 -0
- package/modules/momentum/src/framework/frameworks/audit-strategies.md +53 -0
- package/modules/momentum/src/framework/frameworks/satellite-registration.md +44 -0
- package/modules/momentum/src/framework/tasks/audit-claude-md.md +68 -0
- package/modules/momentum/src/framework/tasks/audit.md +64 -0
- package/modules/momentum/src/framework/tasks/groom.md +164 -0
- package/modules/momentum/src/framework/tasks/history.md +34 -0
- package/modules/momentum/src/framework/tasks/pulse.md +83 -0
- package/modules/momentum/src/framework/tasks/scaffold.md +202 -0
- package/modules/momentum/src/framework/tasks/status.md +35 -0
- package/modules/momentum/src/framework/tasks/surface-convert.md +143 -0
- package/modules/momentum/src/framework/tasks/surface-create.md +184 -0
- package/modules/momentum/src/framework/tasks/surface-list.md +42 -0
- package/modules/momentum/src/framework/tasks/vector-hygiene.md +160 -0
- package/modules/momentum/src/framework/templates/workspace-json.md +96 -0
- package/modules/momentum/src/hooks/_template.py +129 -0
- package/modules/momentum/src/hooks/active-hook.py +178 -0
- package/modules/momentum/src/hooks/backlog-hook.py +115 -0
- package/modules/momentum/src/hooks/mission-control-insights.py +169 -0
- package/modules/momentum/src/hooks/momentum-pulse-check.py +351 -0
- package/modules/momentum/src/hooks/operator.py +53 -0
- package/modules/momentum/src/hooks/psmm-injector.py +67 -0
- package/modules/momentum/src/hooks/satellite-detection.py +248 -0
- package/modules/momentum/src/packages/momentum-mcp/index.js +119 -0
- package/modules/momentum/src/packages/momentum-mcp/package.json +10 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/entities.js +226 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/operator.js +106 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/projects.js +322 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/psmm.js +206 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/state.js +199 -0
- package/modules/momentum/src/packages/momentum-mcp/tools/surfaces.js +404 -0
- package/modules/momentum/src/skill/momentum.md +111 -0
- package/modules/momentum/src/tasks/groom.md +164 -0
- package/modules/momentum/src/templates/operator.json +66 -0
- package/modules/momentum/src/templates/workspace.json +111 -0
- package/modules/momentum/terminal.svg +77 -0
- package/modules/radar/README.md +1552 -0
- package/modules/radar/commands/audit.md +233 -0
- package/modules/radar/commands/guardrails.md +194 -0
- package/modules/radar/commands/init.md +207 -0
- package/modules/radar/commands/playbook.md +176 -0
- package/modules/radar/commands/remediate.md +156 -0
- package/modules/radar/commands/report.md +172 -0
- package/modules/radar/commands/resume.md +176 -0
- package/modules/radar/commands/status.md +148 -0
- package/modules/radar/commands/transform.md +205 -0
- package/modules/radar/commands/validate.md +177 -0
- package/modules/radar/docs/ARCHITECTURE.md +336 -0
- package/modules/radar/docs/GETTING-STARTED.md +287 -0
- package/modules/radar/docs/standards/agents.md +197 -0
- package/modules/radar/docs/standards/commands.md +250 -0
- package/modules/radar/docs/standards/domains.md +191 -0
- package/modules/radar/docs/standards/personas.md +211 -0
- package/modules/radar/docs/standards/rules.md +218 -0
- package/modules/radar/docs/standards/runtime.md +445 -0
- package/modules/radar/docs/standards/schemas.md +269 -0
- package/modules/radar/docs/standards/tools.md +273 -0
- package/modules/radar/docs/standards/workflows.md +254 -0
- package/modules/radar/docs/terminal.svg +72 -0
- package/modules/radar/docs/validation/convention-compliance-report.md +183 -0
- package/modules/radar/docs/validation/cross-reference-report.md +195 -0
- package/modules/radar/docs/validation/validation-summary.md +118 -0
- package/modules/radar/docs/validation/version-manifest.yaml +363 -0
- package/modules/radar/install.sh +711 -0
- package/modules/radar/integration.js +53 -0
- package/modules/radar/src/core/agents/architect.md +25 -0
- package/modules/radar/src/core/agents/compliance-officer.md +25 -0
- package/modules/radar/src/core/agents/data-engineer.md +25 -0
- package/modules/radar/src/core/agents/devils-advocate.md +22 -0
- package/modules/radar/src/core/agents/performance-engineer.md +25 -0
- package/modules/radar/src/core/agents/principal-engineer.md +23 -0
- package/modules/radar/src/core/agents/reality-gap-analyst.md +22 -0
- package/modules/radar/src/core/agents/security-engineer.md +25 -0
- package/modules/radar/src/core/agents/senior-app-engineer.md +25 -0
- package/modules/radar/src/core/agents/sre.md +25 -0
- package/modules/radar/src/core/agents/staff-engineer.md +23 -0
- package/modules/radar/src/core/agents/test-engineer.md +25 -0
- package/modules/radar/src/core/personas/architect.md +111 -0
- package/modules/radar/src/core/personas/compliance-officer.md +104 -0
- package/modules/radar/src/core/personas/data-engineer.md +113 -0
- package/modules/radar/src/core/personas/devils-advocate.md +105 -0
- package/modules/radar/src/core/personas/performance-engineer.md +119 -0
- package/modules/radar/src/core/personas/principal-engineer.md +119 -0
- package/modules/radar/src/core/personas/reality-gap-analyst.md +111 -0
- package/modules/radar/src/core/personas/security-engineer.md +108 -0
- package/modules/radar/src/core/personas/senior-app-engineer.md +111 -0
- package/modules/radar/src/core/personas/sre.md +117 -0
- package/modules/radar/src/core/personas/staff-engineer.md +109 -0
- package/modules/radar/src/core/personas/test-engineer.md +109 -0
- package/modules/radar/src/core/workflows/disagreement-resolution.md +183 -0
- package/modules/radar/src/core/workflows/phase-0-context.md +148 -0
- package/modules/radar/src/core/workflows/phase-1-reconnaissance.md +169 -0
- package/modules/radar/src/core/workflows/phase-2-domain-audits.md +190 -0
- package/modules/radar/src/core/workflows/phase-3-cross-domain.md +177 -0
- package/modules/radar/src/core/workflows/phase-4-adversarial-review.md +165 -0
- package/modules/radar/src/core/workflows/phase-5-report.md +189 -0
- package/modules/radar/src/core/workflows/phase-checkpoint.md +222 -0
- package/modules/radar/src/core/workflows/session-handoff.md +152 -0
- package/modules/radar/src/domains/00-context.md +201 -0
- package/modules/radar/src/domains/01-architecture.md +248 -0
- package/modules/radar/src/domains/02-data.md +224 -0
- package/modules/radar/src/domains/03-correctness.md +230 -0
- package/modules/radar/src/domains/04-security.md +274 -0
- package/modules/radar/src/domains/05-compliance.md +228 -0
- package/modules/radar/src/domains/06-testing.md +228 -0
- package/modules/radar/src/domains/07-reliability.md +246 -0
- package/modules/radar/src/domains/08-performance.md +247 -0
- package/modules/radar/src/domains/09-maintainability.md +271 -0
- package/modules/radar/src/domains/10-operability.md +250 -0
- package/modules/radar/src/domains/11-change-risk.md +246 -0
- package/modules/radar/src/domains/12-team-risk.md +221 -0
- package/modules/radar/src/domains/13-risk-synthesis.md +202 -0
- package/modules/radar/src/rules/agent-boundaries.md +78 -0
- package/modules/radar/src/rules/disagreement-protocol.md +76 -0
- package/modules/radar/src/rules/epistemic-hygiene.md +78 -0
- package/modules/radar/src/schemas/confidence.md +185 -0
- package/modules/radar/src/schemas/disagreement.md +238 -0
- package/modules/radar/src/schemas/finding.md +287 -0
- package/modules/radar/src/schemas/report-section.md +150 -0
- package/modules/radar/src/schemas/signal.md +108 -0
- package/modules/radar/src/tools/checkov.md +463 -0
- package/modules/radar/src/tools/git-history.md +581 -0
- package/modules/radar/src/tools/gitleaks.md +447 -0
- package/modules/radar/src/tools/grype.md +611 -0
- package/modules/radar/src/tools/semgrep.md +378 -0
- package/modules/radar/src/tools/sonarqube.md +550 -0
- package/modules/radar/src/tools/syft.md +539 -0
- package/modules/radar/src/tools/trivy.md +439 -0
- package/modules/radar/src/transform/agents/change-risk-modeler.md +24 -0
- package/modules/radar/src/transform/agents/execution-validator.md +24 -0
- package/modules/radar/src/transform/agents/guardrail-generator.md +24 -0
- package/modules/radar/src/transform/agents/pedagogy-agent.md +24 -0
- package/modules/radar/src/transform/agents/remediation-architect.md +24 -0
- package/modules/radar/src/transform/personas/change-risk-modeler.md +95 -0
- package/modules/radar/src/transform/personas/execution-validator.md +95 -0
- package/modules/radar/src/transform/personas/guardrail-generator.md +103 -0
- package/modules/radar/src/transform/personas/pedagogy-agent.md +105 -0
- package/modules/radar/src/transform/personas/remediation-architect.md +95 -0
- package/modules/radar/src/transform/rules/change-risk-rules.md +87 -0
- package/modules/radar/src/transform/rules/safety-governance.md +87 -0
- package/modules/radar/src/transform/schemas/change-risk.md +139 -0
- package/modules/radar/src/transform/schemas/intervention-level.md +207 -0
- package/modules/radar/src/transform/schemas/playbook.md +205 -0
- package/modules/radar/src/transform/schemas/verification-plan.md +134 -0
- package/modules/radar/src/transform/workflows/phase-6-remediation.md +148 -0
- package/modules/radar/src/transform/workflows/phase-7-risk-validation.md +161 -0
- package/modules/radar/src/transform/workflows/phase-8-execution-planning.md +159 -0
- package/modules/radar/src/transform/workflows/transform-safety.md +158 -0
- package/modules/vector/.vector-template/sessions/.gitkeep +0 -0
- package/modules/vector/.vector-template/vector.json +72 -0
- package/modules/vector/AUDIT-CLAUDEMD.md +154 -0
- package/modules/vector/INSTALL.md +185 -0
- package/modules/vector/LICENSE +21 -0
- package/modules/vector/README.md +409 -0
- package/modules/vector/VECTOR-BLOCK.md +57 -0
- package/modules/vector/assets/terminal.svg +68 -0
- package/modules/vector/bin/install.js +455 -0
- package/modules/vector/bin/migrate-v1-to-v2.sh +492 -0
- package/modules/vector/commands/help.md +46 -0
- package/modules/vector/hooks/vector-hook.py +775 -0
- package/modules/vector/mcp/index.js +118 -0
- package/modules/vector/mcp/package.json +10 -0
- package/modules/vector/mcp/tools/decisions.js +269 -0
- package/modules/vector/mcp/tools/domains.js +361 -0
- package/modules/vector/mcp/tools/staging.js +252 -0
- package/modules/vector/mcp/tools/vector-json.js +647 -0
- package/modules/vector/package.json +38 -0
- package/modules/vector/schemas/vector.schema.json +237 -0
- package/package.json +39 -0
- package/shared/branding/branding.js +70 -0
- package/shared/config/defaults.json +59 -0
- package/shared/events/README.md +175 -0
- package/shared/events/event-bus.js +134 -0
- package/shared/events/event_bus.py +255 -0
- package/shared/events/integrations.js +161 -0
- package/shared/events/schemas/audit-complete.schema.json +21 -0
- package/shared/events/schemas/phase-progress.schema.json +23 -0
- package/shared/events/schemas/plan-created.schema.json +21 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Mission Control
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="assets/terminal.svg" alt="Mission Control Install" width="800"/>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
One installer for 7 Claude Code frameworks. Install what you need, skip what you don't.
|
|
8
|
+
|
|
9
|
+
## What's in the box
|
|
10
|
+
|
|
11
|
+
| Framework | What it does | Standalone repo |
|
|
12
|
+
|-----------|-------------|-----------------|
|
|
13
|
+
| **Vector** | Just-in-time behavioral rules. Loads domain-specific rules based on what you're doing, not what you've pre-loaded. | [Vector](https://github.com/accelerationguy/accelerate) |
|
|
14
|
+
| **Momentum** | Workspace lifecycle. Tracks drift, enforces grooming, manages project surfaces, runs a dashboard. | [Momentum](https://github.com/accelerationguy/accelerate) |
|
|
15
|
+
| **Drive** | Project orchestration. Plan-Apply-Unify loop that keeps multi-phase builds on track across sessions. | [Drive](https://github.com/accelerationguy/accelerate) |
|
|
16
|
+
| **Ignition** | Project incubation. Typed ideation (app, utility, workflow, campaign, client) through graduation into a buildable project. | [Ignition](https://github.com/accelerationguy/accelerate) |
|
|
17
|
+
| **Forge** | Skill builder. Scaffolds Claude Code skills with standardized structure so they're consistent and maintainable. | [Forge](https://github.com/accelerationguy/accelerate) |
|
|
18
|
+
| **Radar** | Security audit. Multi-agent codebase analysis across 14 domains with remediation plans that plug into Drive. | [Radar](https://github.com/accelerationguy/accelerate) |
|
|
19
|
+
|
|
20
|
+
Each framework works on its own. Mission Control just makes it easy to install them together and handles the wiring between them.
|
|
21
|
+
|
|
22
|
+
## Install
|
|
23
|
+
|
|
24
|
+
Mission Control is a Claude Code skill. Run it from inside a Claude Code session:
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
/mission-control install all
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Or pick specific frameworks:
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
/mission-control install vector momentum drive
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Install order matters (Vector before Momentum, since Momentum depends on Vector). Mission Control handles this automatically.
|
|
37
|
+
|
|
38
|
+
### First time setup
|
|
39
|
+
|
|
40
|
+
1. Clone this repo into your `apps/` directory (or wherever you keep Claude Code tools)
|
|
41
|
+
2. Copy the skill to your commands: `cp -r mission-control/ ~/.claude/commands/mission-control/`
|
|
42
|
+
3. Restart Claude Code
|
|
43
|
+
4. Run `/mission-control install all`
|
|
44
|
+
|
|
45
|
+
Mission Control will run each framework's installer, verify the results, and offer to run `/momentum:scaffold` to complete workspace setup.
|
|
46
|
+
|
|
47
|
+
## Commands
|
|
48
|
+
|
|
49
|
+
| Command | What it does |
|
|
50
|
+
|---------|-------------|
|
|
51
|
+
| `/mission-control install` | Install one or all frameworks. Handles dependency order. |
|
|
52
|
+
| `/mission-control status` | Show what's installed, versions, health, issues. |
|
|
53
|
+
| `/mission-control insights` | Workspace analytics — project velocity, stalls, blocking chains, revenue exposure. |
|
|
54
|
+
|
|
55
|
+
## How the pieces fit
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
Ignition → ideates projects → graduates into Drive
|
|
59
|
+
Drive → orchestrates builds → phases, milestones, handoffs
|
|
60
|
+
Vector → enforces rules → loads domain rules based on what you're doing
|
|
61
|
+
Momentum → manages workspace → drift detection, grooming, surfaces, dashboard
|
|
62
|
+
Radar → audits code → findings feed into Drive for remediation
|
|
63
|
+
Forge → builds skills → standardized Claude Code skill creation
|
|
64
|
+
Mission Control → installs + monitors all of the above
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Vector is the foundation. It runs every prompt, injecting the right behavioral rules for whatever you're working on. Momentum sits on top as the workspace layer — tracking what's active, what's stalled, what needs attention. Drive manages individual projects within that workspace. Ignition feeds new projects into Drive. Radar hardens what Drive builds. Forge creates new tools for the ecosystem.
|
|
68
|
+
|
|
69
|
+
## Architecture
|
|
70
|
+
|
|
71
|
+
Mission Control is a thin orchestrator. It doesn't vendor any framework code — it calls each framework's own installer and handles the cross-framework wiring they can't do alone:
|
|
72
|
+
|
|
73
|
+
- **Install order enforcement** — Vector before Momentum, since Momentum hooks reference Vector
|
|
74
|
+
- **MCP wiring** — both vector-mcp and momentum-mcp get registered in `.mcp.json`
|
|
75
|
+
- **Hook wiring** — Vector hook in global `settings.json`, Momentum hooks in project `settings.json`
|
|
76
|
+
- **Vector domain injection** — when Drive and Vector are both installed, Mission Control adds the Drive enforcement domain to `vector.json`
|
|
77
|
+
|
|
78
|
+
## Schemas
|
|
79
|
+
|
|
80
|
+
The `schemas/` directory contains JSON schemas for the data files these frameworks use:
|
|
81
|
+
|
|
82
|
+
- `vector.schema.json` — Vector's vector.json (domains, rules, decisions, brackets, commands)
|
|
83
|
+
- `projects.schema.json` — Momentum's projects.json (project tracking with Drive integration)
|
|
84
|
+
- `entities.schema.json` — Momentum's entities.json (people and organizations)
|
|
85
|
+
- `state.schema.json` — Momentum's state.json (workspace health and drift)
|
|
86
|
+
|
|
87
|
+
Source: [accelerationguy/accelerate](https://github.com/accelerationguy/accelerate)
|
|
88
|
+
|
|
89
|
+
## License
|
|
90
|
+
|
|
91
|
+
MIT
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 960 680">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>
|
|
4
|
+
.terminal-bg { fill: #1a1b26; }
|
|
5
|
+
.terminal-border { fill: #24283b; }
|
|
6
|
+
.title-bar { fill: #1f2335; }
|
|
7
|
+
.btn-red { fill: #f7768e; }
|
|
8
|
+
.btn-yellow { fill: #e0af68; }
|
|
9
|
+
.btn-green { fill: #9ece6a; }
|
|
10
|
+
.text { font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', Consolas, monospace; }
|
|
11
|
+
.prompt { fill: #7aa2f7; }
|
|
12
|
+
.command { fill: #c0caf5; }
|
|
13
|
+
.amber { fill: #f8b500; }
|
|
14
|
+
.green { fill: #9ece6a; }
|
|
15
|
+
.dim { fill: #565f89; }
|
|
16
|
+
.white { fill: #c0caf5; }
|
|
17
|
+
.cyan { fill: #7dcfff; }
|
|
18
|
+
.magenta { fill: #bb9af7; }
|
|
19
|
+
</style>
|
|
20
|
+
</defs>
|
|
21
|
+
|
|
22
|
+
<!-- Window -->
|
|
23
|
+
<rect class="terminal-border" width="960" height="680" rx="12"/>
|
|
24
|
+
<rect class="terminal-bg" x="1" y="1" width="958" height="678" rx="11"/>
|
|
25
|
+
|
|
26
|
+
<!-- Title bar -->
|
|
27
|
+
<rect class="title-bar" x="1" y="1" width="958" height="36" rx="11"/>
|
|
28
|
+
<rect class="terminal-bg" x="1" y="26" width="958" height="12"/>
|
|
29
|
+
|
|
30
|
+
<!-- Window buttons -->
|
|
31
|
+
<circle class="btn-red" cx="24" cy="19" r="7"/>
|
|
32
|
+
<circle class="btn-yellow" cx="48" cy="19" r="7"/>
|
|
33
|
+
<circle class="btn-green" cx="72" cy="19" r="7"/>
|
|
34
|
+
|
|
35
|
+
<!-- Title -->
|
|
36
|
+
<text x="480" y="24" text-anchor="middle" class="text dim" font-size="13">Terminal — /accel install all</text>
|
|
37
|
+
|
|
38
|
+
<!-- Content -->
|
|
39
|
+
<g transform="translate(32, 68)">
|
|
40
|
+
<!-- Prompt line -->
|
|
41
|
+
<text class="text prompt" font-size="15" y="0">~</text>
|
|
42
|
+
<text class="text dim" font-size="15" x="16" y="0">$</text>
|
|
43
|
+
<text class="text command" font-size="15" x="36" y="0">/accel install all</text>
|
|
44
|
+
|
|
45
|
+
<!-- Banner -->
|
|
46
|
+
<text class="text cyan" font-size="14" y="40" xml:space="preserve"> █████╗ ██████╗ ██████╗███████╗██╗ </text>
|
|
47
|
+
<text class="text cyan" font-size="14" y="58" xml:space="preserve"> ██╔══██╗██╔════╝██╔════╝██╔════╝██║ </text>
|
|
48
|
+
<text class="text cyan" font-size="14" y="76" xml:space="preserve"> ███████║██║ ██║ █████╗ ██║ </text>
|
|
49
|
+
<text class="text cyan" font-size="14" y="94" xml:space="preserve"> ██╔══██║██║ ██║ ██╔══╝ ██║ </text>
|
|
50
|
+
<text class="text cyan" font-size="14" y="112" xml:space="preserve"> ██║ ██║╚██████╗╚██████╗███████╗███████╗</text>
|
|
51
|
+
<text class="text cyan" font-size="14" y="130" xml:space="preserve"> ╚═╝ ╚═╝ ╚═════╝ ╚═════╝╚══════╝╚══════╝</text>
|
|
52
|
+
|
|
53
|
+
<!-- Subtitle -->
|
|
54
|
+
<text class="text white" font-size="15" y="164"> 7 frameworks. One install.</text>
|
|
55
|
+
<text class="text dim" font-size="13" y="184"> Installing in dependency order...</text>
|
|
56
|
+
|
|
57
|
+
<!-- Framework installs -->
|
|
58
|
+
<text class="text" font-size="15" y="220"><tspan class="green"> ✓</tspan><tspan class="amber"> Vector</tspan><tspan class="dim"> v2.0.0</tspan><tspan class="white"> Context rules engine</tspan></text>
|
|
59
|
+
<text class="text" font-size="15" y="244"><tspan class="green"> ✓</tspan><tspan class="amber"> Momentum</tspan><tspan class="dim"> v3.0.1</tspan><tspan class="white"> Workspace lifecycle</tspan></text>
|
|
60
|
+
<text class="text" font-size="15" y="268"><tspan class="green"> ✓</tspan><tspan class="amber"> Drive</tspan><tspan class="dim"> v1.2.0</tspan><tspan class="white"> Project orchestration</tspan></text>
|
|
61
|
+
<text class="text" font-size="15" y="292"><tspan class="green"> ✓</tspan><tspan class="amber"> Ignition</tspan><tspan class="dim"> v1.0.0</tspan><tspan class="white"> Project incubation</tspan></text>
|
|
62
|
+
<text class="text" font-size="15" y="316"><tspan class="green"> ✓</tspan><tspan class="amber"> Forge</tspan><tspan class="dim"> v1.0.0</tspan><tspan class="white"> Skill builder</tspan></text>
|
|
63
|
+
<text class="text" font-size="15" y="340"><tspan class="green"> ✓</tspan><tspan class="amber"> Radar</tspan><tspan class="dim"> v0.2.0</tspan><tspan class="white"> Security audit</tspan></text>
|
|
64
|
+
|
|
65
|
+
<!-- Wiring -->
|
|
66
|
+
<text class="text dim" font-size="13" y="372"> Cross-framework wiring...</text>
|
|
67
|
+
<text class="text" font-size="15" y="396"><tspan class="green"> ✓</tspan><tspan class="white"> Vector hook → settings.json</tspan></text>
|
|
68
|
+
<text class="text" font-size="15" y="420"><tspan class="green"> ✓</tspan><tspan class="white"> Momentum + Vector MCPs → .mcp.json</tspan></text>
|
|
69
|
+
<text class="text" font-size="15" y="444"><tspan class="green"> ✓</tspan><tspan class="white"> Drive domain → vector.json</tspan></text>
|
|
70
|
+
|
|
71
|
+
<!-- Done -->
|
|
72
|
+
<text class="text" font-size="15" y="484"><tspan class="green"> Done!</tspan><tspan class="white"> All 7 frameworks installed.</tspan></text>
|
|
73
|
+
<text class="text dim" font-size="13" y="508"> Run /momentum:scaffold to complete workspace setup.</text>
|
|
74
|
+
|
|
75
|
+
<!-- New prompt -->
|
|
76
|
+
<text class="text prompt" font-size="15" y="548">~</text>
|
|
77
|
+
<text class="text dim" font-size="15" x="16" y="548">$</text>
|
|
78
|
+
<text class="text white" font-size="15" x="36" y="548">▌</text>
|
|
79
|
+
</g>
|
|
80
|
+
</svg>
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"last_modified": "2026-03-19T16:00:00-05:00",
|
|
4
|
+
"entities": [
|
|
5
|
+
{
|
|
6
|
+
"id": "ENT-001",
|
|
7
|
+
"name": "Acceleration Guy",
|
|
8
|
+
"type": "person",
|
|
9
|
+
"role": "owner",
|
|
10
|
+
"relations": [
|
|
11
|
+
{ "project_id": "INI-001", "relationship": "owner" },
|
|
12
|
+
{ "project_id": "INI-002", "relationship": "owner" },
|
|
13
|
+
{ "project_id": "INI-003", "relationship": "owner" }
|
|
14
|
+
],
|
|
15
|
+
"notes": [],
|
|
16
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
17
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "ENT-002",
|
|
21
|
+
"name": "Charlie",
|
|
22
|
+
"type": "person",
|
|
23
|
+
"role": "partner",
|
|
24
|
+
"relations": [
|
|
25
|
+
{ "project_id": "INI-001", "relationship": "partner" },
|
|
26
|
+
{ "project_id": "PRJ-001", "relationship": "partner" },
|
|
27
|
+
{ "project_id": "PRJ-002", "relationship": "partner" },
|
|
28
|
+
{ "project_id": "PRJ-004", "relationship": "partner" }
|
|
29
|
+
],
|
|
30
|
+
"notes": [
|
|
31
|
+
{
|
|
32
|
+
"text": "Business partner at C&C Strategic. Default DM contact on Slack.",
|
|
33
|
+
"timestamp": "2026-03-19T16:00:00-05:00"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
37
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "ENT-003",
|
|
41
|
+
"name": "Samer",
|
|
42
|
+
"type": "person",
|
|
43
|
+
"role": "team member",
|
|
44
|
+
"relations": [],
|
|
45
|
+
"notes": [
|
|
46
|
+
{
|
|
47
|
+
"text": "Team member / future hire potential. Terminal-only Claude Code user. Had first 1-on-1 March 13.",
|
|
48
|
+
"timestamp": "2026-03-19T16:00:00-05:00"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
52
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "ENT-004",
|
|
56
|
+
"name": "Thomas",
|
|
57
|
+
"type": "person",
|
|
58
|
+
"role": "client",
|
|
59
|
+
"relations": [
|
|
60
|
+
{ "project_id": "PRJ-004", "relationship": "stakeholder" }
|
|
61
|
+
],
|
|
62
|
+
"notes": [
|
|
63
|
+
{
|
|
64
|
+
"text": "Occupancy Lift — assisted living communities. $5k setup + performance split.",
|
|
65
|
+
"timestamp": "2026-03-19T16:00:00-05:00"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
69
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "ENT-005",
|
|
73
|
+
"name": "Bo Rosenblat",
|
|
74
|
+
"type": "person",
|
|
75
|
+
"role": "client",
|
|
76
|
+
"relations": [
|
|
77
|
+
{ "project_id": "PRJ-003", "relationship": "client" }
|
|
78
|
+
],
|
|
79
|
+
"notes": [
|
|
80
|
+
{
|
|
81
|
+
"text": "Calford.ai — Hunter Exotics subcontract. Needs to add Chris as GitHub collaborator.",
|
|
82
|
+
"timestamp": "2026-03-19T16:00:00-05:00"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
86
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "ENT-006",
|
|
90
|
+
"name": "Extendly",
|
|
91
|
+
"type": "organization",
|
|
92
|
+
"role": "employer",
|
|
93
|
+
"relations": [],
|
|
94
|
+
"notes": [
|
|
95
|
+
{
|
|
96
|
+
"text": "W2 employer. COO Zak sponsored coaching with Amee. Chris may diverge long-term.",
|
|
97
|
+
"timestamp": "2026-03-19T16:00:00-05:00"
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
101
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "ENT-007",
|
|
105
|
+
"name": "C&C Strategic Consulting",
|
|
106
|
+
"type": "organization",
|
|
107
|
+
"role": "owner",
|
|
108
|
+
"relations": [
|
|
109
|
+
{ "project_id": "INI-001", "relationship": "operating entity" }
|
|
110
|
+
],
|
|
111
|
+
"notes": [],
|
|
112
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
113
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "ENT-008",
|
|
117
|
+
"name": "Calford.ai",
|
|
118
|
+
"type": "organization",
|
|
119
|
+
"role": "client",
|
|
120
|
+
"relations": [
|
|
121
|
+
{ "project_id": "PRJ-003", "relationship": "contracting entity" }
|
|
122
|
+
],
|
|
123
|
+
"notes": [
|
|
124
|
+
{
|
|
125
|
+
"text": "Bo Rosenblat's company. Hunter Exotics subcontract comes through Calford.",
|
|
126
|
+
"timestamp": "2026-03-19T16:00:00-05:00"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
130
|
+
"updated_at": "2026-03-19T16:00:00-05:00"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
}
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"workspace": "chris-ai-systems",
|
|
4
|
+
"last_modified": "2026-03-19T16:00:00-05:00",
|
|
5
|
+
"categories": ["saas", "agency", "community", "internal", "content", "personal"],
|
|
6
|
+
"items": [
|
|
7
|
+
{
|
|
8
|
+
"id": "INI-001",
|
|
9
|
+
"title": "C&C Strategic Consulting",
|
|
10
|
+
"type": "initiative",
|
|
11
|
+
"parent_id": null,
|
|
12
|
+
"status": "in_progress",
|
|
13
|
+
"priority": "high",
|
|
14
|
+
"category": "agency",
|
|
15
|
+
"assignees": ["ENT-001", "ENT-002"],
|
|
16
|
+
"start_date": "2025-12-01",
|
|
17
|
+
"due_date": null,
|
|
18
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
19
|
+
"updated_at": "2026-03-19T16:00:00-05:00",
|
|
20
|
+
"location": null,
|
|
21
|
+
"blocked_by": null,
|
|
22
|
+
"next": null,
|
|
23
|
+
"notes": [],
|
|
24
|
+
"tags": ["business", "partnership"],
|
|
25
|
+
"drive": null,
|
|
26
|
+
"relations": [
|
|
27
|
+
{ "entity_id": "ENT-001", "relationship": "owner" },
|
|
28
|
+
{ "entity_id": "ENT-002", "relationship": "partner" }
|
|
29
|
+
],
|
|
30
|
+
"description": "AI implementation for agencies and local businesses. GoHighLevel CRM setup and automation. Productized AI agent deployments."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "INI-002",
|
|
34
|
+
"title": "Chris AI Systems (Personal Brand)",
|
|
35
|
+
"type": "initiative",
|
|
36
|
+
"parent_id": null,
|
|
37
|
+
"status": "in_progress",
|
|
38
|
+
"priority": "high",
|
|
39
|
+
"category": "content",
|
|
40
|
+
"assignees": ["ENT-001"],
|
|
41
|
+
"start_date": "2025-12-01",
|
|
42
|
+
"due_date": null,
|
|
43
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
44
|
+
"updated_at": "2026-03-19T16:00:00-05:00",
|
|
45
|
+
"location": null,
|
|
46
|
+
"blocked_by": null,
|
|
47
|
+
"next": null,
|
|
48
|
+
"notes": [],
|
|
49
|
+
"tags": ["brand", "content"],
|
|
50
|
+
"drive": null,
|
|
51
|
+
"relations": [
|
|
52
|
+
{ "entity_id": "ENT-001", "relationship": "owner" }
|
|
53
|
+
],
|
|
54
|
+
"description": "YouTube, Instagram, TikTok, FB Reels, Skool community, courses. Content funnel: Shortform → Longform → Skool → Courses."
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "INI-003",
|
|
58
|
+
"title": "Mission Control Ecosystem",
|
|
59
|
+
"type": "initiative",
|
|
60
|
+
"parent_id": null,
|
|
61
|
+
"status": "in_progress",
|
|
62
|
+
"priority": "ongoing",
|
|
63
|
+
"category": "internal",
|
|
64
|
+
"assignees": ["ENT-001"],
|
|
65
|
+
"start_date": "2026-03-19",
|
|
66
|
+
"due_date": null,
|
|
67
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
68
|
+
"updated_at": "2026-03-19T16:00:00-05:00",
|
|
69
|
+
"location": "apps/accel/",
|
|
70
|
+
"blocked_by": null,
|
|
71
|
+
"next": "Phase 1 — JSON Schema Design",
|
|
72
|
+
"notes": [],
|
|
73
|
+
"tags": ["momentum", "vector", "drive", "ignition", "ecosystem"],
|
|
74
|
+
"drive": {
|
|
75
|
+
"is_drive_project": true,
|
|
76
|
+
"satellite_name": "mission-control",
|
|
77
|
+
"milestone": "v0.1 Foundation",
|
|
78
|
+
"phase": "01-json-schema-design",
|
|
79
|
+
"loop_position": "PLAN",
|
|
80
|
+
"last_update": "2026-03-19T16:00:00-05:00",
|
|
81
|
+
"total_phases": 7,
|
|
82
|
+
"completed_phases": 0,
|
|
83
|
+
"total_plans_completed": 0,
|
|
84
|
+
"total_time_hours": null
|
|
85
|
+
},
|
|
86
|
+
"relations": [],
|
|
87
|
+
"description": "Unified ecosystem governance — Ignition + Drive + Vector + Momentum as integrated package."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "PRJ-001",
|
|
91
|
+
"title": "Skool Recalibration — CC Strategic AI",
|
|
92
|
+
"type": "project",
|
|
93
|
+
"parent_id": "INI-002",
|
|
94
|
+
"status": "blocked",
|
|
95
|
+
"priority": "urgent",
|
|
96
|
+
"category": "community",
|
|
97
|
+
"assignees": ["ENT-001", "ENT-002"],
|
|
98
|
+
"start_date": "2026-03-12",
|
|
99
|
+
"due_date": "2026-04-12",
|
|
100
|
+
"created_at": "2026-03-17T10:48:00-05:00",
|
|
101
|
+
"updated_at": "2026-03-17T10:48:00-05:00",
|
|
102
|
+
"location": "projects/skool-recalibration/",
|
|
103
|
+
"blocked_by": "Charlie review of strategy doc",
|
|
104
|
+
"next": "Deploy about page copy, generate course thumbnails, create course shells in Skool, begin 'From Zero to Dangerous' content",
|
|
105
|
+
"notes": [
|
|
106
|
+
{
|
|
107
|
+
"text": "Full strategy created March 12-14. 3-tier structure (Free/Premium $97/Plus $997), 9-course architecture. This is the #1 revenue play.",
|
|
108
|
+
"author": null,
|
|
109
|
+
"timestamp": "2026-03-17T10:48:00-05:00"
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"tags": ["skool", "course", "revenue"],
|
|
113
|
+
"drive": null,
|
|
114
|
+
"relations": [
|
|
115
|
+
{ "entity_id": "ENT-002", "relationship": "partner" }
|
|
116
|
+
],
|
|
117
|
+
"description": null
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "PRJ-002",
|
|
121
|
+
"title": "CaseGate - Legal Intake SaaS",
|
|
122
|
+
"type": "project",
|
|
123
|
+
"parent_id": "INI-001",
|
|
124
|
+
"status": "in_review",
|
|
125
|
+
"priority": "high",
|
|
126
|
+
"category": "saas",
|
|
127
|
+
"assignees": ["ENT-001", "ENT-002"],
|
|
128
|
+
"start_date": "2025-12-15",
|
|
129
|
+
"due_date": null,
|
|
130
|
+
"created_at": "2026-03-17T10:48:00-05:00",
|
|
131
|
+
"updated_at": "2026-03-17T10:48:00-05:00",
|
|
132
|
+
"location": "apps/casegate-v2/",
|
|
133
|
+
"blocked_by": "UAT completion, email setup verification",
|
|
134
|
+
"next": "Charlie finishing UAT, possible Cloudflare email config tweaks",
|
|
135
|
+
"notes": [
|
|
136
|
+
{
|
|
137
|
+
"text": "LLC formed with Charlie + third partner. AI analysis develops fit scores based on firm-specific playbooks/criteria.",
|
|
138
|
+
"author": null,
|
|
139
|
+
"timestamp": "2026-03-17T10:48:00-05:00"
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"tags": ["saas", "legal", "ai"],
|
|
143
|
+
"drive": {
|
|
144
|
+
"is_drive_project": true,
|
|
145
|
+
"satellite_name": "casegate-v2",
|
|
146
|
+
"milestone": null,
|
|
147
|
+
"phase": null,
|
|
148
|
+
"loop_position": null,
|
|
149
|
+
"last_update": "2026-03-17T14:24:00-05:00",
|
|
150
|
+
"total_phases": null,
|
|
151
|
+
"completed_phases": null,
|
|
152
|
+
"total_plans_completed": null,
|
|
153
|
+
"total_time_hours": null
|
|
154
|
+
},
|
|
155
|
+
"relations": [
|
|
156
|
+
{ "entity_id": "ENT-002", "relationship": "partner" }
|
|
157
|
+
],
|
|
158
|
+
"description": null
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"id": "PRJ-003",
|
|
162
|
+
"title": "Hunter Exotics",
|
|
163
|
+
"type": "project",
|
|
164
|
+
"parent_id": "INI-001",
|
|
165
|
+
"status": "blocked",
|
|
166
|
+
"priority": "high",
|
|
167
|
+
"category": "agency",
|
|
168
|
+
"assignees": ["ENT-001"],
|
|
169
|
+
"start_date": "2026-01-15",
|
|
170
|
+
"due_date": null,
|
|
171
|
+
"created_at": "2026-03-17T10:48:00-05:00",
|
|
172
|
+
"updated_at": "2026-03-17T10:48:00-05:00",
|
|
173
|
+
"location": "apps/hunter-exotics/",
|
|
174
|
+
"blocked_by": "Bo needs to add Chris as collaborator on their GitHub repo",
|
|
175
|
+
"next": "Build in-app user guides, then fork to Bo's GitHub and deploy to their Railway",
|
|
176
|
+
"notes": [],
|
|
177
|
+
"tags": ["client", "subcontract"],
|
|
178
|
+
"drive": {
|
|
179
|
+
"is_drive_project": true,
|
|
180
|
+
"satellite_name": "hunter-exotics",
|
|
181
|
+
"milestone": null,
|
|
182
|
+
"phase": null,
|
|
183
|
+
"loop_position": null,
|
|
184
|
+
"last_update": "2026-03-17T20:43:28Z",
|
|
185
|
+
"total_phases": null,
|
|
186
|
+
"completed_phases": null,
|
|
187
|
+
"total_plans_completed": null,
|
|
188
|
+
"total_time_hours": null
|
|
189
|
+
},
|
|
190
|
+
"relations": [
|
|
191
|
+
{ "entity_id": "ENT-005", "relationship": "client" },
|
|
192
|
+
{ "entity_id": "ENT-008", "relationship": "client" }
|
|
193
|
+
],
|
|
194
|
+
"description": "Exotic car scraper — subcontract via Calford.ai"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"id": "PRJ-004",
|
|
198
|
+
"title": "Occupancy Lift",
|
|
199
|
+
"type": "project",
|
|
200
|
+
"parent_id": "INI-001",
|
|
201
|
+
"status": "blocked",
|
|
202
|
+
"priority": "high",
|
|
203
|
+
"category": "agency",
|
|
204
|
+
"assignees": ["ENT-001", "ENT-002"],
|
|
205
|
+
"start_date": "2026-03-01",
|
|
206
|
+
"due_date": null,
|
|
207
|
+
"created_at": "2026-03-17T10:48:00-05:00",
|
|
208
|
+
"updated_at": "2026-03-17T10:48:00-05:00",
|
|
209
|
+
"location": "clients/occupancylift/",
|
|
210
|
+
"blocked_by": "Wrong user access level — can't do real work until upgraded",
|
|
211
|
+
"next": "Thomas needs to upgrade Chris + Charlie to agency admin in GHL",
|
|
212
|
+
"notes": [
|
|
213
|
+
{
|
|
214
|
+
"text": "$5k setup fee paid + performance split on closed deals. Services assisted living communities.",
|
|
215
|
+
"author": null,
|
|
216
|
+
"timestamp": "2026-03-17T10:48:00-05:00"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"tags": ["client", "ghl"],
|
|
220
|
+
"drive": null,
|
|
221
|
+
"relations": [
|
|
222
|
+
{ "entity_id": "ENT-004", "relationship": "client" }
|
|
223
|
+
],
|
|
224
|
+
"description": null
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": "PRJ-005",
|
|
228
|
+
"title": "Shortform Content Launch",
|
|
229
|
+
"type": "project",
|
|
230
|
+
"parent_id": "INI-002",
|
|
231
|
+
"status": "in_progress",
|
|
232
|
+
"priority": "urgent",
|
|
233
|
+
"category": "content",
|
|
234
|
+
"assignees": ["ENT-001"],
|
|
235
|
+
"start_date": "2026-03-15",
|
|
236
|
+
"due_date": null,
|
|
237
|
+
"created_at": "2026-03-17T10:48:00-05:00",
|
|
238
|
+
"updated_at": "2026-03-17T10:48:00-05:00",
|
|
239
|
+
"location": "content/shortform/",
|
|
240
|
+
"blocked_by": null,
|
|
241
|
+
"next": "Maintain posting cadence, build consistency muscle",
|
|
242
|
+
"notes": [],
|
|
243
|
+
"tags": ["content", "social"],
|
|
244
|
+
"drive": null,
|
|
245
|
+
"relations": [],
|
|
246
|
+
"description": "Instagram, TikTok, YT Shorts, FB Reels — feeds Skool funnel"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"id": "TSK-001",
|
|
250
|
+
"title": "Complete UAT testing",
|
|
251
|
+
"type": "task",
|
|
252
|
+
"parent_id": "PRJ-002",
|
|
253
|
+
"status": "in_progress",
|
|
254
|
+
"priority": "high",
|
|
255
|
+
"category": "saas",
|
|
256
|
+
"assignees": ["ENT-002"],
|
|
257
|
+
"start_date": "2026-03-10",
|
|
258
|
+
"due_date": null,
|
|
259
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
260
|
+
"updated_at": "2026-03-19T16:00:00-05:00",
|
|
261
|
+
"location": "apps/casegate-v2/UAT-ISSUES.md",
|
|
262
|
+
"blocked_by": null,
|
|
263
|
+
"next": "Work through FR-001 through FR-004",
|
|
264
|
+
"notes": [],
|
|
265
|
+
"tags": ["uat"],
|
|
266
|
+
"drive": null,
|
|
267
|
+
"relations": [
|
|
268
|
+
{ "entity_id": "ENT-002", "relationship": "assignee" }
|
|
269
|
+
],
|
|
270
|
+
"description": null
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "TSK-002",
|
|
274
|
+
"title": "Verify email setup (Cloudflare)",
|
|
275
|
+
"type": "task",
|
|
276
|
+
"parent_id": "PRJ-002",
|
|
277
|
+
"status": "todo",
|
|
278
|
+
"priority": "high",
|
|
279
|
+
"category": "saas",
|
|
280
|
+
"assignees": ["ENT-001"],
|
|
281
|
+
"start_date": null,
|
|
282
|
+
"due_date": null,
|
|
283
|
+
"created_at": "2026-03-19T16:00:00-05:00",
|
|
284
|
+
"updated_at": "2026-03-19T16:00:00-05:00",
|
|
285
|
+
"location": null,
|
|
286
|
+
"blocked_by": null,
|
|
287
|
+
"next": null,
|
|
288
|
+
"notes": [],
|
|
289
|
+
"tags": ["uat", "email"],
|
|
290
|
+
"drive": null,
|
|
291
|
+
"relations": [],
|
|
292
|
+
"description": null
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"archived": [
|
|
296
|
+
{
|
|
297
|
+
"id": "ARC-001",
|
|
298
|
+
"title": "Extendly Webinar #1",
|
|
299
|
+
"outcome": "Shipped",
|
|
300
|
+
"date": "2026-01-21",
|
|
301
|
+
"archived_at": "2026-03-17T10:48:00-05:00"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "ARC-002",
|
|
305
|
+
"title": "Extendly Webinar #2",
|
|
306
|
+
"outcome": "Shipped",
|
|
307
|
+
"date": "2026-02-25",
|
|
308
|
+
"archived_at": "2026-03-17T10:48:00-05:00"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "ARC-003",
|
|
312
|
+
"title": "Workspace 6-Phase Cleanup",
|
|
313
|
+
"outcome": "Complete",
|
|
314
|
+
"date": "2026-03-15",
|
|
315
|
+
"archived_at": "2026-03-17T10:48:00-05:00"
|
|
316
|
+
}
|
|
317
|
+
]
|
|
318
|
+
}
|