@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,241 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Guide manual user acceptance testing of recently built features. Extract deliverables from SUMMARY.md, generate test checklist, guide user through each test, log issues to phase-scoped file.
|
|
3
|
+
|
|
4
|
+
The USER performs all testing — Claude generates the checklist, guides the process, and captures issues.
|
|
5
|
+
</purpose>
|
|
6
|
+
|
|
7
|
+
<template>
|
|
8
|
+
@src/templates/UAT-ISSUES.md
|
|
9
|
+
</template>
|
|
10
|
+
|
|
11
|
+
<process>
|
|
12
|
+
|
|
13
|
+
<step name="identify">
|
|
14
|
+
**Determine what to test:**
|
|
15
|
+
|
|
16
|
+
If $ARGUMENTS provided:
|
|
17
|
+
- Parse as phase number (e.g., "4") or plan number (e.g., "04-02")
|
|
18
|
+
- Find corresponding SUMMARY.md file(s)
|
|
19
|
+
|
|
20
|
+
If no arguments:
|
|
21
|
+
- Find most recently modified SUMMARY.md
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
find .drive/phases -name "*SUMMARY.md" -type f -exec ls -lt {} + | head -5
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Read the SUMMARY.md to understand what was built.
|
|
28
|
+
|
|
29
|
+
Key extraction points:
|
|
30
|
+
- Acceptance Criteria results
|
|
31
|
+
- Files created/modified
|
|
32
|
+
- Deviations (if any)
|
|
33
|
+
</step>
|
|
34
|
+
|
|
35
|
+
<step name="extract">
|
|
36
|
+
**Extract testable deliverables from SUMMARY.md:**
|
|
37
|
+
|
|
38
|
+
Parse for:
|
|
39
|
+
1. **Acceptance Criteria** - Each AC becomes a test item
|
|
40
|
+
2. **Files Created/Modified** - What changed
|
|
41
|
+
3. **User-facing changes** - UI, workflows, interactions
|
|
42
|
+
|
|
43
|
+
Focus on USER-OBSERVABLE outcomes, not implementation details.
|
|
44
|
+
|
|
45
|
+
Map AC to tests:
|
|
46
|
+
- AC-1: "Feature X exists" → User can see/use Feature X
|
|
47
|
+
- AC-2: "Behavior Y works" → User can trigger and verify Behavior Y
|
|
48
|
+
</step>
|
|
49
|
+
|
|
50
|
+
<step name="generate">
|
|
51
|
+
**Generate manual test checklist:**
|
|
52
|
+
|
|
53
|
+
Create structured test plan:
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
# User Acceptance Test: [Plan Name]
|
|
57
|
+
|
|
58
|
+
**Scope:** [What was built - from SUMMARY.md]
|
|
59
|
+
**Source:** [path to SUMMARY.md]
|
|
60
|
+
**Testing:** Manual user validation
|
|
61
|
+
|
|
62
|
+
## Pre-flight
|
|
63
|
+
- [ ] Application builds and runs without errors
|
|
64
|
+
- [ ] Application launches to expected state
|
|
65
|
+
|
|
66
|
+
## Acceptance Criteria Tests
|
|
67
|
+
|
|
68
|
+
### AC-1: [Criteria from plan]
|
|
69
|
+
**What to test:** [User-observable behavior]
|
|
70
|
+
**Steps:**
|
|
71
|
+
1. [Specific action to take]
|
|
72
|
+
2. [What to look for]
|
|
73
|
+
3. [Expected result]
|
|
74
|
+
|
|
75
|
+
### AC-2: [Criteria from plan]
|
|
76
|
+
...
|
|
77
|
+
|
|
78
|
+
## Edge Cases
|
|
79
|
+
- [ ] [Relevant edge case based on feature]
|
|
80
|
+
- [ ] [Another edge case]
|
|
81
|
+
|
|
82
|
+
## Visual/UX Check
|
|
83
|
+
- [ ] UI matches expected design
|
|
84
|
+
- [ ] No visual glitches or layout issues
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Present this checklist to user.
|
|
88
|
+
</step>
|
|
89
|
+
|
|
90
|
+
<step name="guide">
|
|
91
|
+
**Guide user through each test:**
|
|
92
|
+
|
|
93
|
+
For each test item, use AskUserQuestion:
|
|
94
|
+
- header: "[AC-N or Feature name]"
|
|
95
|
+
- question: "[Test description] - Did this work as expected?"
|
|
96
|
+
- options:
|
|
97
|
+
- "Pass" — Works correctly
|
|
98
|
+
- "Fail" — Doesn't work as expected
|
|
99
|
+
- "Partial" — Works but with issues
|
|
100
|
+
- "Skip" — Can't test right now
|
|
101
|
+
|
|
102
|
+
**If Pass:** Move to next test
|
|
103
|
+
|
|
104
|
+
**If Fail or Partial:**
|
|
105
|
+
Follow up with AskUserQuestion:
|
|
106
|
+
- header: "Issue details"
|
|
107
|
+
- question: "What went wrong?"
|
|
108
|
+
- options:
|
|
109
|
+
- "Crashes/errors" — Application error or exception
|
|
110
|
+
- "Wrong behavior" — Does something unexpected
|
|
111
|
+
- "Missing feature" — Expected functionality not present
|
|
112
|
+
- "UI/visual issue" — Looks wrong but functions
|
|
113
|
+
- "Let me describe" — Free-form description needed
|
|
114
|
+
</step>
|
|
115
|
+
|
|
116
|
+
<step name="collect">
|
|
117
|
+
**Collect and categorize issues:**
|
|
118
|
+
|
|
119
|
+
For each failed/partial test, gather:
|
|
120
|
+
- Feature/AC affected
|
|
121
|
+
- What went wrong (from user input)
|
|
122
|
+
- Severity:
|
|
123
|
+
- **Blocker** — Can't use the feature at all
|
|
124
|
+
- **Major** — Feature works but significant problem
|
|
125
|
+
- **Minor** — Small issue, feature still usable
|
|
126
|
+
- **Cosmetic** — Visual only, no functional impact
|
|
127
|
+
</step>
|
|
128
|
+
|
|
129
|
+
<step name="log">
|
|
130
|
+
**Log issues to phase-scoped file:**
|
|
131
|
+
|
|
132
|
+
If any issues found:
|
|
133
|
+
|
|
134
|
+
1. Create `.drive/phases/XX-name/{phase}-{plan}-UAT.md` if doesn't exist
|
|
135
|
+
2. Use template from `@src/templates/UAT-ISSUES.md`
|
|
136
|
+
3. Add each issue with UAT-NNN format:
|
|
137
|
+
|
|
138
|
+
```markdown
|
|
139
|
+
### UAT-001: [Brief description]
|
|
140
|
+
|
|
141
|
+
**Discovered:** [date] during user acceptance testing
|
|
142
|
+
**Phase/Plan:** [phase]-[plan] that was tested
|
|
143
|
+
**Severity:** [Blocker/Major/Minor/Cosmetic]
|
|
144
|
+
**AC:** [Which acceptance criteria this relates to]
|
|
145
|
+
**Description:** [User's description of the problem]
|
|
146
|
+
**Expected:** [What should have happened]
|
|
147
|
+
**Actual:** [What actually happened]
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
**Note:** Issues go to phase-scoped UAT file, NOT global `.drive/ISSUES.md`.
|
|
151
|
+
</step>
|
|
152
|
+
|
|
153
|
+
<step name="summarize">
|
|
154
|
+
**Present test summary:**
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
# Test Results: [Plan Name]
|
|
158
|
+
|
|
159
|
+
**Tests run:** [N]
|
|
160
|
+
**Passed:** [N]
|
|
161
|
+
**Failed:** [N]
|
|
162
|
+
**Partial:** [N]
|
|
163
|
+
**Skipped:** [N]
|
|
164
|
+
|
|
165
|
+
## Issues Found
|
|
166
|
+
[List any issues with severity]
|
|
167
|
+
|
|
168
|
+
## Verdict
|
|
169
|
+
[Based on results:]
|
|
170
|
+
- ALL PASS: "All tests passed. Feature validated."
|
|
171
|
+
- MINOR ISSUES: "Feature works with minor issues logged."
|
|
172
|
+
- MAJOR ISSUES: "Significant issues found - review before proceeding."
|
|
173
|
+
- BLOCKERS: "Blocking issues found - must fix before continuing."
|
|
174
|
+
|
|
175
|
+
## Next Steps
|
|
176
|
+
[Based on verdict:]
|
|
177
|
+
- If clean: Suggest proceeding to next phase/plan
|
|
178
|
+
- If issues: Suggest creating FIX plan to address
|
|
179
|
+
```
|
|
180
|
+
</step>
|
|
181
|
+
|
|
182
|
+
<step name="offer">
|
|
183
|
+
**Offer next actions based on results:**
|
|
184
|
+
|
|
185
|
+
Use AskUserQuestion:
|
|
186
|
+
- header: "Next"
|
|
187
|
+
- question: "What would you like to do?"
|
|
188
|
+
- options (based on results):
|
|
189
|
+
|
|
190
|
+
If all passed:
|
|
191
|
+
- "Continue" — Proceed with confidence
|
|
192
|
+
- "Test more" — Run additional manual tests
|
|
193
|
+
- "Done" — Finish testing session
|
|
194
|
+
|
|
195
|
+
If issues found:
|
|
196
|
+
|
|
197
|
+
**Diagnostic classification — classify before fixing, instead of jumping to code patches, because fixing the wrong layer wastes loops and produces fragile patches:**
|
|
198
|
+
|
|
199
|
+
Use AskUserQuestion:
|
|
200
|
+
- header: "Classify Issues"
|
|
201
|
+
- question: "Before planning fixes, what went wrong?"
|
|
202
|
+
- options:
|
|
203
|
+
- "Intent issue" — The feature needs to work differently than planned
|
|
204
|
+
- "Spec issue" — The plan missed a requirement or got something wrong
|
|
205
|
+
- "Code issue" — The plan was right, the code doesn't match
|
|
206
|
+
- "Log and continue" — Issues logged, proceed without fixing now
|
|
207
|
+
- "Review issues" — Look at logged issues in detail
|
|
208
|
+
|
|
209
|
+
**Routing per classification:**
|
|
210
|
+
|
|
211
|
+
**Intent (1):** "Let's re-plan with updated intent."
|
|
212
|
+
- Route to `/drive:plan` for affected phase with updated intent
|
|
213
|
+
- Previous plan's issues inform the re-plan
|
|
214
|
+
- Do NOT create a fix plan — the spec itself needs rethinking
|
|
215
|
+
|
|
216
|
+
**Spec (2):** "The plan needs updating before we fix code."
|
|
217
|
+
- Route to `/drive:plan-fix` with spec-level scope
|
|
218
|
+
- Identify which ACs or tasks need revision
|
|
219
|
+
- Update the plan FIRST, then generate code fixes from the corrected spec
|
|
220
|
+
- This prevents patching code against a wrong spec
|
|
221
|
+
|
|
222
|
+
**Code (3):** "Standard fix — plan was right, code needs patching."
|
|
223
|
+
- Route to `/drive:plan-fix` with code-level scope (existing behavior)
|
|
224
|
+
- Generate targeted fix plan from UAT issues
|
|
225
|
+
|
|
226
|
+
**Log and continue (4):** Issues logged, proceed anyway (existing behavior)
|
|
227
|
+
|
|
228
|
+
**Review issues (5):** Show logged issues in detail (existing behavior)
|
|
229
|
+
</step>
|
|
230
|
+
|
|
231
|
+
</process>
|
|
232
|
+
|
|
233
|
+
<success_criteria>
|
|
234
|
+
- [ ] Test scope identified from SUMMARY.md
|
|
235
|
+
- [ ] Checklist generated based on acceptance criteria
|
|
236
|
+
- [ ] User guided through each test via AskUserQuestion
|
|
237
|
+
- [ ] All test results captured (pass/fail/partial/skip)
|
|
238
|
+
- [ ] Any issues logged to phase-scoped UAT file
|
|
239
|
+
- [ ] Summary presented with verdict
|
|
240
|
+
- [ ] User knows next steps based on results
|
|
241
|
+
</success_criteria>
|
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="terminal.svg" alt="Forge terminal" width="740"/>
|
|
3
|
+
</div>
|
|
4
|
+
|
|
5
|
+
<div align="center">
|
|
6
|
+
|
|
7
|
+
# Forge
|
|
8
|
+
|
|
9
|
+
**Build consistent Claude Code skills using standardized syntax and guided workflows.**
|
|
10
|
+
|
|
11
|
+
[](https://claude.ai/code)
|
|
12
|
+
[](LICENSE)
|
|
13
|
+
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Contents
|
|
19
|
+
|
|
20
|
+
- [What Forge Does](#what-forge-does)
|
|
21
|
+
- [Commands](#commands)
|
|
22
|
+
- [The Problem](#the-problem)
|
|
23
|
+
- [How It Works](#how-it-works)
|
|
24
|
+
- [Architecture](#architecture)
|
|
25
|
+
- [Syntax Specs](#syntax-specs)
|
|
26
|
+
- [Ecosystem](#ecosystem)
|
|
27
|
+
- [Install](#install)
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## What Forge Does
|
|
32
|
+
|
|
33
|
+
Claude Code skills are markdown files that give Claude a persona, routing logic, and domain knowledge. They're powerful — but there's no standard for how to write them. Every skill looks different. Entry points mix routing with process logic. Tasks miss required sections. Templates use inconsistent placeholders. When you share a skill, someone else has to reverse-engineer your conventions.
|
|
34
|
+
|
|
35
|
+
Forge fixes this. It's a meta-skill — a skill that builds other skills — with four workflows:
|
|
36
|
+
|
|
37
|
+
1. **Discover** — Guided interview that captures every design decision and produces a structured skill spec
|
|
38
|
+
2. **Scaffold** — Takes a skill spec and generates a compliant directory with all files following syntax standards
|
|
39
|
+
3. **Distill** — Transforms raw source material (books, courses, transcripts) into structured framework chunks ready for skill consumption
|
|
40
|
+
4. **Audit** — Checks existing skills against the syntax specs and produces a compliance report with remediation priorities
|
|
41
|
+
|
|
42
|
+
The result: skills that are consistent, portable, and immediately understandable by anyone who reads them.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Commands
|
|
47
|
+
|
|
48
|
+
| Command | What It Does |
|
|
49
|
+
|---------|-------------|
|
|
50
|
+
| `/forge` | Show available workflows |
|
|
51
|
+
| `/forge discover` | Guided interview to design a new skill — produces a skill spec |
|
|
52
|
+
| `/forge scaffold` | Generate a compliant skill directory from a spec |
|
|
53
|
+
| `/forge distill` | Transform raw source material into framework chunks |
|
|
54
|
+
| `/forge audit` | Audit skill compliance against syntax specs |
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## The Problem
|
|
59
|
+
|
|
60
|
+
Claude Code's slash command system is a superpower. Drop markdown files in `.claude/commands/` and Claude gets new capabilities — personas, workflows, domain knowledge, quality gates. But there's no enforced structure. Skills built without conventions end up with:
|
|
61
|
+
|
|
62
|
+
- **Entry points doing too much.** Routing mixed with process logic. Bloated files that Claude loads entirely even when you only need one command.
|
|
63
|
+
- **Inconsistent file types.** Tasks that look like frameworks. Templates without placeholder conventions. Context files that never get updated.
|
|
64
|
+
- **Missing sections.** No acceptance criteria. No user stories. No "Not For" boundaries. Claude interprets vaguely and produces inconsistent results.
|
|
65
|
+
- **No portability.** Your skill works in your workspace because you know the conventions. Someone else installs it and gets confused immediately.
|
|
66
|
+
|
|
67
|
+
Forge defines seven file types — entry points, tasks, templates, frameworks, context, checklists, and rules — each with a syntax spec. The specs define what sections are required, what format they use, and what anti-patterns to avoid. Then it gives you workflows to build skills that follow those specs from the start.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## How It Works
|
|
72
|
+
|
|
73
|
+
### Discovery Flow
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
/forge discover
|
|
77
|
+
│
|
|
78
|
+
▼
|
|
79
|
+
Identity ──▶ Persona ──▶ Scope ──▶ Content ──▶ Review
|
|
80
|
+
(name,type) (role,style) (commands) Architecture (confirm)
|
|
81
|
+
│ │
|
|
82
|
+
▼ ▼
|
|
83
|
+
"revops-expert" tasks: 3, frameworks: 5,
|
|
84
|
+
standalone, operations templates: 2, context: 1
|
|
85
|
+
│
|
|
86
|
+
▼
|
|
87
|
+
SKILL-SPEC.md
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Discovery asks one question group at a time, validates as it goes, and produces a structured spec. No guessing at conventions — the interview covers every decision.
|
|
91
|
+
|
|
92
|
+
### Scaffold Flow
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
/forge scaffold
|
|
96
|
+
│
|
|
97
|
+
▼
|
|
98
|
+
Read spec ──▶ Choose ──▶ Create ──▶ Generate ──▶ Validate
|
|
99
|
+
(parse all location dirs all files against
|
|
100
|
+
sections) (apps/, (entry point, rules
|
|
101
|
+
local, tasks,
|
|
102
|
+
custom) frameworks...)
|
|
103
|
+
│
|
|
104
|
+
▼
|
|
105
|
+
Complete skill directory
|
|
106
|
+
ready to customize
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
Scaffold reads a skill spec and generates every file with meaningful scaffolded content — not empty shells. Entry points get proper YAML frontmatter and all five XML sections. Tasks get purpose, user story, steps with wait points, and acceptance criteria. For skills with 10+ files, it offers a Drive-managed phased build.
|
|
110
|
+
|
|
111
|
+
### Distill Flow
|
|
112
|
+
|
|
113
|
+
```
|
|
114
|
+
/forge distill
|
|
115
|
+
│
|
|
116
|
+
▼
|
|
117
|
+
Assess source ──▶ Chunking plan ──▶ Extract chunks ──▶ Validate
|
|
118
|
+
(read material, (concept-based, (core concept, (framework
|
|
119
|
+
estimate scope) not chapters) frameworks, rules
|
|
120
|
+
templates, compliance)
|
|
121
|
+
decision tools)
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Distill takes raw knowledge — a book, a course transcript, collected notes — and turns it into structured framework chunks. Each chunk stands alone, has a core concept synthesis (not a summary), frameworks with "When to use" triggers, fill-in templates, and IF/THEN decision tools.
|
|
125
|
+
|
|
126
|
+
### Audit Flow
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
/forge audit [path]
|
|
130
|
+
│
|
|
131
|
+
▼
|
|
132
|
+
Inventory ──▶ Entry point ──▶ Each folder ──▶ Report
|
|
133
|
+
structure assessment vs its spec (compliance %,
|
|
134
|
+
(classify (frontmatter, (tasks.md, violations,
|
|
135
|
+
components) 5 XML sections, frameworks.md, remediation
|
|
136
|
+
conventions) templates.md) priorities)
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
Audit reads an existing skill, checks every file against its corresponding syntax spec, and produces a scored compliance report. Supports single skill or batch mode across an entire commands directory.
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## Architecture
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
forge/
|
|
147
|
+
├── forge/ The skill itself
|
|
148
|
+
│ ├── forge.md Entry point (Forge-compliant, naturally)
|
|
149
|
+
│ ├── tasks/
|
|
150
|
+
│ │ ├── discover.md 5-phase guided interview
|
|
151
|
+
│ │ ├── scaffold.md Spec-to-directory generator
|
|
152
|
+
│ │ ├── distill.md Source material chunker
|
|
153
|
+
│ │ └── audit.md Compliance checker
|
|
154
|
+
│ ├── rules/ Authoring rules per file type
|
|
155
|
+
│ │ ├── entry-point-rules.md Entry point validation rules
|
|
156
|
+
│ │ ├── tasks-rules.md Task file validation rules
|
|
157
|
+
│ │ ├── frameworks-rules.md Framework file validation rules
|
|
158
|
+
│ │ ├── templates-rules.md Template file validation rules
|
|
159
|
+
│ │ ├── context-rules.md Context file validation rules
|
|
160
|
+
│ │ └── checklists-rules.md Checklist file validation rules
|
|
161
|
+
│ └── templates/
|
|
162
|
+
│ └── skill-spec.md Output format for discovery
|
|
163
|
+
├── specs/ Syntax specifications (reference docs)
|
|
164
|
+
│ ├── entry-point.md How to write entry points
|
|
165
|
+
│ ├── tasks.md How to write task files
|
|
166
|
+
│ ├── frameworks.md How to write framework files
|
|
167
|
+
│ ├── templates.md How to write template files
|
|
168
|
+
│ ├── context.md How to write context files
|
|
169
|
+
│ ├── checklists.md How to write checklist files
|
|
170
|
+
│ └── rules.md How to write rules (meta-skill only)
|
|
171
|
+
├── bin/
|
|
172
|
+
│ └── install.js npm installer
|
|
173
|
+
├── package.json
|
|
174
|
+
└── README.md
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
**Two layers by design:**
|
|
178
|
+
- **`forge/`** — The operational skill. Tasks, rules, templates. This is what Claude loads and executes.
|
|
179
|
+
- **`specs/`** — Reference documentation. The syntax specifications that define how each file type should be written. Tasks and audits reference these on-demand — they're never loaded upfront.
|
|
180
|
+
|
|
181
|
+
Rules vs Specs: Rules are compact enforcement checklists ("must have X, anti-pattern Y"). Specs are the full documentation ("here's what X means, here's why, here are examples"). The audit task loads rules for fast checking. The scaffold task loads specs for correct generation.
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
## Syntax Specs
|
|
186
|
+
|
|
187
|
+
Forge defines seven file types. Each has a syntax specification that defines structure, conventions, and anti-patterns.
|
|
188
|
+
|
|
189
|
+
| File Type | Purpose | Mutable? | Frontmatter? |
|
|
190
|
+
|-----------|---------|----------|--------------|
|
|
191
|
+
| **Entry Point** | Identity + routing | No | Yes (YAML) |
|
|
192
|
+
| **Task** | Guided workflow | No | No |
|
|
193
|
+
| **Framework** | Domain knowledge | No | No |
|
|
194
|
+
| **Template** | Structured output | No | Yes (YAML) |
|
|
195
|
+
| **Context** | User/business state | Yes | No |
|
|
196
|
+
| **Checklist** | Quality gate | No | No |
|
|
197
|
+
| **Rules** | Validation rules | No | Yes (YAML) |
|
|
198
|
+
|
|
199
|
+
### Placeholder Conventions
|
|
200
|
+
|
|
201
|
+
Every skill built with Forge uses consistent placeholders:
|
|
202
|
+
|
|
203
|
+
| Syntax | Meaning | Example |
|
|
204
|
+
|--------|---------|---------|
|
|
205
|
+
| `{curly-braces}` | Variable interpolation — replaced with exact input | `{skill-name}` becomes `revops-expert` |
|
|
206
|
+
| `[square-brackets]` | Human-written prose — replaced with descriptive text | `[role definition]` becomes `Senior revenue operations strategist` |
|
|
207
|
+
|
|
208
|
+
### Skill Tiers
|
|
209
|
+
|
|
210
|
+
| Tier | Structure | When to Use |
|
|
211
|
+
|------|-----------|-------------|
|
|
212
|
+
| `suite` | Orchestrator with sub-commands | Multi-workflow tools (Forge itself) |
|
|
213
|
+
| `standalone` | Single skill with auxiliary folders | Most skills |
|
|
214
|
+
| `task-only` | Entry point only, no auxiliary folders | Lightweight single-purpose |
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## Ecosystem
|
|
219
|
+
|
|
220
|
+
Forge is part of a broader Claude Code extension ecosystem:
|
|
221
|
+
|
|
222
|
+
| System | What It Does | Link |
|
|
223
|
+
|--------|-------------|------|
|
|
224
|
+
| **Radar** | Multi-agent codebase auditing — diagnosis + controlled evolution | [GitHub](https://github.com/accelerationguy/radar) |
|
|
225
|
+
| **Momentum** | Builder's Automated State Engine — workspace lifecycle, health tracking, drift prevention | [GitHub](https://github.com/accelerationguy/base) |
|
|
226
|
+
| **Vector** | Context Augmentation & Reinforcement Layer — dynamic rules loaded JIT by intent | [GitHub](https://github.com/accelerationguy/vector) |
|
|
227
|
+
| **Drive** | Project orchestration — Plan, Apply, Unify Loop | [GitHub](https://github.com/accelerationguy/drive) |
|
|
228
|
+
| **Ignition** | Typed project incubator — guided ideation through graduation | [GitHub](https://github.com/accelerationguy/ignition) |
|
|
229
|
+
| **Forge** | Skill builder — standardized syntax specs + guided workflows | You are here |
|
|
230
|
+
| **CC Strategic AI** | Skool community — courses, community, live support | [Skool](https://accelerationguy.com) |
|
|
231
|
+
|
|
232
|
+
All tools are standalone. Ignition was built with Forge. Scaffold can optionally hand off to Drive for phased builds. No dependencies required.
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## Install
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
npx @accel/forge
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
One command. Installs the skill to `~/.claude/commands/forge/` — available in every workspace.
|
|
243
|
+
|
|
244
|
+
```bash
|
|
245
|
+
# Global install (default) — available everywhere
|
|
246
|
+
npx @accel/forge
|
|
247
|
+
|
|
248
|
+
# Install to current project only
|
|
249
|
+
npx @accel/forge --local
|
|
250
|
+
|
|
251
|
+
# Custom Claude config directory
|
|
252
|
+
npx @accel/forge --config-dir /path/to/.claude
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
Then open Claude Code and type `/forge` to start.
|
|
256
|
+
|
|
257
|
+
### What Gets Installed
|
|
258
|
+
|
|
259
|
+
```
|
|
260
|
+
~/.claude/
|
|
261
|
+
├── commands/forge/
|
|
262
|
+
│ ├── forge.md Entry point (routing + persona)
|
|
263
|
+
│ ├── tasks/ 4 task files (discover, scaffold, distill, audit)
|
|
264
|
+
│ ├── rules/ 6 authoring rule files
|
|
265
|
+
│ └── templates/ Skill spec output template
|
|
266
|
+
└── forge-specs/
|
|
267
|
+
└── 7 syntax specifications (entry-point, tasks, templates, etc.)
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
No hooks, no MCP servers, no workspace data. Forge is pure markdown — zero runtime dependencies.
|
|
271
|
+
|
|
272
|
+
### Requirements
|
|
273
|
+
|
|
274
|
+
- [Claude Code](https://claude.ai/code)
|
|
275
|
+
- Node.js >= 16 (for install script only — Forge itself has no runtime deps)
|
|
276
|
+
|
|
277
|
+
---
|
|
278
|
+
|
|
279
|
+
## License
|
|
280
|
+
|
|
281
|
+
MIT — [Acceleration Guy](https://github.com/accelerationguy)
|