@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,228 @@
|
|
|
1
|
+
# Frameworks Syntax Spec
|
|
2
|
+
|
|
3
|
+
Defines the syntax for framework files: `frameworks/*.md` — read-only reference knowledge loaded by tasks when domain context is needed.
|
|
4
|
+
|
|
5
|
+
**Applies to:** `skills/{skill-name}/frameworks/*.md`
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## No Frontmatter
|
|
10
|
+
|
|
11
|
+
Frameworks do not use YAML frontmatter. They are conceptual knowledge, not executable artifacts. Content starts immediately.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## File Structure
|
|
16
|
+
|
|
17
|
+
Frameworks follow a teaching-oriented structure:
|
|
18
|
+
|
|
19
|
+
1. **Outer XML container** (optional) — Semantic tag matching the concept
|
|
20
|
+
2. **Purpose section** — What this framework explains
|
|
21
|
+
3. **Core concepts** — The knowledge itself, organized by topic
|
|
22
|
+
4. **Examples** — Concrete illustrations (good vs bad when applicable)
|
|
23
|
+
5. **Anti-patterns** — What to avoid and WHY
|
|
24
|
+
6. **Sources** (optional) — Attribution if from a book, course, or methodology
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Outer XML Container
|
|
29
|
+
|
|
30
|
+
Frameworks may use an outer XML container related to their topic. Not required, but adds semantic clarity for parseable sections.
|
|
31
|
+
|
|
32
|
+
```xml
|
|
33
|
+
<!-- hormozi-value-equation.md -->
|
|
34
|
+
<value_equation>
|
|
35
|
+
## Purpose
|
|
36
|
+
...
|
|
37
|
+
|
|
38
|
+
## The Four Variables
|
|
39
|
+
...
|
|
40
|
+
</value_equation>
|
|
41
|
+
|
|
42
|
+
<!-- hook-patterns.md -->
|
|
43
|
+
<hook_patterns>
|
|
44
|
+
## Purpose
|
|
45
|
+
...
|
|
46
|
+
|
|
47
|
+
## Pattern Types
|
|
48
|
+
...
|
|
49
|
+
</hook_patterns>
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**Tag naming:** snake_case matching the concept. Use when the framework has distinct parseable sections a task might reference individually.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Teaching Patterns
|
|
57
|
+
|
|
58
|
+
Frameworks explain domain knowledge for tasks to consume. Two primary teaching patterns:
|
|
59
|
+
|
|
60
|
+
### Teach by Contrast
|
|
61
|
+
|
|
62
|
+
Show good vs bad to make principles concrete:
|
|
63
|
+
|
|
64
|
+
```markdown
|
|
65
|
+
## Weak vs Strong Dream Outcomes
|
|
66
|
+
|
|
67
|
+
**Weak:** "Grow your business"
|
|
68
|
+
- Not specific, not measurable, not compelling
|
|
69
|
+
|
|
70
|
+
**Strong:** "Generate 20 qualified leads per month without cold calling"
|
|
71
|
+
- Specific number, specific method, specific relief
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Explain WHY
|
|
75
|
+
|
|
76
|
+
Don't just state rules — explain the reasoning:
|
|
77
|
+
|
|
78
|
+
```markdown
|
|
79
|
+
## Why Price Anchoring Matters
|
|
80
|
+
|
|
81
|
+
Without anchoring, customers compare your price to competitors.
|
|
82
|
+
With anchoring, customers compare your price to the VALUE they receive.
|
|
83
|
+
|
|
84
|
+
A $5,000 offer feels expensive compared to a $2,000 competitor.
|
|
85
|
+
A $5,000 offer feels like a steal compared to $50,000 in delivered value.
|
|
86
|
+
|
|
87
|
+
The anchor shifts the reference point from cost to value.
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## Loading Pattern
|
|
93
|
+
|
|
94
|
+
Frameworks are lazy-loaded by tasks when conceptual context is needed:
|
|
95
|
+
|
|
96
|
+
```xml
|
|
97
|
+
<!-- In a task file -->
|
|
98
|
+
<references>
|
|
99
|
+
@frameworks/hormozi-value-equation.md (during pricing step)
|
|
100
|
+
@frameworks/risk-reversal-patterns.md (during guarantee step)
|
|
101
|
+
</references>
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
**Rules:**
|
|
105
|
+
- Frameworks are loaded on demand, not pre-loaded at skill activation
|
|
106
|
+
- A task can load one framework without needing others (self-contained)
|
|
107
|
+
- Entry point `<routing>` lists frameworks under "Load on Demand"
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## Distinction: Frameworks vs Context vs Templates
|
|
112
|
+
|
|
113
|
+
| Type | Purpose | Mutability | Loaded When |
|
|
114
|
+
|------|---------|------------|-------------|
|
|
115
|
+
| **Frameworks** | Domain knowledge (concepts, methods, patterns) | Read-only — never modified | On demand by tasks |
|
|
116
|
+
| **Context** | Business/user state (profiles, preferences, history) | Mutable — updated as context changes | On skill activation |
|
|
117
|
+
| **Templates** | Output structure (fill-in-the-blank formats) | Read-only — output written elsewhere | During task output generation |
|
|
118
|
+
|
|
119
|
+
**Rule of thumb:**
|
|
120
|
+
- If it teaches a concept → framework
|
|
121
|
+
- If it describes a specific user/business → context
|
|
122
|
+
- If it defines output shape → template
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## Naming Conventions
|
|
127
|
+
|
|
128
|
+
| Element | Convention | Example |
|
|
129
|
+
|---------|-----------|---------|
|
|
130
|
+
| Framework file | kebab-case, descriptive | `hormozi-value-equation.md`, `hook-patterns.md` |
|
|
131
|
+
| Directory | Always `frameworks/` | `skills/revops-expert/frameworks/` |
|
|
132
|
+
| Outer XML tag | snake_case | `<value_equation>`, `<hook_patterns>` |
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Core Principle
|
|
137
|
+
|
|
138
|
+
**Frameworks are knowledge, not instructions.** They explain concepts and patterns that tasks reference when making decisions or generating output.
|
|
139
|
+
|
|
140
|
+
Frameworks are self-contained — loading one framework should never require loading another. If two concepts are tightly coupled, they belong in the same file.
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Good vs Bad Examples
|
|
145
|
+
|
|
146
|
+
### Good: Teaching-Oriented Framework
|
|
147
|
+
|
|
148
|
+
```xml
|
|
149
|
+
<value_equation>
|
|
150
|
+
|
|
151
|
+
## Purpose
|
|
152
|
+
|
|
153
|
+
Alex Hormozi's Value Equation from "$100M Offers." Quantifies offer value using four variables. Used during offer design to ensure compelling pricing.
|
|
154
|
+
|
|
155
|
+
## The Equation
|
|
156
|
+
|
|
157
|
+
```
|
|
158
|
+
Value = (Dream Outcome × Perceived Likelihood) / (Time Delay × Effort & Sacrifice)
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Maximize the top (outcome, believability). Minimize the bottom (time, effort).
|
|
162
|
+
|
|
163
|
+
## Variables
|
|
164
|
+
|
|
165
|
+
### Dream Outcome
|
|
166
|
+
The ideal result your customer achieves.
|
|
167
|
+
|
|
168
|
+
**Strong:** "Generate 20 qualified leads per month without cold calling"
|
|
169
|
+
**Weak:** "Grow your business" (vague, not measurable)
|
|
170
|
+
|
|
171
|
+
### Perceived Likelihood of Achievement
|
|
172
|
+
Why the customer believes this will work FOR THEM.
|
|
173
|
+
|
|
174
|
+
**Elements:** Case studies, credentials, specificity of method, guarantees.
|
|
175
|
+
|
|
176
|
+
### Time Delay
|
|
177
|
+
How long until they see results. Shorter = more valuable.
|
|
178
|
+
|
|
179
|
+
**Strong:** "First leads within 14 days"
|
|
180
|
+
**Weak:** "Results over time"
|
|
181
|
+
|
|
182
|
+
### Effort & Sacrifice
|
|
183
|
+
What the customer DOESN'T have to do. Less effort = more valuable.
|
|
184
|
+
|
|
185
|
+
**Strong:** "Done-for-you setup, no technical skills needed"
|
|
186
|
+
**Weak:** "Easy to use" (subjective, unspecific)
|
|
187
|
+
|
|
188
|
+
## Anti-Patterns
|
|
189
|
+
|
|
190
|
+
| Anti-Pattern | Fix |
|
|
191
|
+
|-------------|-----|
|
|
192
|
+
| Pricing based on cost, not value | Anchor to dream outcome dollar value |
|
|
193
|
+
| Vague dream outcomes | Make specific and measurable |
|
|
194
|
+
| No proof elements | Add case studies, guarantees, credentials |
|
|
195
|
+
| Ignoring effort reduction | Explicitly list what customer doesn't do |
|
|
196
|
+
|
|
197
|
+
## Source
|
|
198
|
+
|
|
199
|
+
Alex Hormozi, "$100M Offers" (2021)
|
|
200
|
+
|
|
201
|
+
</value_equation>
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
### Bad: Vague Framework
|
|
205
|
+
|
|
206
|
+
```markdown
|
|
207
|
+
# Value Equation
|
|
208
|
+
|
|
209
|
+
The value equation helps you price offers.
|
|
210
|
+
|
|
211
|
+
You should think about what the customer gets and how much effort it takes.
|
|
212
|
+
Price your offer based on value.
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
**Why bad:** No structure, no variables explained, no examples, no contrast, nothing actionable. A task loading this framework gains nothing.
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## Anti-Patterns
|
|
220
|
+
|
|
221
|
+
| Anti-Pattern | Why It's Bad | Fix |
|
|
222
|
+
|-------------|-------------|-----|
|
|
223
|
+
| Framework with instructions | Frameworks teach, they don't instruct — that's tasks | Move step-by-step instructions to `tasks/` |
|
|
224
|
+
| Framework requiring other frameworks | Breaks self-contained principle | Merge coupled concepts into one file |
|
|
225
|
+
| No examples | Abstract knowledge without concrete illustration | Add good/bad contrast examples |
|
|
226
|
+
| No "WHY" explanations | Rules without reasoning are hard to apply | Explain the principle behind each concept |
|
|
227
|
+
| Modifying frameworks during execution | Breaks read-only contract | Frameworks are immutable reference — write output elsewhere |
|
|
228
|
+
| Loading all frameworks at activation | Wastes context on irrelevant knowledge | Lazy-load from tasks when needed |
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
# Rules Syntax Spec
|
|
2
|
+
|
|
3
|
+
Defines the syntax for rule files: `rules/*.md` — authoring rules that define what every file of a given type must contain.
|
|
4
|
+
|
|
5
|
+
**Applies to:** Meta-skill only (`skills/forge/rules/*.md`). Individual skills do NOT carry their own rules.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## YAML Frontmatter
|
|
10
|
+
|
|
11
|
+
Rules files use YAML frontmatter with a `paths:` field targeting the folder type they govern:
|
|
12
|
+
|
|
13
|
+
```yaml
|
|
14
|
+
---
|
|
15
|
+
paths:
|
|
16
|
+
- "skills/*/tasks/**/*.md"
|
|
17
|
+
---
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Frontmatter Fields
|
|
21
|
+
|
|
22
|
+
| Field | Required | Purpose | Example |
|
|
23
|
+
|-------|----------|---------|---------|
|
|
24
|
+
| `paths` | Yes | Glob patterns for files this rule applies to | `["skills/*/entry-point.md"]` |
|
|
25
|
+
|
|
26
|
+
The `paths` field tells tooling which files to validate against this rule. Use glob patterns with `*` for skill name and `**` for nested directories.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## File Structure
|
|
31
|
+
|
|
32
|
+
Every rule file follows this structure:
|
|
33
|
+
|
|
34
|
+
1. **YAML frontmatter** — `paths:` field
|
|
35
|
+
2. **Header** — `# [Folder Type] Rules`
|
|
36
|
+
3. **Intro** — What this rule governs and why
|
|
37
|
+
4. **File Structure** — What every file of this type must contain
|
|
38
|
+
5. **Conventions** — Naming, formatting, and style rules
|
|
39
|
+
6. **Examples** — Good vs bad illustrations
|
|
40
|
+
7. **Cross-References** — Links to the syntax spec for full detail
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Rule Content Structure
|
|
45
|
+
|
|
46
|
+
### Intro
|
|
47
|
+
|
|
48
|
+
```markdown
|
|
49
|
+
# Task Rules
|
|
50
|
+
|
|
51
|
+
Rules for editing files in `tasks/`. Every task file must conform to these rules to ensure consistency across all skills.
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### File Structure Section
|
|
55
|
+
|
|
56
|
+
Define what every file of this type must contain:
|
|
57
|
+
|
|
58
|
+
```markdown
|
|
59
|
+
## File Structure
|
|
60
|
+
|
|
61
|
+
Every task file must have these XML sections in order:
|
|
62
|
+
|
|
63
|
+
1. `<purpose>` — What this task accomplishes (required)
|
|
64
|
+
2. `<user-story>` — Who benefits and how (required)
|
|
65
|
+
3. `<when-to-use>` — Trigger conditions (required)
|
|
66
|
+
4. `<context>` — Files to read before starting (optional)
|
|
67
|
+
5. `<references>` — Frameworks to lazy-load (optional)
|
|
68
|
+
6. `<steps>` — Execution steps (required)
|
|
69
|
+
7. `<output>` — What this task produces (required)
|
|
70
|
+
8. `<acceptance-criteria>` — Completion verification (required)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Conventions Section
|
|
74
|
+
|
|
75
|
+
Define naming, formatting, and style rules:
|
|
76
|
+
|
|
77
|
+
```markdown
|
|
78
|
+
## Conventions
|
|
79
|
+
|
|
80
|
+
### Naming
|
|
81
|
+
- File name: kebab-case (`design-offer.md`, not `DesignOffer.md`)
|
|
82
|
+
- Step names: snake_case attribute (`name="gather_requirements"`)
|
|
83
|
+
|
|
84
|
+
### Formatting
|
|
85
|
+
- No YAML frontmatter
|
|
86
|
+
- Imperative voice in steps ("Ask the user" not "The user is asked")
|
|
87
|
+
- Explicit wait points ("Wait for response before proceeding")
|
|
88
|
+
|
|
89
|
+
### Acceptance Criteria
|
|
90
|
+
- Plain checklists only (`- [ ]` format)
|
|
91
|
+
- NOT BDD Given/When/Then
|
|
92
|
+
- Each item must have clear pass/fail criterion
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### Cross-References Section
|
|
96
|
+
|
|
97
|
+
Point to the full syntax spec for comprehensive detail:
|
|
98
|
+
|
|
99
|
+
```markdown
|
|
100
|
+
## Full Specification
|
|
101
|
+
|
|
102
|
+
See: `specs/tasks.md` for complete syntax specification including:
|
|
103
|
+
- All XML section specifications with examples
|
|
104
|
+
- Step element attributes and content rules
|
|
105
|
+
- Conditional logic patterns
|
|
106
|
+
- Good vs bad examples
|
|
107
|
+
- Anti-patterns
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## Scope: Meta-Skill Only
|
|
113
|
+
|
|
114
|
+
Rules live **exclusively** in the Forge meta-skill:
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
skills/
|
|
118
|
+
forge/ # Meta-skill
|
|
119
|
+
forge.md # Entry point
|
|
120
|
+
rules/ # ← Rules live HERE
|
|
121
|
+
entry-point-rules.md
|
|
122
|
+
tasks-rules.md
|
|
123
|
+
templates-rules.md
|
|
124
|
+
frameworks-rules.md
|
|
125
|
+
context-rules.md
|
|
126
|
+
checklists-rules.md
|
|
127
|
+
tasks/
|
|
128
|
+
...
|
|
129
|
+
|
|
130
|
+
revops-expert/ # Regular skill
|
|
131
|
+
revops-expert.md
|
|
132
|
+
tasks/ # ← No rules/ folder
|
|
133
|
+
frameworks/
|
|
134
|
+
...
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
**Why meta-skill only:** Individual skills follow the standards — they don't carry the rulebook. Rules are the meta-layer that Forge uses to validate and scaffold.
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## How Rules Reference Specs
|
|
142
|
+
|
|
143
|
+
Rules are the **enforcement layer**. Specs are the **source of truth**. Rules summarize what specs define in detail:
|
|
144
|
+
|
|
145
|
+
```markdown
|
|
146
|
+
## Relationship
|
|
147
|
+
|
|
148
|
+
| Artifact | Purpose | Detail Level |
|
|
149
|
+
|----------|---------|-------------|
|
|
150
|
+
| **Spec** (`specs/tasks.md`) | Full syntax definition with rationale, examples, anti-patterns | Comprehensive |
|
|
151
|
+
| **Rule** (`rules/tasks-rules.md`) | Quick-reference enforcement checklist | Summary |
|
|
152
|
+
|
|
153
|
+
Rules say "what must be true." Specs explain "why and how."
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
A rule file should be concise enough to scan quickly during scaffolding. For the full explanation, it points to the spec.
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
## Naming Conventions
|
|
161
|
+
|
|
162
|
+
| Element | Convention | Example |
|
|
163
|
+
|---------|-----------|---------|
|
|
164
|
+
| Rule file | `{folder-type}-rules.md` | `tasks-rules.md`, `entry-point-rules.md` |
|
|
165
|
+
| Directory | Always `rules/` | `skills/forge/rules/` |
|
|
166
|
+
| Paths glob | `skills/*/{folder}/**/*.md` | `skills/*/tasks/**/*.md` |
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## Core Principle
|
|
171
|
+
|
|
172
|
+
**Rules are the enforcement layer for specs.** They tell Forge what to check when scaffolding or auditing a skill. They are concise summaries, not comprehensive documentation.
|
|
173
|
+
|
|
174
|
+
If someone asks "what must a task file contain?" — the rule answers in 30 seconds. If they ask "why, and what are the edge cases?" — the spec answers in 5 minutes.
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## Good vs Bad Examples
|
|
179
|
+
|
|
180
|
+
### Good: Concise Rule with Cross-Reference
|
|
181
|
+
|
|
182
|
+
```yaml
|
|
183
|
+
---
|
|
184
|
+
paths:
|
|
185
|
+
- "skills/*/tasks/**/*.md"
|
|
186
|
+
---
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
```markdown
|
|
190
|
+
# Task Rules
|
|
191
|
+
|
|
192
|
+
Rules for files in `tasks/`. Full specification: `specs/tasks.md`
|
|
193
|
+
|
|
194
|
+
## Required Sections
|
|
195
|
+
|
|
196
|
+
Every task file must have these XML sections:
|
|
197
|
+
|
|
198
|
+
| Section | Required | Key Rule |
|
|
199
|
+
|---------|----------|----------|
|
|
200
|
+
| `<purpose>` | Yes | 1-2 sentences, specific |
|
|
201
|
+
| `<user-story>` | Yes | "As a [role], I want [action], so that [outcome]" |
|
|
202
|
+
| `<when-to-use>` | Yes | Bullet list of trigger conditions |
|
|
203
|
+
| `<context>` | No | @-references only if genuinely needed |
|
|
204
|
+
| `<references>` | No | Lazy-load with conditional notes |
|
|
205
|
+
| `<steps>` | Yes | Named steps (`name="snake_case"`), imperative voice |
|
|
206
|
+
| `<output>` | Yes | Artifact format and file location |
|
|
207
|
+
| `<acceptance-criteria>` | Yes | Plain checklists, not BDD |
|
|
208
|
+
|
|
209
|
+
## Quick Checks
|
|
210
|
+
|
|
211
|
+
- [ ] No YAML frontmatter
|
|
212
|
+
- [ ] All steps have `name` attribute (snake_case)
|
|
213
|
+
- [ ] Acceptance criteria use `- [ ]` format (not Given/When/Then)
|
|
214
|
+
- [ ] Output section specifies file location
|
|
215
|
+
- [ ] Wait points are explicit ("Wait for response")
|
|
216
|
+
|
|
217
|
+
## Full Specification
|
|
218
|
+
|
|
219
|
+
See: `specs/tasks.md`
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
### Bad: Rule That Duplicates the Spec
|
|
223
|
+
|
|
224
|
+
```markdown
|
|
225
|
+
# Task Rules
|
|
226
|
+
|
|
227
|
+
## Purpose Section
|
|
228
|
+
The purpose section describes what the task accomplishes. It should be 1-2 sentences.
|
|
229
|
+
Here's what a good purpose looks like...
|
|
230
|
+
[300 lines of the spec repeated verbatim]
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
**Why bad:** Duplicates the spec — now changes must happen in two places. Rules summarize; specs detail.
|
|
234
|
+
|
|
235
|
+
---
|
|
236
|
+
|
|
237
|
+
## Anti-Patterns
|
|
238
|
+
|
|
239
|
+
| Anti-Pattern | Why It's Bad | Fix |
|
|
240
|
+
|-------------|-------------|-----|
|
|
241
|
+
| Rules in individual skills | Every skill carries its own rulebook — maintenance nightmare | Rules in meta-skill only |
|
|
242
|
+
| Rule duplicates full spec | Two sources of truth — drift inevitable | Rule summarizes, cross-references spec |
|
|
243
|
+
| Missing `paths:` frontmatter | Tooling can't know which files the rule applies to | Always include paths glob |
|
|
244
|
+
| Rule without quick checks | Can't scan quickly during scaffolding | Include checkbox summary |
|
|
245
|
+
| Rules that prescribe content | Rules define structure, not domain content | Structure rules only — content comes from frameworks |
|