@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,555 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# Drive
|
|
4
|
+
|
|
5
|
+
**Plan-Apply-Unify Loop** — Structured AI-assisted development for Claude Code.
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/drive-framework)
|
|
8
|
+
[](LICENSE)
|
|
9
|
+
[](https://github.com/accelerationguy/drive)
|
|
10
|
+
|
|
11
|
+
<br>
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx drive-framework
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**Works on Mac, Windows, and Linux.**
|
|
18
|
+
|
|
19
|
+
<br>
|
|
20
|
+
|
|
21
|
+

|
|
22
|
+
|
|
23
|
+
<br>
|
|
24
|
+
|
|
25
|
+
*"Quality over speed-for-speed's-sake. In-session context over subagent sprawl."*
|
|
26
|
+
|
|
27
|
+
<br>
|
|
28
|
+
|
|
29
|
+
[Why Drive](#why-drive) · [Getting Started](#getting-started) · [The Loop](#the-loop) · [Commands](#commands) · [How It Works](#how-it-works)
|
|
30
|
+
|
|
31
|
+
</div>
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Why Drive
|
|
36
|
+
|
|
37
|
+
I build with Claude Code every day. It's incredibly powerful — when you give it the right context.
|
|
38
|
+
|
|
39
|
+
The problem? **Context rot.** As your session fills up, quality degrades. Subagents spawn with fresh context but return ~70% quality work that needs cleanup. Plans get created but never closed. State drifts. You end up debugging AI output instead of shipping features.
|
|
40
|
+
|
|
41
|
+
Drive fixes this with three principles:
|
|
42
|
+
|
|
43
|
+
1. **Loop integrity** — Every plan closes with UNIFY. No orphan plans. UNIFY reconciles what was planned vs what happened, updates state, logs decisions. This is the heartbeat.
|
|
44
|
+
|
|
45
|
+
2. **In-session context** — Subagents are expensive and produce lower quality for implementation work. Drive keeps development in-session with properly managed context. Subagents are reserved for discovery and research — their job IS to gather context.
|
|
46
|
+
|
|
47
|
+
3. **Acceptance-driven development** — Acceptance criteria are first-class citizens, not afterthoughts. Define done before starting. Every task references its AC. BDD format: `Given [precondition] / When [action] / Then [outcome]`.
|
|
48
|
+
|
|
49
|
+
The complexity is in the system, not your workflow. Behind the scenes: structured state management, XML task formatting, loop enforcement. What you see: a few commands that keep you on track.
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Who This Is For
|
|
54
|
+
|
|
55
|
+
**Builders who use AI to ship** — software, campaigns, workflows, automations, anything that benefits from structured execution.
|
|
56
|
+
|
|
57
|
+
Drive isn't just for code. It manages marketing campaigns, funnel builds, email sequences, and automation workflows with the same rigor it brings to software development.
|
|
58
|
+
|
|
59
|
+
You describe what you want, Claude Code builds it, and Drive ensures:
|
|
60
|
+
- **Init gathers real requirements** — type-adapted walkthrough produces a populated project brief, not empty placeholders
|
|
61
|
+
- Plans have clear acceptance criteria
|
|
62
|
+
- **Every task is qualified against the spec** — not just executed and assumed correct
|
|
63
|
+
- Execution stays bounded with explicit scope control
|
|
64
|
+
- Every unit of work gets closed properly
|
|
65
|
+
- State persists across sessions
|
|
66
|
+
- Decisions are logged for future reference
|
|
67
|
+
|
|
68
|
+
No sprint ceremonies. No story points. No enterprise theater. Just a system that keeps AI-assisted development reliable.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## Getting Started
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
npx drive-framework
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
The installer prompts you to choose:
|
|
79
|
+
1. **Location** — Global (all projects) or local (current project only)
|
|
80
|
+
|
|
81
|
+
Verify with `/drive:help` inside Claude Code.
|
|
82
|
+
|
|
83
|
+
### Quick Workflow
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
# 1. Initialize Drive in your project
|
|
87
|
+
# Walks through type-adapted requirements (app, campaign, workflow)
|
|
88
|
+
# Produces a populated PROJECT.md — not empty placeholders
|
|
89
|
+
/drive:init
|
|
90
|
+
|
|
91
|
+
# 2. Create a plan for your work
|
|
92
|
+
# Auto-detects scope: quick-fix, standard, or complex
|
|
93
|
+
# Validates coherence against project context before approval
|
|
94
|
+
/drive:plan
|
|
95
|
+
|
|
96
|
+
# 3. Execute the approved plan
|
|
97
|
+
# Each task goes through Execute/Qualify loop
|
|
98
|
+
# Escalation statuses: DONE, DONE_WITH_CONCERNS, NEEDS_CONTEXT, BLOCKED
|
|
99
|
+
/drive:apply
|
|
100
|
+
|
|
101
|
+
# 4. Close the loop (required!)
|
|
102
|
+
/drive:unify
|
|
103
|
+
|
|
104
|
+
# 5. Check progress anytime
|
|
105
|
+
/drive:progress
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Staying Updated
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
npx drive-framework@latest
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
<details>
|
|
115
|
+
<summary><strong>Non-interactive Install</strong></summary>
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
npx drive-framework --global # Install to ~/.claude/
|
|
119
|
+
npx drive-framework --local # Install to ./.claude/
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
</details>
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## The Loop
|
|
127
|
+
|
|
128
|
+
Every unit of work follows this cycle:
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
┌─────────────────────────────────────┐
|
|
132
|
+
│ PLAN ──▶ APPLY ──▶ UNIFY │
|
|
133
|
+
│ │
|
|
134
|
+
│ Define Execute Reconcile │
|
|
135
|
+
│ work tasks & close │
|
|
136
|
+
└─────────────────────────────────────┘
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### PLAN
|
|
140
|
+
|
|
141
|
+
Create an executable plan with scope-adaptive ceremony:
|
|
142
|
+
|
|
143
|
+
- **Quick-fix** (1 file, 1 change) — Compressed: objective + 1 task + 1 AC. Full loop, minimal ceremony.
|
|
144
|
+
- **Standard** (2-5 tasks) — Full plan with boundaries, multiple ACs, verification checklist.
|
|
145
|
+
- **Complex** (6+ tasks) — Full plan + actively recommends splitting.
|
|
146
|
+
|
|
147
|
+
All plans include:
|
|
148
|
+
- **Objective** — What you're building and why
|
|
149
|
+
- **Acceptance Criteria** — Given/When/Then definitions of done
|
|
150
|
+
- **Tasks** — Specific actions with files, verification, done criteria
|
|
151
|
+
- **Boundaries** — What NOT to change (standard/complex only)
|
|
152
|
+
- **Coherence validation** — Auto-checked against project context before approval
|
|
153
|
+
|
|
154
|
+
### APPLY
|
|
155
|
+
|
|
156
|
+
Execute the approved plan with built-in quality enforcement:
|
|
157
|
+
- Tasks follow an **Execute/Qualify loop** — after execution, each task is independently verified against the spec and linked acceptance criteria before moving on
|
|
158
|
+
- **Escalation statuses** give nuance beyond pass/fail: DONE, DONE_WITH_CONCERNS, NEEDS_CONTEXT, BLOCKED
|
|
159
|
+
- Checkpoints pause for human input when needed — with **diagnostic failure routing** that classifies issues as intent, spec, or code before attempting fixes
|
|
160
|
+
- Anti-rationalization enforcement prevents false completion claims
|
|
161
|
+
|
|
162
|
+
### UNIFY
|
|
163
|
+
|
|
164
|
+
Close the loop (required!):
|
|
165
|
+
- Create SUMMARY.md documenting what was built
|
|
166
|
+
- Compare plan vs actual
|
|
167
|
+
- Record decisions and deferred issues
|
|
168
|
+
- Update STATE.md
|
|
169
|
+
|
|
170
|
+
**Never skip UNIFY.** Every plan needs closure. This is what separates structured development from chaos.
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## Commands
|
|
175
|
+
|
|
176
|
+
Drive provides 26 commands organized by purpose. Run `/drive:help` for the complete reference.
|
|
177
|
+
|
|
178
|
+
### Core Loop
|
|
179
|
+
|
|
180
|
+
| Command | What it does |
|
|
181
|
+
|---------|--------------|
|
|
182
|
+
| `/drive:init` | Initialize Drive with type-adapted requirements walkthrough |
|
|
183
|
+
| `/drive:plan [phase]` | Create an executable plan (auto-routes quick-fix/standard/complex) |
|
|
184
|
+
| `/drive:apply [path]` | Execute an approved plan |
|
|
185
|
+
| `/drive:unify [path]` | Reconcile and close the loop |
|
|
186
|
+
| `/drive:help` | Show command reference |
|
|
187
|
+
| `/drive:status` | Show loop position *(deprecated — use progress)* |
|
|
188
|
+
|
|
189
|
+
### Session
|
|
190
|
+
|
|
191
|
+
| Command | What it does |
|
|
192
|
+
|---------|--------------|
|
|
193
|
+
| `/drive:pause [reason]` | Create handoff for session break |
|
|
194
|
+
| `/drive:resume [path]` | Restore context and continue |
|
|
195
|
+
| `/drive:progress [context]` | Smart status + ONE next action |
|
|
196
|
+
| `/drive:handoff [context]` | Generate comprehensive handoff |
|
|
197
|
+
|
|
198
|
+
### Roadmap
|
|
199
|
+
|
|
200
|
+
| Command | What it does |
|
|
201
|
+
|---------|--------------|
|
|
202
|
+
| `/drive:add-phase <desc>` | Append phase to roadmap |
|
|
203
|
+
| `/drive:remove-phase <N>` | Remove future phase |
|
|
204
|
+
|
|
205
|
+
### Milestone
|
|
206
|
+
|
|
207
|
+
| Command | What it does |
|
|
208
|
+
|---------|--------------|
|
|
209
|
+
| `/drive:milestone <name>` | Create new milestone |
|
|
210
|
+
| `/drive:complete-milestone` | Archive and tag milestone |
|
|
211
|
+
| `/drive:discuss-milestone` | Articulate vision before starting |
|
|
212
|
+
|
|
213
|
+
### Pre-Planning
|
|
214
|
+
|
|
215
|
+
| Command | What it does |
|
|
216
|
+
|---------|--------------|
|
|
217
|
+
| `/drive:discuss <phase>` | Capture decisions before planning |
|
|
218
|
+
| `/drive:assumptions <phase>` | See Claude's intended approach |
|
|
219
|
+
| `/drive:discover <topic>` | Explore options before planning |
|
|
220
|
+
| `/drive:consider-issues` | Triage deferred issues |
|
|
221
|
+
|
|
222
|
+
### Research
|
|
223
|
+
|
|
224
|
+
| Command | What it does |
|
|
225
|
+
|---------|--------------|
|
|
226
|
+
| `/drive:research <topic>` | Deploy research agents |
|
|
227
|
+
| `/drive:research-phase <N>` | Research unknowns for a phase |
|
|
228
|
+
|
|
229
|
+
### Specialized
|
|
230
|
+
|
|
231
|
+
| Command | What it does |
|
|
232
|
+
|---------|--------------|
|
|
233
|
+
| `/drive:flows` | Configure skill requirements |
|
|
234
|
+
| `/drive:config` | View/modify Drive settings |
|
|
235
|
+
| `/drive:map-codebase` | Generate codebase overview |
|
|
236
|
+
|
|
237
|
+
### Quality
|
|
238
|
+
|
|
239
|
+
| Command | What it does |
|
|
240
|
+
|---------|--------------|
|
|
241
|
+
| `/drive:verify` | Guide manual acceptance testing |
|
|
242
|
+
| `/drive:plan-fix` | Plan fixes for UAT issues |
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## How It Works
|
|
247
|
+
|
|
248
|
+
### Project Structure
|
|
249
|
+
|
|
250
|
+
```
|
|
251
|
+
.drive/
|
|
252
|
+
├── PROJECT.md # Project context and requirements
|
|
253
|
+
├── ROADMAP.md # Phase breakdown and milestones
|
|
254
|
+
├── STATE.md # Loop position and session state
|
|
255
|
+
├── config.md # Optional integrations
|
|
256
|
+
├── SPECIAL-FLOWS.md # Optional skill requirements
|
|
257
|
+
└── phases/
|
|
258
|
+
├── 01-foundation/
|
|
259
|
+
│ ├── 01-01-PLAN.md
|
|
260
|
+
│ └── 01-01-SUMMARY.md
|
|
261
|
+
└── 02-features/
|
|
262
|
+
├── 02-01-PLAN.md
|
|
263
|
+
└── 02-01-SUMMARY.md
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
### State Management
|
|
267
|
+
|
|
268
|
+
**STATE.md** tracks:
|
|
269
|
+
- Current phase and plan
|
|
270
|
+
- Loop position (PLAN/APPLY/UNIFY markers)
|
|
271
|
+
- Session continuity (where you stopped, what's next)
|
|
272
|
+
- Accumulated decisions
|
|
273
|
+
- Blockers and deferred issues
|
|
274
|
+
|
|
275
|
+
When you resume work, `/drive:resume` reads STATE.md and suggests exactly ONE next action. No decision fatigue.
|
|
276
|
+
|
|
277
|
+
### PLAN.md Structure
|
|
278
|
+
|
|
279
|
+
```markdown
|
|
280
|
+
---
|
|
281
|
+
phase: 01-foundation
|
|
282
|
+
plan: 01
|
|
283
|
+
type: execute
|
|
284
|
+
autonomous: true
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
<objective>
|
|
288
|
+
Goal, Purpose, Output
|
|
289
|
+
</objective>
|
|
290
|
+
|
|
291
|
+
<context>
|
|
292
|
+
@-references to relevant files
|
|
293
|
+
</context>
|
|
294
|
+
|
|
295
|
+
<acceptance_criteria>
|
|
296
|
+
## AC-1: Feature Works
|
|
297
|
+
Given [precondition]
|
|
298
|
+
When [action]
|
|
299
|
+
Then [outcome]
|
|
300
|
+
</acceptance_criteria>
|
|
301
|
+
|
|
302
|
+
<tasks>
|
|
303
|
+
<task type="auto">
|
|
304
|
+
<name>Create login endpoint</name>
|
|
305
|
+
<files>src/api/auth/login.ts</files>
|
|
306
|
+
<action>Implementation details...</action>
|
|
307
|
+
<verify>curl command returns 200</verify>
|
|
308
|
+
<done>AC-1 satisfied</done>
|
|
309
|
+
</task>
|
|
310
|
+
</tasks>
|
|
311
|
+
|
|
312
|
+
<boundaries>
|
|
313
|
+
## DO NOT CHANGE
|
|
314
|
+
- database/migrations/*
|
|
315
|
+
- src/lib/auth.ts
|
|
316
|
+
</boundaries>
|
|
317
|
+
```
|
|
318
|
+
|
|
319
|
+
Every task has: files, action, verify, done. If you can't specify all four, the task is too vague.
|
|
320
|
+
|
|
321
|
+
### Vector Integration
|
|
322
|
+
|
|
323
|
+
Drive has a companion: **[Vector](https://github.com/accelerationguy/vector-core)** (Context Augmentation & Reinforcement Layer).
|
|
324
|
+
|
|
325
|
+
Vector is a dynamic rule injection system. Instead of bloating your context with static prompts, Vector loads rules just-in-time based on what you're doing:
|
|
326
|
+
|
|
327
|
+
| Trigger | Rules Loaded |
|
|
328
|
+
|---------|--------------|
|
|
329
|
+
| Working in `.drive/` directory | Drive domain activates |
|
|
330
|
+
| Writing code | DEVELOPMENT rules load |
|
|
331
|
+
| Managing projects | PROJECTS rules load |
|
|
332
|
+
|
|
333
|
+
**Drive-specific rules Vector enforces:**
|
|
334
|
+
- Loop enforcement (PLAN → APPLY → UNIFY — no shortcuts)
|
|
335
|
+
- Boundary protection (DO NOT CHANGE sections are real)
|
|
336
|
+
- State consistency checks at phase transitions
|
|
337
|
+
- Verification requirements for every task
|
|
338
|
+
- Skill blocking (required skills must load before APPLY)
|
|
339
|
+
|
|
340
|
+
The Drive domain contains 14 rules that govern structured AI development. They load when you're in a Drive project, disappear when you're not. Your context stays lean.
|
|
341
|
+
|
|
342
|
+
**Without Vector:** You'd need massive static prompts in every session.
|
|
343
|
+
**With Vector:** Rules activate when relevant, disappear when not.
|
|
344
|
+
|
|
345
|
+
---
|
|
346
|
+
|
|
347
|
+
## Quality Enforcement
|
|
348
|
+
|
|
349
|
+
Drive doesn't just plan and execute — it verifies. These systems work together to catch problems early, before they compound.
|
|
350
|
+
|
|
351
|
+
### Execute/Qualify Loop
|
|
352
|
+
|
|
353
|
+
Every task in the APPLY phase goes through an E/Q loop:
|
|
354
|
+
|
|
355
|
+
```
|
|
356
|
+
Execute → Report Status → Qualify Against Spec → (fix gaps) → Next Task
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
The **Qualify** step independently re-reads what was actually produced and compares it against the task spec and acceptance criteria. This catches drift, missing requirements, and false completions that would otherwise pass unnoticed until UNIFY — when it's too late.
|
|
360
|
+
|
|
361
|
+
### Escalation Statuses
|
|
362
|
+
|
|
363
|
+
Tasks report one of four statuses instead of binary pass/fail:
|
|
364
|
+
|
|
365
|
+
| Status | Meaning |
|
|
366
|
+
|---|---|
|
|
367
|
+
| **DONE** | Completed, no concerns |
|
|
368
|
+
| **DONE_WITH_CONCERNS** | Completed, but flagged doubts for review |
|
|
369
|
+
| **NEEDS_CONTEXT** | Can't complete — missing information |
|
|
370
|
+
| **BLOCKED** | Can't complete — structural impediment |
|
|
371
|
+
|
|
372
|
+
This surfaces uncertainty honestly instead of silently swallowing it.
|
|
373
|
+
|
|
374
|
+
### Diagnostic Failure Routing
|
|
375
|
+
|
|
376
|
+
When a checkpoint fails or UAT finds issues, Drive classifies the root cause before attempting any fix:
|
|
377
|
+
|
|
378
|
+
- **Intent issue** — Need to build something different → re-plan the phase
|
|
379
|
+
- **Spec issue** — Plan was missing/wrong → fix the spec before patching code
|
|
380
|
+
- **Code issue** — Plan was right, code doesn't match → standard fix-in-place
|
|
381
|
+
|
|
382
|
+
This prevents the common failure mode of patching code when the plan itself was wrong.
|
|
383
|
+
|
|
384
|
+
### Coherence Check
|
|
385
|
+
|
|
386
|
+
Before presenting any plan for approval, Drive automatically validates it against:
|
|
387
|
+
- PROJECT.md constraints
|
|
388
|
+
- Accumulated decisions in STATE.md
|
|
389
|
+
- Files modified in recent plans
|
|
390
|
+
- ROADMAP.md phase scope
|
|
391
|
+
|
|
392
|
+
Issues get flagged before approval. Clean plans pass silently with zero friction.
|
|
393
|
+
|
|
394
|
+
---
|
|
395
|
+
|
|
396
|
+
## Philosophy
|
|
397
|
+
|
|
398
|
+
### Acceptance-Driven Development (A.D.D.)
|
|
399
|
+
|
|
400
|
+
Acceptance criteria aren't afterthoughts — they're the foundation:
|
|
401
|
+
|
|
402
|
+
1. **AC defined before tasks** — Know what "done" means
|
|
403
|
+
2. **Tasks reference AC** — Every task links to AC-1, AC-2, etc.
|
|
404
|
+
3. **Verification required** — Every task needs a verify step
|
|
405
|
+
4. **BDD format** — Given/When/Then for testability
|
|
406
|
+
|
|
407
|
+
### In-Session Context
|
|
408
|
+
|
|
409
|
+
Why Drive minimizes subagents for development work:
|
|
410
|
+
|
|
411
|
+
| Issue | Impact |
|
|
412
|
+
|-------|--------|
|
|
413
|
+
| Launch cost | 2,000-3,000 tokens to spawn |
|
|
414
|
+
| Context gathering | Starts fresh, researches from scratch |
|
|
415
|
+
| Resynthesis | Results must be integrated back |
|
|
416
|
+
| Quality gap | ~70% compared to in-session work |
|
|
417
|
+
| Rework | Subagent output often needs cleanup |
|
|
418
|
+
|
|
419
|
+
**When Drive does use subagents:**
|
|
420
|
+
- **Discovery/exploration** — Codebase mapping, parallel exploration
|
|
421
|
+
- **Research** — Web searches, documentation gathering
|
|
422
|
+
|
|
423
|
+
For implementation, Drive keeps everything in-session with proper context management.
|
|
424
|
+
|
|
425
|
+
### Loop Integrity
|
|
426
|
+
|
|
427
|
+
The loop isn't optional:
|
|
428
|
+
|
|
429
|
+
```
|
|
430
|
+
PLAN ──▶ APPLY ──▶ UNIFY
|
|
431
|
+
✓ ✓ ✓ [Loop complete]
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
- **No orphan plans** — Every PLAN gets a SUMMARY
|
|
435
|
+
- **State reconciliation** — UNIFY catches drift
|
|
436
|
+
- **Decision logging** — Choices are recorded for future sessions
|
|
437
|
+
|
|
438
|
+
---
|
|
439
|
+
|
|
440
|
+
## Configuration
|
|
441
|
+
|
|
442
|
+
### Optional Integrations
|
|
443
|
+
|
|
444
|
+
Drive supports modular integrations configured in `.drive/config.md`:
|
|
445
|
+
|
|
446
|
+
| Integration | Purpose |
|
|
447
|
+
|-------------|---------|
|
|
448
|
+
| SonarQube | Code quality metrics and issues |
|
|
449
|
+
| *Future* | Linting, CI/CD, test runners |
|
|
450
|
+
|
|
451
|
+
### SPECIAL-FLOWS
|
|
452
|
+
|
|
453
|
+
For projects with specialized requirements, `.drive/SPECIAL-FLOWS.md` defines skills that must be loaded before execution:
|
|
454
|
+
|
|
455
|
+
```markdown
|
|
456
|
+
## Required Skills
|
|
457
|
+
|
|
458
|
+
| Skill | Work Type | Priority |
|
|
459
|
+
|-------|-----------|----------|
|
|
460
|
+
| /frontend-design | UI components | required |
|
|
461
|
+
| /revops-expert | Landing pages | required |
|
|
462
|
+
```
|
|
463
|
+
|
|
464
|
+
APPLY blocks until required skills are confirmed loaded.
|
|
465
|
+
|
|
466
|
+
---
|
|
467
|
+
|
|
468
|
+
## Troubleshooting
|
|
469
|
+
|
|
470
|
+
**Commands not found after install?**
|
|
471
|
+
- Restart Claude Code to reload slash commands
|
|
472
|
+
- Verify files exist in `~/.claude/commands/drive/` (global) or `./.claude/commands/drive/` (local)
|
|
473
|
+
|
|
474
|
+
**Commands not working as expected?**
|
|
475
|
+
- Run `/drive:help` to verify installation
|
|
476
|
+
- Re-run `npx drive-framework` to reinstall
|
|
477
|
+
|
|
478
|
+
**Loop position seems wrong?**
|
|
479
|
+
- Check `.drive/STATE.md` for current state
|
|
480
|
+
- Run `/drive:progress` for guided next action
|
|
481
|
+
|
|
482
|
+
**Resuming after a break?**
|
|
483
|
+
- Run `/drive:resume` — it reads state and handoffs automatically
|
|
484
|
+
|
|
485
|
+
---
|
|
486
|
+
|
|
487
|
+
## Comparison
|
|
488
|
+
|
|
489
|
+
### vs. Ad-hoc AI Coding
|
|
490
|
+
|
|
491
|
+
| Ad-hoc | Drive |
|
|
492
|
+
|--------|------|
|
|
493
|
+
| No structure | Explicit planning gates |
|
|
494
|
+
| State drifts | STATE.md tracks everything |
|
|
495
|
+
| No closure | Mandatory UNIFY |
|
|
496
|
+
| Decisions lost | Decisions logged |
|
|
497
|
+
|
|
498
|
+
### vs. GSD
|
|
499
|
+
|
|
500
|
+
Drive takes a different approach from GSD:
|
|
501
|
+
|
|
502
|
+
| Aspect | GSD | Drive |
|
|
503
|
+
|--------|-----|------|
|
|
504
|
+
| Execution | Parallel subagents | In-session context |
|
|
505
|
+
| Loop | Optional closure | Mandatory UNIFY |
|
|
506
|
+
| Criteria | Embedded in tasks | First-class AC section |
|
|
507
|
+
| Rules | Static prompts | Vector dynamic loading |
|
|
508
|
+
|
|
509
|
+
Same comprehensive coverage, different philosophy. Drive prioritizes quality over speed-for-speed's-sake. See [Drive-VS-GSD.md](Drive-VS-GSD.md) for full comparison.
|
|
510
|
+
|
|
511
|
+
### vs. Traditional Planning
|
|
512
|
+
|
|
513
|
+
| Traditional | Drive |
|
|
514
|
+
|-------------|------|
|
|
515
|
+
| Documentation-first | Execution-first |
|
|
516
|
+
| Human-readable specs | AI-executable prompts |
|
|
517
|
+
| Separate from code | Colocated in .drive/ |
|
|
518
|
+
|
|
519
|
+
---
|
|
520
|
+
|
|
521
|
+
## Ecosystem
|
|
522
|
+
|
|
523
|
+
Drive is part of a broader Claude Code extension ecosystem:
|
|
524
|
+
|
|
525
|
+
| System | What It Does | Link |
|
|
526
|
+
|--------|-------------|------|
|
|
527
|
+
| **Radar** | Multi-agent codebase auditing — diagnosis + controlled evolution | [GitHub](https://github.com/accelerationguy/radar) |
|
|
528
|
+
| **Momentum** | Builder's Automated State Engine — workspace lifecycle, health tracking, drift prevention | [GitHub](https://github.com/accelerationguy/base) |
|
|
529
|
+
| **Vector** | Context Augmentation & Reinforcement Layer — dynamic rules loaded JIT by intent | [GitHub](https://github.com/accelerationguy/vector) |
|
|
530
|
+
| **Drive** | Project orchestration — Plan, Apply, Unify Loop | You are here |
|
|
531
|
+
| **Ignition** | Typed project incubator — guided ideation through graduation into buildable projects | [GitHub](https://github.com/accelerationguy/ignition) |
|
|
532
|
+
| **Forge** | Skill builder — standardized syntax specs + guided workflows for Claude Code skills | [GitHub](https://github.com/accelerationguy/forge) |
|
|
533
|
+
| **CC Strategic AI** | Skool community — courses, community, live support | [Skool](https://accelerationguy.com) |
|
|
534
|
+
|
|
535
|
+
---
|
|
536
|
+
|
|
537
|
+
## License
|
|
538
|
+
|
|
539
|
+
MIT License. See [LICENSE](LICENSE) for details.
|
|
540
|
+
|
|
541
|
+
---
|
|
542
|
+
|
|
543
|
+
## Author
|
|
544
|
+
|
|
545
|
+
**Acceleration Guy** — [Chris AI Systems](https://github.com/accelerationguy)
|
|
546
|
+
|
|
547
|
+
Building tools for AI-assisted development.
|
|
548
|
+
|
|
549
|
+
---
|
|
550
|
+
|
|
551
|
+
<div align="center">
|
|
552
|
+
|
|
553
|
+
**Claude Code is powerful. Drive makes it reliable.**
|
|
554
|
+
|
|
555
|
+
</div>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 960 540">
|
|
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
|
+
.cyan { fill: #7dcfff; }
|
|
14
|
+
.green { fill: #9ece6a; }
|
|
15
|
+
.dim { fill: #565f89; }
|
|
16
|
+
.white { fill: #c0caf5; }
|
|
17
|
+
</style>
|
|
18
|
+
</defs>
|
|
19
|
+
|
|
20
|
+
<!-- Window -->
|
|
21
|
+
<rect class="terminal-border" width="960" height="540" rx="12"/>
|
|
22
|
+
<rect class="terminal-bg" x="1" y="1" width="958" height="538" rx="11"/>
|
|
23
|
+
|
|
24
|
+
<!-- Title bar -->
|
|
25
|
+
<rect class="title-bar" x="1" y="1" width="958" height="36" rx="11"/>
|
|
26
|
+
<rect class="terminal-bg" x="1" y="26" width="958" height="12"/>
|
|
27
|
+
|
|
28
|
+
<!-- Window buttons -->
|
|
29
|
+
<circle class="btn-red" cx="24" cy="19" r="7"/>
|
|
30
|
+
<circle class="btn-yellow" cx="48" cy="19" r="7"/>
|
|
31
|
+
<circle class="btn-green" cx="72" cy="19" r="7"/>
|
|
32
|
+
|
|
33
|
+
<!-- Title -->
|
|
34
|
+
<text x="480" y="24" text-anchor="middle" class="text dim" font-size="13">Terminal</text>
|
|
35
|
+
|
|
36
|
+
<!-- Content -->
|
|
37
|
+
<g transform="translate(32, 72)">
|
|
38
|
+
<!-- Prompt line -->
|
|
39
|
+
<text class="text prompt" font-size="15" y="0">~</text>
|
|
40
|
+
<text class="text dim" font-size="15" x="16" y="0">$</text>
|
|
41
|
+
<text class="text command" font-size="15" x="36" y="0">npx /cli</text>
|
|
42
|
+
|
|
43
|
+
<!-- Banner -->
|
|
44
|
+
<text class="text cyan" font-size="14" y="48" xml:space="preserve"> ██████╗ █████╗ ██╗ ██╗██╗</text>
|
|
45
|
+
<text class="text cyan" font-size="14" y="68" xml:space="preserve"> ██╔══██╗██╔══██╗██║ ██║██║</text>
|
|
46
|
+
<text class="text cyan" font-size="14" y="88" xml:space="preserve"> ██████╔╝███████║██║ ██║██║</text>
|
|
47
|
+
<text class="text cyan" font-size="14" y="108" xml:space="preserve"> ██╔═══╝ ██╔══██║██║ ██║██║</text>
|
|
48
|
+
<text class="text cyan" font-size="14" y="128" xml:space="preserve"> ██║ ██║ ██║╚██████╔╝███████╗</text>
|
|
49
|
+
<text class="text cyan" font-size="14" y="148" xml:space="preserve"> ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝</text>
|
|
50
|
+
|
|
51
|
+
<!-- Title and subtitle -->
|
|
52
|
+
<text class="text white" font-size="15" y="188"> Drive <tspan class="dim">v0.1.0</tspan></text>
|
|
53
|
+
<text class="text white" font-size="15" y="212"> Plan-Apply-Unify Loop for Claude Code</text>
|
|
54
|
+
|
|
55
|
+
<!-- Install output -->
|
|
56
|
+
<text class="text" font-size="15" y="260"><tspan class="green"> ✓</tspan><tspan class="white"> Installed commands/drive</tspan></text>
|
|
57
|
+
<text class="text" font-size="15" y="284"><tspan class="green"> ✓</tspan><tspan class="white"> Installed Accelerate Drive</tspan></text>
|
|
58
|
+
|
|
59
|
+
<!-- Done message -->
|
|
60
|
+
<text class="text" font-size="15" y="332"><tspan class="green"> Done!</tspan><tspan class="white"> Run </tspan><tspan class="cyan">/drive:help</tspan><tspan class="white"> to get started.</tspan></text>
|
|
61
|
+
|
|
62
|
+
<!-- New prompt -->
|
|
63
|
+
<text class="text prompt" font-size="15" y="380">~</text>
|
|
64
|
+
<text class="text dim" font-size="15" x="16" y="380">$</text>
|
|
65
|
+
<text class="text white" font-size="15" x="36" y="380">▌</text>
|
|
66
|
+
</g>
|
|
67
|
+
</svg>
|