@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,111 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: momentum
|
|
3
|
+
type: suite
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
category: workspace-orchestration
|
|
6
|
+
description: "Builder's Automated State Engine — workspace lifecycle management for Claude Code. Scaffold, audit, groom, and maintain AI builder workspaces. Manage data surfaces for structured context injection. Use when user mentions workspace setup, cleanup, organization, maintenance, grooming, auditing workspace health, surfaces, or Momentum."
|
|
7
|
+
allowed-tools: [Read, Write, Glob, Grep, Edit, Bash, Agent, AskUserQuestion]
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<activation>
|
|
11
|
+
|
|
12
|
+
## What
|
|
13
|
+
Momentum (Builder's Automated State Engine) manages the lifecycle of a Claude Code workspace. It scaffolds new workspaces, audits existing ones, runs structured grooming cycles, and maintains workspace health through automated drift detection.
|
|
14
|
+
|
|
15
|
+
## When to Use
|
|
16
|
+
- User says "momentum", "workspace", "cleanup", "organize", "audit my workspace", "groom", "surface", "create a surface"
|
|
17
|
+
- User wants to set up a new workspace from scratch
|
|
18
|
+
- User wants to optimize or clean up an existing workspace
|
|
19
|
+
- User asks about workspace health, staleness, or drift
|
|
20
|
+
- Session start hook detects overdue grooming
|
|
21
|
+
- User wants to review workspace evolution history
|
|
22
|
+
|
|
23
|
+
## Not For
|
|
24
|
+
- Project-level build orchestration (that's Drive)
|
|
25
|
+
- Session-level rule management (that's Vector)
|
|
26
|
+
- Code quality auditing (that's Radar)
|
|
27
|
+
- Skill/tool creation (that's Forge)
|
|
28
|
+
|
|
29
|
+
</activation>
|
|
30
|
+
|
|
31
|
+
<persona>
|
|
32
|
+
|
|
33
|
+
## Role
|
|
34
|
+
Workspace operations engineer. Knows the territory, tracks what's drifting, enforces maintenance cadence. Tactical, not theoretical.
|
|
35
|
+
|
|
36
|
+
## Style
|
|
37
|
+
- Direct, structured, checklist-driven
|
|
38
|
+
- Presents health dashboards and drift scores
|
|
39
|
+
- Asks focused questions during grooming (voice-friendly)
|
|
40
|
+
- Never skips areas — systematic coverage
|
|
41
|
+
- Recommends, doesn't dictate
|
|
42
|
+
|
|
43
|
+
## Expertise
|
|
44
|
+
- Workspace architecture and file organization
|
|
45
|
+
- Context document lifecycle (data surfaces, ACTIVE.md, BACKLOG.md)
|
|
46
|
+
- Tool and configuration management
|
|
47
|
+
- Drift detection and prevention patterns
|
|
48
|
+
- Claude Code ecosystem (Drive, Vector, Radar, Forge integration)
|
|
49
|
+
|
|
50
|
+
</persona>
|
|
51
|
+
|
|
52
|
+
<commands>
|
|
53
|
+
|
|
54
|
+
| Command | Description | Routes To |
|
|
55
|
+
|---------|------------|-----------|
|
|
56
|
+
| `/momentum:pulse` | Daily activation — workspace health briefing | `@~/.claude/momentum-framework/tasks/pulse.md` |
|
|
57
|
+
| `/momentum:groom` | Weekly maintenance cycle | `@~/.claude/momentum-framework/tasks/groom.md` |
|
|
58
|
+
| `/momentum:audit` | Deep workspace optimization | `@~/.claude/momentum-framework/tasks/audit.md` |
|
|
59
|
+
| `/momentum:scaffold` | Set up Momentum in a new workspace | `@~/.claude/momentum-framework/tasks/scaffold.md` |
|
|
60
|
+
| `/momentum:status` | Quick health check (one-liner) | `@~/.claude/momentum-framework/tasks/status.md` |
|
|
61
|
+
| `/momentum:history` | Workspace evolution timeline | `@~/.claude/momentum-framework/tasks/history.md` |
|
|
62
|
+
| `/momentum:audit-claude-md` | Audit CLAUDE.md, generate recommended version | `@~/.claude/momentum-framework/tasks/audit-claude-md.md` |
|
|
63
|
+
| `/momentum:vector-hygiene` | Vector domain maintenance and rule review | `@~/.claude/momentum-framework/tasks/vector-hygiene.md` |
|
|
64
|
+
| `/momentum:surface create` | Create a new data surface (guided) | `@~/.claude/momentum-framework/tasks/surface-create.md` |
|
|
65
|
+
| `/momentum:surface convert` | Convert markdown file to data surface | `@~/.claude/momentum-framework/tasks/surface-convert.md` |
|
|
66
|
+
| `/momentum:surface list` | Show all registered surfaces | `@~/.claude/momentum-framework/tasks/surface-list.md` |
|
|
67
|
+
|
|
68
|
+
</commands>
|
|
69
|
+
|
|
70
|
+
<routing>
|
|
71
|
+
|
|
72
|
+
## Always Load
|
|
73
|
+
- `@~/.claude/momentum-framework/context/momentum-principles.md` — Core workspace management principles
|
|
74
|
+
- `@~/.claude/momentum-framework/frameworks/audit-strategies.md` — Reusable audit strategy definitions
|
|
75
|
+
|
|
76
|
+
## Load on Command
|
|
77
|
+
- `@~/.claude/momentum-framework/tasks/pulse.md` — on `/momentum:pulse`
|
|
78
|
+
- `@~/.claude/momentum-framework/tasks/groom.md` — on `/momentum:groom`
|
|
79
|
+
- `@~/.claude/momentum-framework/tasks/audit.md` — on `/momentum:audit`
|
|
80
|
+
- `@~/.claude/momentum-framework/tasks/scaffold.md` — on `/momentum:scaffold`
|
|
81
|
+
- `@~/.claude/momentum-framework/tasks/status.md` — on `/momentum:status`
|
|
82
|
+
- `@~/.claude/momentum-framework/tasks/history.md` — on `/momentum:history`
|
|
83
|
+
- `@~/.claude/momentum-framework/tasks/vector-hygiene.md` — on `/momentum:vector-hygiene`
|
|
84
|
+
- `@~/.claude/momentum-framework/tasks/surface-create.md` — on `/momentum:surface create`
|
|
85
|
+
- `@~/.claude/momentum-framework/tasks/surface-convert.md` — on `/momentum:surface convert`
|
|
86
|
+
- `@~/.claude/momentum-framework/tasks/surface-list.md` — on `/momentum:surface list`
|
|
87
|
+
|
|
88
|
+
## Load on Demand
|
|
89
|
+
- `@~/.claude/momentum-framework/templates/workspace-json.md` — When generating workspace.json
|
|
90
|
+
- `@~/.claude/momentum-framework/templates/state-md.md` — When generating STATE.md
|
|
91
|
+
- `@~/.claude/momentum-framework/frameworks/satellite-registration.md` — When handling Drive project registration
|
|
92
|
+
|
|
93
|
+
</routing>
|
|
94
|
+
|
|
95
|
+
<greeting>
|
|
96
|
+
|
|
97
|
+
Momentum loaded. Builder's Automated State Engine.
|
|
98
|
+
|
|
99
|
+
Available commands:
|
|
100
|
+
- `/momentum:pulse` — What's the state of my workspace?
|
|
101
|
+
- `/momentum:groom` — Run weekly maintenance
|
|
102
|
+
- `/momentum:audit` — Deep optimization session
|
|
103
|
+
- `/momentum:scaffold` — Set up Momentum in a new workspace
|
|
104
|
+
- `/momentum:status` — Quick health check
|
|
105
|
+
- `/momentum:history` — Workspace evolution timeline
|
|
106
|
+
- `/momentum:surface create` — Create a new data surface
|
|
107
|
+
- `/momentum:surface list` — Show registered surfaces
|
|
108
|
+
|
|
109
|
+
What do you need?
|
|
110
|
+
|
|
111
|
+
</greeting>
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Structured weekly maintenance cycle. Walk through each workspace area, review with operator, enforce backlog time-based rules, graduate ready items, and log the groom.
|
|
3
|
+
</purpose>
|
|
4
|
+
|
|
5
|
+
<user-story>
|
|
6
|
+
As an AI builder, I want a guided workspace maintenance session, so that my context documents stay current, my backlog items graduate when ready, and my workspace doesn't drift.
|
|
7
|
+
</user-story>
|
|
8
|
+
|
|
9
|
+
<when-to-use>
|
|
10
|
+
- Weekly (on configured groom day)
|
|
11
|
+
- When pulse reports overdue grooming
|
|
12
|
+
- When user says "momentum groom", "let's groom", "workspace maintenance"
|
|
13
|
+
- Entry point routes here via /momentum:groom
|
|
14
|
+
</when-to-use>
|
|
15
|
+
|
|
16
|
+
<steps>
|
|
17
|
+
|
|
18
|
+
<step name="assess_scope" priority="first">
|
|
19
|
+
Determine what needs grooming.
|
|
20
|
+
|
|
21
|
+
1. Read `.accel/momentum/workspace.json` manifest
|
|
22
|
+
2. Read `.accel/momentum/STATE.md` for last groom dates per area
|
|
23
|
+
3. Identify which areas are due for grooming (past their cadence)
|
|
24
|
+
4. Sort by staleness (most overdue first)
|
|
25
|
+
5. Present: "Groom session starting. {N} areas due for review: {list}. Estimated time: {N*5} minutes."
|
|
26
|
+
|
|
27
|
+
**Wait for operator confirmation before proceeding.**
|
|
28
|
+
</step>
|
|
29
|
+
|
|
30
|
+
<step name="groom_active">
|
|
31
|
+
Review ACTIVE.md — the working memory for projects and tasks.
|
|
32
|
+
|
|
33
|
+
1. Read `.accel/momentum/ACTIVE.md`
|
|
34
|
+
2. Present summary: "{N} projects, {N} tasks, last updated {date}"
|
|
35
|
+
3. For each project: "Still active? Status changed? Next action current?"
|
|
36
|
+
4. For each task in TASKS section: "Done? Still in progress? Blocked?"
|
|
37
|
+
5. Close completed tasks (move to DONE/CLOSED with outcome + date)
|
|
38
|
+
6. Ask: "Anything new to add?"
|
|
39
|
+
7. Update timestamp
|
|
40
|
+
|
|
41
|
+
Voice-friendly: walk through one entry at a time, wait for response.
|
|
42
|
+
</step>
|
|
43
|
+
|
|
44
|
+
<step name="groom_backlog">
|
|
45
|
+
Review BACKLOG.md — enforce time-based rules AND handle graduation.
|
|
46
|
+
|
|
47
|
+
**Time-based enforcement:**
|
|
48
|
+
1. For each item, check Added date against review-by threshold:
|
|
49
|
+
- High priority: 7 days
|
|
50
|
+
- Medium priority: 14 days
|
|
51
|
+
- Low priority: 30 days
|
|
52
|
+
2. Items past review-by → surface: "These items need a decision: {list}"
|
|
53
|
+
3. Items past staleness (2x review-by) → "Auto-archiving: {list} (past {N} days without action)"
|
|
54
|
+
4. Process operator decisions on each flagged item
|
|
55
|
+
|
|
56
|
+
**Graduation check:**
|
|
57
|
+
5. For each remaining item, ask: "Ready to work on any of these?"
|
|
58
|
+
6. If yes — determine destination:
|
|
59
|
+
- **As a TASK:** Item is bounded, standalone work. Move to ACTIVE.md → TASKS section.
|
|
60
|
+
Format: `### {Task Name}` with Status, Next, Blocked, Notes fields.
|
|
61
|
+
- **As a PROJECT:** Item is complex enough to warrant its own project entry.
|
|
62
|
+
Move to ACTIVE.md under appropriate priority section with full project format.
|
|
63
|
+
- **Stay in backlog:** Not ready yet. Keep with updated review-by date.
|
|
64
|
+
7. For graduated items: remove from BACKLOG.md, add to ACTIVE.md in correct section
|
|
65
|
+
8. Update BACKLOG.md timestamp
|
|
66
|
+
|
|
67
|
+
**The graduation question is explicit every groom.** Items don't graduate silently — the operator decides.
|
|
68
|
+
</step>
|
|
69
|
+
|
|
70
|
+
<step name="groom_directories">
|
|
71
|
+
Review directory-type areas (projects/, clients/, tools/).
|
|
72
|
+
|
|
73
|
+
For each directory area due for grooming:
|
|
74
|
+
1. List contents
|
|
75
|
+
2. Flag anything that looks orphaned or new since last groom
|
|
76
|
+
3. Ask: "Anything to archive, delete, or reclassify?"
|
|
77
|
+
4. Execute approved changes
|
|
78
|
+
</step>
|
|
79
|
+
|
|
80
|
+
<step name="groom_satellites">
|
|
81
|
+
Review Drive satellite project health.
|
|
82
|
+
|
|
83
|
+
1. Read `.accel/momentum/workspace.json` — collect all satellite entries where `groom_check: true`
|
|
84
|
+
2. If no satellites have `groom_check: true` → skip this step silently
|
|
85
|
+
3. For each eligible satellite:
|
|
86
|
+
a. Read its STATE.md at the path in `satellite.state` (relative to workspace root)
|
|
87
|
+
b. If STATE.md is missing or unreadable → note as "⚠️ {name}: STATE.md not found"
|
|
88
|
+
c. Get last activity timestamp:
|
|
89
|
+
- PRIMARY: read `satellite.last_activity` from workspace.json entry (ISO timestamp written by session-start hook from drive.json)
|
|
90
|
+
- FALLBACK: if `last_activity` not present in workspace.json, parse "Last activity" line from the satellite's STATE.md
|
|
91
|
+
- If neither available → note as "⚠️ {name}: cannot determine last activity"
|
|
92
|
+
d. Parse "Loop Position" section from STATE.md → extract PLAN/APPLY/UNIFY markers (✓ = done, ○ = pending)
|
|
93
|
+
e. Evaluate health criteria:
|
|
94
|
+
- **STUCK LOOP**: Loop shows PLAN ✓ APPLY ○ or PLAN ✓ APPLY ✓ UNIFY ○, AND last activity > 7 days ago
|
|
95
|
+
- **ABANDONED PHASE**: Last activity > 14 days ago AND milestone status is not COMPLETE
|
|
96
|
+
- **MILESTONE DRIFT**: Milestone marked COMPLETE, loop shows ○ ○ ○ (no new milestone started), AND last activity > 14 days ago
|
|
97
|
+
4. Collect all issues across satellites
|
|
98
|
+
5. If issues found: surface as:
|
|
99
|
+
```
|
|
100
|
+
⚠️ Satellite health issues:
|
|
101
|
+
- {satellite-name}: {issue type} (last active: {date})
|
|
102
|
+
```
|
|
103
|
+
6. If no issues: output single line "Satellites: all healthy ({N} checked)"
|
|
104
|
+
|
|
105
|
+
**Report only — do NOT auto-fix.** Operator decides what to do with flagged satellites.
|
|
106
|
+
</step>
|
|
107
|
+
|
|
108
|
+
<step name="groom_system">
|
|
109
|
+
Review system layer areas (hooks, commands, skills, Vector).
|
|
110
|
+
|
|
111
|
+
1. Quick scan for obvious dead items
|
|
112
|
+
2. Only flag if something clearly wrong
|
|
113
|
+
3. Ask: "Any system changes to note?"
|
|
114
|
+
4. If Vector hygiene is enabled (workspace.json `vector_hygiene.proactive: true`):
|
|
115
|
+
- Check `.vector/staging/` for pending proposals
|
|
116
|
+
- Check rule timestamps for staleness
|
|
117
|
+
- Surface: "{N} staged proposals, {N} stale rules — run /momentum:vector-hygiene?"
|
|
118
|
+
</step>
|
|
119
|
+
|
|
120
|
+
<step name="log_groom">
|
|
121
|
+
Record the groom session.
|
|
122
|
+
|
|
123
|
+
1. Update `.accel/momentum/STATE.md` with new timestamps for all groomed areas
|
|
124
|
+
2. Reset drift score
|
|
125
|
+
3. Write groom summary to `.accel/momentum/grooming/{YYYY}-W{NN}.md`:
|
|
126
|
+
```markdown
|
|
127
|
+
# Groom Summary — Week {NN}, {YYYY}
|
|
128
|
+
|
|
129
|
+
**Date:** {YYYY-MM-DD}
|
|
130
|
+
**Areas Reviewed:** {list}
|
|
131
|
+
**Drift Score:** {before} → 0
|
|
132
|
+
|
|
133
|
+
## Changes
|
|
134
|
+
- {what changed}
|
|
135
|
+
|
|
136
|
+
## Graduated from Backlog
|
|
137
|
+
- {item} → ACTIVE.md TASKS / PROJECT
|
|
138
|
+
|
|
139
|
+
## Archived / Killed
|
|
140
|
+
- {item} (reason)
|
|
141
|
+
|
|
142
|
+
## Next Groom Due
|
|
143
|
+
{YYYY-MM-DD}
|
|
144
|
+
```
|
|
145
|
+
4. Report: "Groom complete. Drift score: 0. Next groom due: {date}."
|
|
146
|
+
</step>
|
|
147
|
+
|
|
148
|
+
</steps>
|
|
149
|
+
|
|
150
|
+
<output>
|
|
151
|
+
Updated workspace state. All due areas reviewed and current. Backlog time-based rules enforced. Ready items graduated. Groom summary logged.
|
|
152
|
+
</output>
|
|
153
|
+
|
|
154
|
+
<acceptance-criteria>
|
|
155
|
+
- [ ] All overdue areas reviewed with operator
|
|
156
|
+
- [ ] ACTIVE.md and BACKLOG.md timestamps updated
|
|
157
|
+
- [ ] Backlog time-based rules enforced (review-by, staleness)
|
|
158
|
+
- [ ] Graduation question asked explicitly for backlog items
|
|
159
|
+
- [ ] Graduated items properly moved to ACTIVE.md (TASKS or PROJECT)
|
|
160
|
+
- [ ] STATE.md updated with new groom date
|
|
161
|
+
- [ ] Groom summary written to grooming/ directory
|
|
162
|
+
- [ ] Drift score reset to 0
|
|
163
|
+
- [ ] Operator confirmed completion of each area
|
|
164
|
+
</acceptance-criteria>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"last_updated": null,
|
|
4
|
+
"hook_active": true,
|
|
5
|
+
"operator": {
|
|
6
|
+
"entity_id": null,
|
|
7
|
+
"name": null
|
|
8
|
+
},
|
|
9
|
+
"deep_why": {
|
|
10
|
+
"layers": [
|
|
11
|
+
{
|
|
12
|
+
"level": 1,
|
|
13
|
+
"question": "Why do you do what you do?",
|
|
14
|
+
"answer": null
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"level": 2,
|
|
18
|
+
"question": "But why does that matter?",
|
|
19
|
+
"answer": null
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"level": 3,
|
|
23
|
+
"question": "But why?",
|
|
24
|
+
"answer": null
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"level": 4,
|
|
28
|
+
"question": "Why does that drive you more than anything else?",
|
|
29
|
+
"answer": null
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"level": 5,
|
|
33
|
+
"question": "If everything else was stripped away, what's left?",
|
|
34
|
+
"answer": null
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"statement": null,
|
|
38
|
+
"completed_at": null
|
|
39
|
+
},
|
|
40
|
+
"north_star": {
|
|
41
|
+
"metric": null,
|
|
42
|
+
"timeframe": null,
|
|
43
|
+
"rationale": null,
|
|
44
|
+
"completed_at": null
|
|
45
|
+
},
|
|
46
|
+
"key_values": {
|
|
47
|
+
"values": [],
|
|
48
|
+
"completed_at": null
|
|
49
|
+
},
|
|
50
|
+
"elevator_pitch": {
|
|
51
|
+
"pitch": null,
|
|
52
|
+
"floors": {
|
|
53
|
+
"floor_1": null,
|
|
54
|
+
"floor_2": null,
|
|
55
|
+
"floor_3": null,
|
|
56
|
+
"floor_4": null
|
|
57
|
+
},
|
|
58
|
+
"completed_at": null
|
|
59
|
+
},
|
|
60
|
+
"surface_vision": {
|
|
61
|
+
"scenes": [],
|
|
62
|
+
"summary": null,
|
|
63
|
+
"completed_at": null
|
|
64
|
+
},
|
|
65
|
+
"extensions": {}
|
|
66
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workspace": "{workspace-name}",
|
|
3
|
+
"created": "{YYYY-MM-DD}",
|
|
4
|
+
"groom_cadence": "weekly",
|
|
5
|
+
"groom_day": "friday",
|
|
6
|
+
"areas": {
|
|
7
|
+
"working-memory": {
|
|
8
|
+
"type": "working-memory",
|
|
9
|
+
"description": "Core context documents that AI reads every session",
|
|
10
|
+
"paths": [
|
|
11
|
+
".accel/momentum/data/active.json",
|
|
12
|
+
".accel/momentum/data/backlog.json",
|
|
13
|
+
".accel/momentum/data/projects.json"
|
|
14
|
+
],
|
|
15
|
+
"groom": "weekly",
|
|
16
|
+
"audit": {
|
|
17
|
+
"strategy": "staleness",
|
|
18
|
+
"config": {
|
|
19
|
+
"threshold_days": 7
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"projects": {
|
|
24
|
+
"type": "directory",
|
|
25
|
+
"description": "Project documentation and planning",
|
|
26
|
+
"paths": [
|
|
27
|
+
"projects/"
|
|
28
|
+
],
|
|
29
|
+
"groom": "monthly",
|
|
30
|
+
"audit": {
|
|
31
|
+
"strategy": "classify",
|
|
32
|
+
"config": {
|
|
33
|
+
"states": ["active", "archive", "delete"],
|
|
34
|
+
"archive_path": "projects/_archive/"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"tools": {
|
|
39
|
+
"type": "config-cross-ref",
|
|
40
|
+
"description": "MCP servers, personal tools, shareable tools",
|
|
41
|
+
"paths": [
|
|
42
|
+
"tools/"
|
|
43
|
+
],
|
|
44
|
+
"groom": "monthly",
|
|
45
|
+
"audit": {
|
|
46
|
+
"strategy": "cross-reference",
|
|
47
|
+
"config": {
|
|
48
|
+
"config_file": ".mcp.json"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"system-layer": {
|
|
53
|
+
"type": "system-layer",
|
|
54
|
+
"description": "Claude Code commands, hooks, skills, Vector domains",
|
|
55
|
+
"paths": [
|
|
56
|
+
".claude/commands/",
|
|
57
|
+
".claude/hooks/",
|
|
58
|
+
".claude/skills/",
|
|
59
|
+
".vector/"
|
|
60
|
+
],
|
|
61
|
+
"groom": "monthly",
|
|
62
|
+
"audit": {
|
|
63
|
+
"strategy": "dead-code",
|
|
64
|
+
"config": {
|
|
65
|
+
"reference_check": true
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"vector_hygiene": {
|
|
71
|
+
"proactive": true,
|
|
72
|
+
"cadence": "monthly",
|
|
73
|
+
"staleness_threshold_days": 60,
|
|
74
|
+
"max_rules_per_domain": 15,
|
|
75
|
+
"last_run": null
|
|
76
|
+
},
|
|
77
|
+
"surfaces": {
|
|
78
|
+
"active": {
|
|
79
|
+
"file": "data/active.json",
|
|
80
|
+
"description": "Active work items, projects, and tasks",
|
|
81
|
+
"hook": true,
|
|
82
|
+
"silent": true,
|
|
83
|
+
"schema": {
|
|
84
|
+
"id_prefix": "ACT",
|
|
85
|
+
"required_fields": ["title", "status", "priority"],
|
|
86
|
+
"priority_levels": ["urgent", "high", "medium", "ongoing", "deferred"],
|
|
87
|
+
"status_values": ["active", "blocked", "deferred", "done", "paused"]
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"backlog": {
|
|
91
|
+
"file": "data/backlog.json",
|
|
92
|
+
"description": "Future work queue, ideas, and deferred tasks",
|
|
93
|
+
"hook": true,
|
|
94
|
+
"silent": true,
|
|
95
|
+
"schema": {
|
|
96
|
+
"id_prefix": "BL",
|
|
97
|
+
"required_fields": ["title", "priority"],
|
|
98
|
+
"priority_levels": ["high", "medium", "low"],
|
|
99
|
+
"time_rules": {
|
|
100
|
+
"review_by": {
|
|
101
|
+
"high": 7,
|
|
102
|
+
"medium": 14,
|
|
103
|
+
"low": 30
|
|
104
|
+
},
|
|
105
|
+
"staleness_multiplier": 2
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"satellites": {}
|
|
111
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 740 480" width="740" height="480">
|
|
2
|
+
<!-- Window shadow -->
|
|
3
|
+
<rect x="4" y="8" width="736" height="472" rx="12" fill="rgba(0,0,0,0.4)"/>
|
|
4
|
+
|
|
5
|
+
<!-- Window background -->
|
|
6
|
+
<rect width="736" height="472" rx="12" fill="#13131f"/>
|
|
7
|
+
|
|
8
|
+
<!-- Title bar -->
|
|
9
|
+
<rect width="736" height="40" rx="12" fill="#1e1e30"/>
|
|
10
|
+
<rect y="28" width="736" height="12" fill="#1e1e30"/>
|
|
11
|
+
|
|
12
|
+
<!-- Traffic lights -->
|
|
13
|
+
<circle cx="24" cy="20" r="7" fill="#ff5f57"/>
|
|
14
|
+
<circle cx="48" cy="20" r="7" fill="#febc2e"/>
|
|
15
|
+
<circle cx="72" cy="20" r="7" fill="#28c840"/>
|
|
16
|
+
|
|
17
|
+
<!-- Terminal label -->
|
|
18
|
+
<text x="368" y="25" text-anchor="middle" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="12" fill="#4a4a6a">Terminal</text>
|
|
19
|
+
|
|
20
|
+
<!-- Prompt line -->
|
|
21
|
+
<text x="24" y="68" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
22
|
+
<tspan fill="#4a4a6a">~ $ </tspan><tspan fill="#c0c0d8">npx @accel/cli --all</tspan>
|
|
23
|
+
</text>
|
|
24
|
+
|
|
25
|
+
<!-- Momentum logo - cyan -->
|
|
26
|
+
<text x="24" y="96" fill="#00d8ff" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13" xml:space="preserve"> ██████╗ █████╗ ███████╗███████╗</text>
|
|
27
|
+
<text x="24" y="113" fill="#00d8ff" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13" xml:space="preserve"> ██╔══██╗██╔══██╗██╔════╝██╔════╝</text>
|
|
28
|
+
<text x="24" y="130" fill="#00d8ff" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13" xml:space="preserve"> ██████╔╝███████║███████╗█████╗ </text>
|
|
29
|
+
<text x="24" y="147" fill="#00cfef" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13" xml:space="preserve"> ██╔══██╗██╔══██║╚════██║██╔══╝ </text>
|
|
30
|
+
<text x="24" y="164" fill="#00cfef" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13" xml:space="preserve"> ██████╔╝██║ ██║███████║███████╗</text>
|
|
31
|
+
<text x="24" y="181" fill="#0099bb" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13" xml:space="preserve"> ╚═════╝ ╚═╝ ╚═╝╚══════╝╚══════╝</text>
|
|
32
|
+
|
|
33
|
+
<!-- Name + version -->
|
|
34
|
+
<text x="24" y="207" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
35
|
+
<tspan fill="#00d8ff" font-weight="bold">Momentum</tspan><tspan fill="#4a4a6a"> v2.3.0</tspan>
|
|
36
|
+
</text>
|
|
37
|
+
<text x="24" y="224" fill="#7b8cde" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">Builder's Automated State Engine for Claude Code</text>
|
|
38
|
+
|
|
39
|
+
<!-- Divider -->
|
|
40
|
+
<line x1="24" y1="238" x2="712" y2="238" stroke="#1e1e30" stroke-width="1.5"/>
|
|
41
|
+
|
|
42
|
+
<!-- Global install -->
|
|
43
|
+
<text x="24" y="258" fill="#00d8ff" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">Installing commands to ~/.claude</text>
|
|
44
|
+
<text x="24" y="276" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
45
|
+
<tspan fill="#4dde80"> +</tspan><tspan fill="#c0c0d8"> commands/momentum/</tspan>
|
|
46
|
+
<tspan fill="#4a4a6a"> (11 slash commands)</tspan>
|
|
47
|
+
</text>
|
|
48
|
+
<text x="24" y="293" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
49
|
+
<tspan fill="#4dde80"> +</tspan><tspan fill="#c0c0d8"> skills/momentum/</tspan>
|
|
50
|
+
<tspan fill="#4a4a6a"> (entry point)</tspan>
|
|
51
|
+
</text>
|
|
52
|
+
<text x="24" y="310" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
53
|
+
<tspan fill="#4dde80"> +</tspan><tspan fill="#c0c0d8"> accelerate-momentum/</tspan>
|
|
54
|
+
<tspan fill="#4a4a6a"> (tasks, templates, hooks)</tspan>
|
|
55
|
+
</text>
|
|
56
|
+
|
|
57
|
+
<!-- Workspace install -->
|
|
58
|
+
<text x="24" y="332" fill="#00d8ff" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">Installing workspace layer to .accel/momentum/</text>
|
|
59
|
+
<text x="24" y="350" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
60
|
+
<tspan fill="#4dde80"> +</tspan><tspan fill="#c0c0d8"> .accel/momentum/data/</tspan>
|
|
61
|
+
<tspan fill="#4a4a6a"> .accel/momentum/hooks/ .accel/momentum/momentum-mcp/ .accel/momentum/vector-mcp/</tspan>
|
|
62
|
+
</text>
|
|
63
|
+
<text x="24" y="367" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
64
|
+
<tspan fill="#4dde80"> +</tspan><tspan fill="#c0c0d8"> .claude/hooks/</tspan>
|
|
65
|
+
<tspan fill="#4a4a6a"> (pulse, PSMM, satellite) .mcp.json</tspan>
|
|
66
|
+
</text>
|
|
67
|
+
|
|
68
|
+
<!-- Done line -->
|
|
69
|
+
<text x="24" y="395" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
70
|
+
<tspan fill="#4dde80">Done!</tspan><tspan fill="#c0c0d8"> Run </tspan><tspan fill="#00d8ff">/momentum:scaffold</tspan><tspan fill="#c0c0d8"> to complete workspace setup.</tspan>
|
|
71
|
+
</text>
|
|
72
|
+
|
|
73
|
+
<!-- Cursor -->
|
|
74
|
+
<text x="24" y="425" font-family="'SF Mono','Fira Code','Courier New',monospace" font-size="13">
|
|
75
|
+
<tspan fill="#4a4a6a">~ $ </tspan><tspan fill="#00d8ff">▊</tspan>
|
|
76
|
+
</text>
|
|
77
|
+
</svg>
|