@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,183 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"workspace": "chris-ai-systems",
|
|
4
|
+
"last_modified": "2026-03-19T16:00:00-05:00",
|
|
5
|
+
"groom": {
|
|
6
|
+
"cadence": "weekly",
|
|
7
|
+
"day": "friday",
|
|
8
|
+
"last_groom": "2026-03-16",
|
|
9
|
+
"next_groom_due": "2026-03-20"
|
|
10
|
+
},
|
|
11
|
+
"drift": {
|
|
12
|
+
"score": 51,
|
|
13
|
+
"indicators": {
|
|
14
|
+
"active_age_days": 3,
|
|
15
|
+
"backlog_age_days": 3,
|
|
16
|
+
"backlog_past_review": 0,
|
|
17
|
+
"orphaned_sessions": 0,
|
|
18
|
+
"untracked_root_files": 0,
|
|
19
|
+
"stale_satellites": 0
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"areas": {
|
|
23
|
+
"working-memory": {
|
|
24
|
+
"type": "working-memory",
|
|
25
|
+
"description": "Core context documents that AI reads every session",
|
|
26
|
+
"paths": [".accel/momentum/data/projects.json"],
|
|
27
|
+
"groom_schedule": "weekly",
|
|
28
|
+
"last_touched": "2026-03-16",
|
|
29
|
+
"groom_due": "2026-03-20",
|
|
30
|
+
"status": "current",
|
|
31
|
+
"audit": {
|
|
32
|
+
"strategy": "staleness",
|
|
33
|
+
"config": { "threshold_days": 7 }
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"projects": {
|
|
37
|
+
"type": "directory",
|
|
38
|
+
"description": "Project documentation and planning",
|
|
39
|
+
"paths": ["projects/"],
|
|
40
|
+
"groom_schedule": "monthly",
|
|
41
|
+
"last_touched": "2026-03-16",
|
|
42
|
+
"groom_due": "2026-04-16",
|
|
43
|
+
"status": "current",
|
|
44
|
+
"audit": {
|
|
45
|
+
"strategy": "classify",
|
|
46
|
+
"config": { "states": ["active", "archive", "delete"], "archive_path": "projects/_archive/" }
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"clients": {
|
|
50
|
+
"type": "directory",
|
|
51
|
+
"description": "Client project folders and deliverables",
|
|
52
|
+
"paths": ["clients/"],
|
|
53
|
+
"groom_schedule": "monthly",
|
|
54
|
+
"last_touched": "2026-03-16",
|
|
55
|
+
"groom_due": "2026-04-16",
|
|
56
|
+
"status": "stale",
|
|
57
|
+
"audit": {
|
|
58
|
+
"strategy": "classify",
|
|
59
|
+
"config": { "states": ["active", "archive", "delete"] }
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"tools": {
|
|
63
|
+
"type": "config-cross-ref",
|
|
64
|
+
"description": "MCP servers, personal tools, shareable tools",
|
|
65
|
+
"paths": ["tools/"],
|
|
66
|
+
"groom_schedule": "monthly",
|
|
67
|
+
"last_touched": "2026-03-16",
|
|
68
|
+
"groom_due": "2026-04-16",
|
|
69
|
+
"status": "current",
|
|
70
|
+
"audit": {
|
|
71
|
+
"strategy": "cross-reference",
|
|
72
|
+
"config": { "config_file": ".mcp.json" }
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"system-layer": {
|
|
76
|
+
"type": "system-layer",
|
|
77
|
+
"description": "Claude Code commands, hooks, skills, Vector domains",
|
|
78
|
+
"paths": [".claude/commands/", ".claude/hooks/", ".claude/skills/", ".vector/"],
|
|
79
|
+
"groom_schedule": "monthly",
|
|
80
|
+
"last_touched": "2026-03-16",
|
|
81
|
+
"groom_due": "2026-04-16",
|
|
82
|
+
"status": "current",
|
|
83
|
+
"audit": {
|
|
84
|
+
"strategy": "dead-code",
|
|
85
|
+
"config": { "reference_check": true }
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"content": {
|
|
89
|
+
"type": "directory",
|
|
90
|
+
"description": "Shortform and longform content pipeline",
|
|
91
|
+
"paths": ["content/"],
|
|
92
|
+
"groom_schedule": "bi-weekly",
|
|
93
|
+
"last_touched": "2026-03-15",
|
|
94
|
+
"groom_due": "2026-03-29",
|
|
95
|
+
"status": "stale",
|
|
96
|
+
"audit": {
|
|
97
|
+
"strategy": "pipeline-status",
|
|
98
|
+
"config": {
|
|
99
|
+
"stages": ["ideation", "scripts", "recorded", "scheduled", "published"],
|
|
100
|
+
"stuck_threshold_days": 14
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"satellites": {
|
|
106
|
+
"radar": {
|
|
107
|
+
"path": "apps/radar",
|
|
108
|
+
"engine": "drive",
|
|
109
|
+
"state": "apps/radar/.drive/STATE.md",
|
|
110
|
+
"registered": "2026-03-15",
|
|
111
|
+
"groom_check": true,
|
|
112
|
+
"last_activity": null
|
|
113
|
+
},
|
|
114
|
+
"casegate-v2": {
|
|
115
|
+
"path": "apps/casegate-v2",
|
|
116
|
+
"engine": "drive",
|
|
117
|
+
"state": "apps/casegate-v2/.drive/STATE.md",
|
|
118
|
+
"registered": "2026-03-17",
|
|
119
|
+
"groom_check": true,
|
|
120
|
+
"last_activity": "2026-03-17T14:24:00-05:00"
|
|
121
|
+
},
|
|
122
|
+
"momentum": {
|
|
123
|
+
"path": "apps/momentum",
|
|
124
|
+
"engine": "drive",
|
|
125
|
+
"state": "apps/momentum/.drive/STATE.md",
|
|
126
|
+
"registered": "2026-03-17",
|
|
127
|
+
"groom_check": true,
|
|
128
|
+
"last_activity": null
|
|
129
|
+
},
|
|
130
|
+
"mission-control": {
|
|
131
|
+
"path": "apps/accel",
|
|
132
|
+
"engine": "drive",
|
|
133
|
+
"state": "apps/accel/.drive/STATE.md",
|
|
134
|
+
"registered": "2026-03-19",
|
|
135
|
+
"groom_check": true,
|
|
136
|
+
"last_activity": "2026-03-19T16:00:00-05:00"
|
|
137
|
+
},
|
|
138
|
+
"ignition": {
|
|
139
|
+
"path": "apps/ignition",
|
|
140
|
+
"engine": "drive",
|
|
141
|
+
"state": "apps/ignition/.drive/STATE.md",
|
|
142
|
+
"registered": "2026-03-18",
|
|
143
|
+
"groom_check": true,
|
|
144
|
+
"last_activity": "2026-03-18T13:16:00-05:00"
|
|
145
|
+
},
|
|
146
|
+
"hunter-exotics": {
|
|
147
|
+
"path": "apps/hunter-exotics",
|
|
148
|
+
"engine": "drive",
|
|
149
|
+
"state": "apps/hunter-exotics/.drive/STATE.md",
|
|
150
|
+
"registered": "2026-03-17",
|
|
151
|
+
"groom_check": true,
|
|
152
|
+
"last_activity": "2026-03-17T20:43:28Z"
|
|
153
|
+
},
|
|
154
|
+
"drive-framework": {
|
|
155
|
+
"path": "apps/drive-framework",
|
|
156
|
+
"engine": "drive",
|
|
157
|
+
"state": "apps/drive-framework/.drive/STATE.md",
|
|
158
|
+
"registered": "2026-03-15",
|
|
159
|
+
"groom_check": true,
|
|
160
|
+
"last_activity": null
|
|
161
|
+
},
|
|
162
|
+
"forge": {
|
|
163
|
+
"path": "apps/forge",
|
|
164
|
+
"engine": "drive",
|
|
165
|
+
"state": "apps/forge/.drive/STATE.md",
|
|
166
|
+
"registered": "2026-03-15",
|
|
167
|
+
"groom_check": true,
|
|
168
|
+
"last_activity": null
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"vector_hygiene": {
|
|
172
|
+
"proactive": true,
|
|
173
|
+
"cadence": "monthly",
|
|
174
|
+
"staleness_threshold_days": 60,
|
|
175
|
+
"max_rules_per_domain": 15,
|
|
176
|
+
"last_run": null
|
|
177
|
+
},
|
|
178
|
+
"last_audit": {
|
|
179
|
+
"date": "2026-03-15",
|
|
180
|
+
"phases": 6,
|
|
181
|
+
"outcome": "Full workspace optimization. 3 dead projects deleted, 10 archived, root cleaned, tools audited, system layer pruned. 140 stale session files removed."
|
|
182
|
+
}
|
|
183
|
+
}
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"last_modified": "2026-03-19T16:25:00-05:00",
|
|
4
|
+
"config": {
|
|
5
|
+
"devmode": true,
|
|
6
|
+
"post_compact_gate": true,
|
|
7
|
+
"global_exclude": []
|
|
8
|
+
},
|
|
9
|
+
"domains": {
|
|
10
|
+
"GLOBAL": {
|
|
11
|
+
"state": "active",
|
|
12
|
+
"always_on": true,
|
|
13
|
+
"recall": ["universal"],
|
|
14
|
+
"exclude": [],
|
|
15
|
+
"rules": [
|
|
16
|
+
{
|
|
17
|
+
"id": 0,
|
|
18
|
+
"text": "GLOBAL rules apply universally to all sessions and contexts. These are foundational behaviors that should never be disabled.",
|
|
19
|
+
"added": "2026-03-16",
|
|
20
|
+
"last_reviewed": "2026-03-16",
|
|
21
|
+
"source": "manual"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": 1,
|
|
25
|
+
"text": "Use absolute paths in all programming to prevent path traversal attacks",
|
|
26
|
+
"added": "2026-03-16",
|
|
27
|
+
"last_reviewed": "2026-03-16",
|
|
28
|
+
"source": "manual"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": 2,
|
|
32
|
+
"text": "Use relative paths when referencing files to the user for clickable navigation",
|
|
33
|
+
"added": "2026-03-16",
|
|
34
|
+
"last_reviewed": "2026-03-16",
|
|
35
|
+
"source": "manual"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": 3,
|
|
39
|
+
"text": "Batch tool calls when possible, sequential only for dependencies",
|
|
40
|
+
"added": "2026-03-16",
|
|
41
|
+
"last_reviewed": "2026-03-16",
|
|
42
|
+
"source": "manual"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": 4,
|
|
46
|
+
"text": "NEVER mark tasks complete without validating functionality - test everything, require proof",
|
|
47
|
+
"added": "2026-03-16",
|
|
48
|
+
"last_reviewed": "2026-03-16",
|
|
49
|
+
"source": "manual"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": 5,
|
|
53
|
+
"text": "Check environment date context before any time/calendar/briefing operations",
|
|
54
|
+
"added": "2026-03-16",
|
|
55
|
+
"last_reviewed": "2026-03-16",
|
|
56
|
+
"source": "manual"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": 6,
|
|
60
|
+
"text": "Use TodoWrite tool to track complex multi-step tasks",
|
|
61
|
+
"added": "2026-03-16",
|
|
62
|
+
"last_reviewed": "2026-03-16",
|
|
63
|
+
"source": "manual"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": 7,
|
|
67
|
+
"text": "Obey ~/.claude/CLAUDE.md and active files (PRINCIPLES.md, RULES.md, WORKFLOWS.md) with zero deviation",
|
|
68
|
+
"added": "2026-03-16",
|
|
69
|
+
"last_reviewed": "2026-03-16",
|
|
70
|
+
"source": "manual"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": 8,
|
|
74
|
+
"text": "Before writing ANY external-facing content (Skool posts, comments, DMs, LinkedIn, emails, client comms), read ~/.claude/skills/humanizer/SKILL.md AND ~/.claude/skills/humanizer/VOICE.md. SKILL.md defines what to avoid. VOICE.md defines how Chris sounds. Apply both preemptively. Write human from the start.",
|
|
75
|
+
"added": "2026-03-16",
|
|
76
|
+
"last_reviewed": "2026-03-16",
|
|
77
|
+
"source": "manual"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": 9,
|
|
81
|
+
"text": "LSP FIRST. ALWAYS. When navigating code (symbols, definitions, references, structure), use LSP before grep, glob, bash, or Read. LSP is faster, more accurate, and cheaper on tokens. Only fall back to grep/glob for non-code text search or regex patterns. This is NON-NEGOTIABLE.",
|
|
82
|
+
"added": "2026-03-16",
|
|
83
|
+
"last_reviewed": "2026-03-16",
|
|
84
|
+
"source": "manual"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": 10,
|
|
88
|
+
"text": "Dynamic rules go in .env.drl.* files (V2) or .env.claude (V1) - always check these first",
|
|
89
|
+
"added": "2026-03-16",
|
|
90
|
+
"last_reviewed": "2026-03-16",
|
|
91
|
+
"source": "manual"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": 11,
|
|
95
|
+
"text": "When <momentum-pulse> is present in context: If drift score is 0, stay silent. If drift score is 1-14, briefly note stale areas at session start. If drift score is 15+, proactively recommend grooming before other work.",
|
|
96
|
+
"added": "2026-03-16",
|
|
97
|
+
"last_reviewed": "2026-03-16",
|
|
98
|
+
"source": "manual"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": 12,
|
|
102
|
+
"text": "PSMM (Per-Session Meta Memory) keeps session context hot across long 1M-window sessions. When a significant meta moment occurs, use vector_psmm_log(session_id, type, text) where type is DECISION|CORRECTION|SHIFT|INSIGHT|COMMITMENT.",
|
|
103
|
+
"added": "2026-03-16",
|
|
104
|
+
"last_reviewed": "2026-03-16",
|
|
105
|
+
"source": "manual"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": 13,
|
|
109
|
+
"text": "When the user expresses an action item, to-do, or work intent in natural language, ensure it gets tracked. If immediate work, confirm it's in ACTIVE. If future work, ask: Want me to add that to the backlog?",
|
|
110
|
+
"added": "2026-03-16",
|
|
111
|
+
"last_reviewed": "2026-03-16",
|
|
112
|
+
"source": "manual"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": 14,
|
|
116
|
+
"text": "When user invokes a Momentum workflow in natural language, MUST read the corresponding task file FIRST and follow every step. Do not execute from memory.",
|
|
117
|
+
"added": "2026-03-16",
|
|
118
|
+
"last_reviewed": "2026-03-16",
|
|
119
|
+
"source": "psmm"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"decisions": [
|
|
123
|
+
{
|
|
124
|
+
"id": "global-001",
|
|
125
|
+
"decision": "Skool community brand name: TITAN — Tactical Intelligence Tech Automation Network. Standalone name, no qualifier.",
|
|
126
|
+
"rationale": "Follows established naming convention (Vector, Drive, Radar): sounds like a regular word, is a meaningful acronym, has mythological weight.",
|
|
127
|
+
"date": "2026-03-04",
|
|
128
|
+
"source": "manual",
|
|
129
|
+
"recall": ["titan", "skool", "community", "brand", "naming"],
|
|
130
|
+
"status": "active"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "global-002",
|
|
134
|
+
"decision": "Momentum satellite detection hook fires on session start, scans for .drive/drive.json files across workspace, auto-registers new satellites in workspace.json.",
|
|
135
|
+
"rationale": "Session-start hook ensures workspace.json satellites are always current without manual registration.",
|
|
136
|
+
"date": "2026-03-17",
|
|
137
|
+
"source": "manual",
|
|
138
|
+
"recall": ["satellite detection", "session start hook", "auto register"],
|
|
139
|
+
"status": "active"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"id": "global-003",
|
|
143
|
+
"decision": "Momentum groom health-checks Drive satellite projects with configurable per-project boolean (default: active).",
|
|
144
|
+
"rationale": "Configurable default-on respects both hygiene and autonomy.",
|
|
145
|
+
"date": "2026-03-17",
|
|
146
|
+
"source": "manual",
|
|
147
|
+
"recall": ["momentum groom", "satellite health", "groom satellites"],
|
|
148
|
+
"status": "active"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "global-004",
|
|
152
|
+
"decision": "Momentum framework files move to global ~/.claude/momentum-framework/. Data stays in .accel/momentum/ per workspace.",
|
|
153
|
+
"rationale": "Supports multiple workspaces per user. Framework is user-level, data is workspace-level.",
|
|
154
|
+
"date": "2026-03-17",
|
|
155
|
+
"source": "manual",
|
|
156
|
+
"recall": ["momentum global", "momentum framework", "multiple workspaces"],
|
|
157
|
+
"status": "active"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"id": "global-005",
|
|
161
|
+
"decision": "Momentum framework files (task files, templates, principles) move to global ~/.claude/momentum-framework/. Data stays in .accel/momentum/ per workspace. Framework is user-level, data is workspace-level.",
|
|
162
|
+
"rationale": "Supports multiple workspaces per user without duplicating framework files. Mirrors Drive's global framework + local data pattern.",
|
|
163
|
+
"date": "2026-03-17",
|
|
164
|
+
"source": "manual",
|
|
165
|
+
"recall": ["momentum framework global migration", "momentum framework location"],
|
|
166
|
+
"status": "active"
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
},
|
|
170
|
+
"DEVELOPMENT": {
|
|
171
|
+
"state": "active",
|
|
172
|
+
"always_on": false,
|
|
173
|
+
"recall": ["write code for", "fix this bug", "implement this feature", "build this component", "refactor this", "add this endpoint", "create this modal", "programming task", "code review"],
|
|
174
|
+
"exclude": [],
|
|
175
|
+
"rules": [
|
|
176
|
+
{
|
|
177
|
+
"id": 0,
|
|
178
|
+
"text": "DEVELOPMENT rules apply when user is writing code, building features, working with CSS, creating MCP servers, or doing any programming work.",
|
|
179
|
+
"added": "2026-03-16",
|
|
180
|
+
"last_reviewed": "2026-03-16",
|
|
181
|
+
"source": "manual"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": 1,
|
|
185
|
+
"text": "NEVER EVER EVER CREATE A BROWSER ALERT DIALOG FOR APPLICATION DEVELOPMENT, ALWAYS USE A MODAL EXPERIENCE.",
|
|
186
|
+
"added": "2026-03-16",
|
|
187
|
+
"last_reviewed": "2026-03-16",
|
|
188
|
+
"source": "manual"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": 2,
|
|
192
|
+
"text": "Before CSS changes, verify actual element classes/IDs in HTML/JS markup first - never assume",
|
|
193
|
+
"added": "2026-03-16",
|
|
194
|
+
"last_reviewed": "2026-03-16",
|
|
195
|
+
"source": "manual"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"id": 3,
|
|
199
|
+
"text": "MCP servers: follow bridge protocol pattern in tools/mcp-servers/production/ - reference skool-bridge for structure",
|
|
200
|
+
"added": "2026-03-16",
|
|
201
|
+
"last_reviewed": "2026-03-16",
|
|
202
|
+
"source": "manual"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": 4,
|
|
206
|
+
"text": "Auto-read WSL paths with image extensions using Read tool and filepath ~/docs/greenshot/",
|
|
207
|
+
"added": "2026-03-16",
|
|
208
|
+
"last_reviewed": "2026-03-16",
|
|
209
|
+
"source": "manual"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": 5,
|
|
213
|
+
"text": "Docker patterns: Compose files in docker/compose/, Dockerfile templates in docker/templates/, individual apps contain own Docker configs",
|
|
214
|
+
"added": "2026-03-16",
|
|
215
|
+
"last_reviewed": "2026-03-16",
|
|
216
|
+
"source": "manual"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": 6,
|
|
220
|
+
"text": "CRITICAL: NEVER use CSS linear-gradient for dark section backgrounds (causes banding). Use Motion AnimatedBackground component with floating orbs.",
|
|
221
|
+
"added": "2026-03-16",
|
|
222
|
+
"last_reviewed": "2026-03-16",
|
|
223
|
+
"source": "manual"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": 7,
|
|
227
|
+
"text": "CRITICAL for React 19+: ALWAYS use motion package, NOT framer-motion. Install: npm install motion. Import: import { motion } from \"motion/react\"",
|
|
228
|
+
"added": "2026-03-16",
|
|
229
|
+
"last_reviewed": "2026-03-16",
|
|
230
|
+
"source": "manual"
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
"decisions": []
|
|
234
|
+
},
|
|
235
|
+
"SKOOL": {
|
|
236
|
+
"state": "active",
|
|
237
|
+
"always_on": false,
|
|
238
|
+
"recall": ["check skool", "skool notifications", "reply on skool", "skool community", "skool engagement", "skoolboss"],
|
|
239
|
+
"exclude": [],
|
|
240
|
+
"rules": [],
|
|
241
|
+
"decisions": []
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"staging": []
|
|
245
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Install Verification Checklist
|
|
2
|
+
|
|
3
|
+
**Purpose:** Verify all installed Mission Control frameworks are properly set up and wired after installation.
|
|
4
|
+
|
|
5
|
+
## Vector
|
|
6
|
+
- [ ] `~/.vector/vector.json` exists and is valid JSON
|
|
7
|
+
- [ ] `~/.claude/hooks/vector-hook.py` exists and is executable
|
|
8
|
+
- [ ] Hook wired in `~/.claude/settings.json` under `hooks.UserPromptSubmit`
|
|
9
|
+
- [ ] MCP wired in `.mcp.json` as `vector-mcp` with relative path to `.vector/vector-mcp/`
|
|
10
|
+
- [ ] `vector-mcp` responds (node process starts without error)
|
|
11
|
+
|
|
12
|
+
## Momentum
|
|
13
|
+
- [ ] `~/.claude/momentum-framework/` exists with tasks/, templates/, context/
|
|
14
|
+
- [ ] `.accel/momentum/workspace.json` exists and is valid JSON
|
|
15
|
+
- [ ] `.accel/momentum/data/projects.json` exists
|
|
16
|
+
- [ ] `.accel/momentum/momentum-mcp/` exists with index.js and tools/
|
|
17
|
+
- [ ] MCP wired in `.mcp.json` as `momentum-mcp` with relative path
|
|
18
|
+
- [ ] Hooks exist in `.accel/momentum/hooks/` (8 files: active-hook, backlog-hook, momentum-pulse-check, operator, psmm-injector, satellite-detection, accel-insights, _template)
|
|
19
|
+
- [ ] Hooks wired in `.claude/settings.json` (requires /momentum:scaffold)
|
|
20
|
+
- [ ] `momentum-mcp` responds (node process starts without error)
|
|
21
|
+
|
|
22
|
+
## Drive
|
|
23
|
+
- [ ] `~/.claude/commands/drive/` exists with 28+ command files
|
|
24
|
+
- [ ] `~/.claude/drive-framework/` exists with templates/, workflows/, references/, rules/
|
|
25
|
+
- [ ] `/drive:help` resolves as a valid command
|
|
26
|
+
|
|
27
|
+
## Ignition
|
|
28
|
+
- [ ] `~/.claude/commands/ignition/ignition.md` exists with valid frontmatter
|
|
29
|
+
- [ ] `~/.claude/commands/ignition/tasks/` exists with 5 task files
|
|
30
|
+
- [ ] `~/.claude/commands/ignition/data/` exists with 5 type directories
|
|
31
|
+
|
|
32
|
+
## Forge
|
|
33
|
+
- [ ] `~/.claude/commands/forge/forge.md` exists with valid frontmatter
|
|
34
|
+
- [ ] `~/.claude/commands/forge/tasks/` exists with 4 task files
|
|
35
|
+
- [ ] `~/.claude/forge-specs/` exists with 7 spec files
|
|
36
|
+
|
|
37
|
+
## Radar
|
|
38
|
+
- [ ] `~/.claude/radar/` exists with core/, transform/, domains/, schemas/
|
|
39
|
+
- [ ] `~/.claude/commands/radar/` exists with 10 command files
|
|
40
|
+
- [ ] `/radar:validate` resolves as a valid command
|
|
41
|
+
|
|
42
|
+
## Cross-Framework Integration
|
|
43
|
+
- [ ] If Vector + Drive both installed: Drive domain exists in vector.json
|
|
44
|
+
- [ ] If Momentum installed: satellite-detection hook runs on SessionStart
|
|
45
|
+
- [ ] `.mcp.json` has no duplicate or conflicting MCP entries
|
|
46
|
+
- [ ] `~/.claude/settings.json` has no stale hook paths (no -v2 suffixes, no archived files)
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Framework Registry
|
|
2
|
+
|
|
3
|
+
Reference data for all 7 Mission Control-managed frameworks. Used by install, status, and insights tasks.
|
|
4
|
+
|
|
5
|
+
## Install Order
|
|
6
|
+
|
|
7
|
+
Frameworks must be installed in dependency order. A framework's dependencies must be installed before it.
|
|
8
|
+
|
|
9
|
+
| Order | Framework | Dependencies | Reason |
|
|
10
|
+
|-------|-----------|-------------|--------|
|
|
11
|
+
| 1 | Vector | None | Foundation — rules engine used by all others |
|
|
12
|
+
| 2 | Momentum | Vector | Workspace layer — hooks reference Vector, MCP reads vector.json |
|
|
13
|
+
| 3 | Drive | None (Vector recommended) | Project orchestration — standalone but Vector domain enforces loop integrity |
|
|
14
|
+
| 4 | Ignition | None (Drive recommended) | Incubation — standalone but graduates projects into Drive |
|
|
15
|
+
| 5 | Forge | None | Skill builder — fully independent |
|
|
16
|
+
| 6 | Radar | None (Drive recommended) | Security audit — standalone but integrates with Drive for remediation |
|
|
17
|
+
|
|
18
|
+
## Framework Definitions
|
|
19
|
+
|
|
20
|
+
### Vector — Context Augmentation & Reinforcement Layer
|
|
21
|
+
- **Package**: `npx @accel/vector`
|
|
22
|
+
- **Install flags**: `--global --skip-claude-md`
|
|
23
|
+
- **Installs to**: `~/.vector/` (data + MCP) and `~/.claude/hooks/` (hook)
|
|
24
|
+
- **Wires**: Hook in `~/.claude/settings.json`, MCP in `.mcp.json`
|
|
25
|
+
- **Detection**: `~/.vector/vector.json` exists
|
|
26
|
+
- **Version check**: grep `VECTOR_HOOK_VERSION` in `~/.claude/hooks/vector-hook.py`
|
|
27
|
+
- **Post-install**: Ready immediately
|
|
28
|
+
- **Mission Control extra**: When Drive is also installed, inject Drive enforcement domain into vector.json
|
|
29
|
+
|
|
30
|
+
### Momentum — Builder's Automated State Engine
|
|
31
|
+
- **Package**: `npx @accel/momentum`
|
|
32
|
+
- **Install flags**: `--global --workspace`
|
|
33
|
+
- **Installs to**: `~/.claude/momentum-framework/` (global) and `.accel/momentum/` (workspace)
|
|
34
|
+
- **Wires**: MCP in `.mcp.json`. Hooks copied but NOT wired (scaffold does that)
|
|
35
|
+
- **Detection**: `.accel/momentum/workspace.json` exists
|
|
36
|
+
- **Version check**: read `package.json` version from `.accel/momentum/momentum-mcp/package.json`
|
|
37
|
+
- **Post-install**: Requires `/momentum:scaffold` to complete (wires hooks, operator profile)
|
|
38
|
+
- **Mission Control extra**: Offer to run `/momentum:scaffold` immediately after install
|
|
39
|
+
|
|
40
|
+
### Drive — Project Orchestration (Plan-Apply-Unify)
|
|
41
|
+
- **Package**: `npx @accel/drive`
|
|
42
|
+
- **Install flags**: `--global`
|
|
43
|
+
- **Installs to**: `~/.claude/commands/drive/` and `~/.claude/drive-framework/`
|
|
44
|
+
- **Wires**: Nothing (pure file copy)
|
|
45
|
+
- **Detection**: `~/.claude/commands/drive/drive:help.md` exists
|
|
46
|
+
- **Version check**: read version from `~/.claude/drive-framework/` or command file header
|
|
47
|
+
- **Post-install**: Ready immediately. Use `/drive:init` in a project to start.
|
|
48
|
+
|
|
49
|
+
### Ignition — Project Incubation
|
|
50
|
+
- **Package**: `npx @accel/ignition`
|
|
51
|
+
- **Install flags**: (global by default, no flag needed)
|
|
52
|
+
- **Installs to**: `~/.claude/commands/ignition/`
|
|
53
|
+
- **Wires**: Nothing (pure file copy)
|
|
54
|
+
- **Detection**: `~/.claude/commands/ignition/ignition.md` exists
|
|
55
|
+
- **Version check**: read frontmatter version from ignition.md
|
|
56
|
+
- **Post-install**: Ready immediately. Use `/ignition` to start.
|
|
57
|
+
|
|
58
|
+
### Forge — Skill Builder
|
|
59
|
+
- **Package**: `npx @accel/forge`
|
|
60
|
+
- **Install flags**: (global by default, no flag needed)
|
|
61
|
+
- **Installs to**: `~/.claude/commands/forge/` and `~/.claude/forge-specs/`
|
|
62
|
+
- **Wires**: Nothing (pure file copy)
|
|
63
|
+
- **Detection**: `~/.claude/commands/forge/forge.md` exists
|
|
64
|
+
- **Version check**: read frontmatter version from forge.md
|
|
65
|
+
- **Post-install**: Ready immediately. Use `/forge` to start.
|
|
66
|
+
|
|
67
|
+
### Radar — Security Audit Framework
|
|
68
|
+
- **Package**: `bash install.sh` (not yet on npm)
|
|
69
|
+
- **Install method**: Clone repo + run `bash install.sh`, OR direct file copy for non-interactive
|
|
70
|
+
- **Install flags**: Interactive only (no non-interactive mode yet)
|
|
71
|
+
- **Non-interactive fallback**: `cp -r src/* ~/.claude/radar/ && cp commands/*.md ~/.claude/commands/radar/`
|
|
72
|
+
- **Installs to**: `~/.claude/radar/` (framework) and `~/.claude/commands/radar/` (commands)
|
|
73
|
+
- **Wires**: Nothing (pure file copy + optional tool binaries)
|
|
74
|
+
- **Detection**: `~/.claude/radar/` directory exists
|
|
75
|
+
- **Version check**: grep `RADAR_VERSION` in install.sh or check `~/.claude/radar/` file count
|
|
76
|
+
- **Post-install**: Run `/radar:validate` to verify tools. Run `/radar:init` in target project.
|
|
77
|
+
- **Note**: Tool installation (semgrep, trivy, etc.) is separate and interactive. Mission Control installs framework + commands only.
|
|
78
|
+
|
|
79
|
+
## Vector Domain Integration
|
|
80
|
+
|
|
81
|
+
When both Vector and Drive are installed, Mission Control should add the Drive enforcement domain to vector.json. This domain contains rules that protect the Plan-Apply-Unify loop integrity. The domain is defined in the drive-framework repo at `src/vector/Drive` but is not installed by Drive's own installer.
|
|
82
|
+
|
|
83
|
+
Similarly, future frameworks may ship Vector domains that enforce their behavioral rules. Mission Control is the integration point that wires these cross-framework dependencies.
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mission-control
|
|
3
|
+
type: suite
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
category: workspace
|
|
6
|
+
description: Orchestrator installer and command center for 7 Claude Code frameworks
|
|
7
|
+
allowed-tools: [Read, Write, Glob, Grep, Edit, Bash, AskUserQuestion, Skill]
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<activation>
|
|
11
|
+
## What
|
|
12
|
+
Mission Control is the unified installer and command center for 7 Claude Code frameworks. Each framework tackles a different aspect of working with Claude Code — together they form a complete workspace operating system.
|
|
13
|
+
|
|
14
|
+
| Framework | Purpose | Package |
|
|
15
|
+
|-----------|---------|---------|
|
|
16
|
+
| **Vector** | Context rules engine — just-in-time behavioral injection via vector.json | `npx @accel/vector` |
|
|
17
|
+
| **Momentum** | Workspace lifecycle — state tracking, grooming, drift prevention, dashboard | `npx @accel/momentum` |
|
|
18
|
+
| **Drive** | Project orchestration — Plan-Apply-Unify loop for structured dev | `npx @accel/drive` |
|
|
19
|
+
| **Ignition** | Project incubation — typed ideation through graduation into buildable projects | `npx @accel/ignition` |
|
|
20
|
+
| **Forge** | Skill builder — standardized Claude Code skill creation and auditing | `npx @accel/forge` |
|
|
21
|
+
| **Radar** | Security audit — multi-agent codebase hardening with remediation | `npx @accel/radar` |
|
|
22
|
+
|
|
23
|
+
Install any one, or all at once. Mission Control handles dependency order and inter-framework wiring.
|
|
24
|
+
|
|
25
|
+
## When to Use
|
|
26
|
+
- Setting up a new workspace with Claude Code frameworks
|
|
27
|
+
- Adding a framework to an existing workspace
|
|
28
|
+
- Checking what's installed and whether anything needs updating
|
|
29
|
+
- Running workspace-level analytics across all projects
|
|
30
|
+
|
|
31
|
+
## Not For
|
|
32
|
+
- Using individual frameworks after installation (invoke them directly: /vector, /momentum:pulse, /drive:plan, etc.)
|
|
33
|
+
- Runtime configuration of individual tools (use each tool's own commands)
|
|
34
|
+
- Project-level work (Drive handles that)
|
|
35
|
+
</activation>
|
|
36
|
+
|
|
37
|
+
<persona>
|
|
38
|
+
## Role
|
|
39
|
+
Framework orchestrator — installs, configures, and monitors the full Mission Control suite of Claude Code tools.
|
|
40
|
+
|
|
41
|
+
## Style
|
|
42
|
+
- Efficient and methodical during installation — clear progress reporting, no unnecessary prompts
|
|
43
|
+
- Dependency-aware — installs in the right order, checks prerequisites
|
|
44
|
+
- Honest about what's installed vs what's missing — no guessing
|
|
45
|
+
- Hands off after install — each framework owns its own runtime
|
|
46
|
+
|
|
47
|
+
## Expertise
|
|
48
|
+
- Framework installation and dependency management
|
|
49
|
+
- Cross-framework wiring (hooks in settings.json, MCPs in .mcp.json)
|
|
50
|
+
- Workspace health assessment across all installed frameworks
|
|
51
|
+
- Installation troubleshooting and version detection
|
|
52
|
+
</persona>
|
|
53
|
+
|
|
54
|
+
<commands>
|
|
55
|
+
| Command | Description | Routes To |
|
|
56
|
+
|---------|-------------|-----------|
|
|
57
|
+
| `/accel install` | Install one or all frameworks | tasks/install.md |
|
|
58
|
+
| `/accel status` | Show installed frameworks and health | tasks/status.md |
|
|
59
|
+
| `/accel insights` | Workspace analytics — velocity, stalls, blocking, revenue | tasks/insights.md |
|
|
60
|
+
</commands>
|
|
61
|
+
|
|
62
|
+
<routing>
|
|
63
|
+
## Always Load
|
|
64
|
+
@frameworks/framework-registry.md (framework metadata needed by all commands)
|
|
65
|
+
|
|
66
|
+
## Load on Command
|
|
67
|
+
@tasks/install.md (when user runs /accel install)
|
|
68
|
+
@tasks/status.md (when user runs /accel status)
|
|
69
|
+
@tasks/insights.md (when user runs /accel insights)
|
|
70
|
+
|
|
71
|
+
## Load on Demand
|
|
72
|
+
@checklists/install-verification.md (after install completes)
|
|
73
|
+
</routing>
|
|
74
|
+
|
|
75
|
+
<greeting>
|
|
76
|
+
Mission Control loaded.
|
|
77
|
+
|
|
78
|
+
- **Install** — Set up one or all 7 frameworks (Vector, Momentum, Drive, Ignition, Forge, Radar)
|
|
79
|
+
- **Status** — Check what's installed and workspace health
|
|
80
|
+
- **Insights** — Analytics across all projects (velocity, stalls, blocking, revenue)
|
|
81
|
+
|
|
82
|
+
What do you need?
|
|
83
|
+
</greeting>
|