@williambeto/ai-workflow 1.19.0 → 2.1.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/CHANGELOG.md +56 -837
- package/PUBLISH_MANIFEST.json +34 -0
- package/README.md +70 -149
- package/{packages/ai-workflow/bin → bin}/ai-workflow.js +0 -0
- package/dist-assets/AGENTS.md +27 -0
- package/dist-assets/agents/astra.md +63 -0
- package/dist-assets/agents/atlas.md +169 -0
- package/dist-assets/agents/nexus.md +42 -0
- package/dist-assets/agents/orion.md +44 -0
- package/dist-assets/agents/phoenix.md +42 -0
- package/dist-assets/agents/sage.md +54 -0
- package/dist-assets/commands/README.md +14 -0
- package/dist-assets/commands/atlas.md +12 -0
- package/dist-assets/commands/audit.md +10 -0
- package/dist-assets/commands/deploy.md +12 -0
- package/dist-assets/commands/discover.md +10 -0
- package/dist-assets/commands/implement.md +28 -0
- package/dist-assets/commands/optimize-tokens.md +10 -0
- package/dist-assets/commands/plan.md +10 -0
- package/dist-assets/commands/release.md +12 -0
- package/dist-assets/commands/run.md +26 -0
- package/dist-assets/commands/spec-create.md +10 -0
- package/dist-assets/commands/spec-implement.md +10 -0
- package/dist-assets/commands/spec-review.md +10 -0
- package/dist-assets/commands/update-memory.md +10 -0
- package/dist-assets/commands/validate.md +12 -0
- package/dist-assets/docs/INDEX.md +21 -0
- package/dist-assets/docs/QUICKSTART.md +23 -0
- package/dist-assets/docs/adr/ADR-0000.md +19 -0
- package/dist-assets/docs/adr/ADR-0001.md +45 -0
- package/dist-assets/docs/adr/ADR-0002.md +62 -0
- package/dist-assets/docs/adr/ADR-0003.md +60 -0
- package/dist-assets/docs/adr/ADR-0004.md +71 -0
- package/dist-assets/docs/adr/ADR-0005.md +22 -0
- package/dist-assets/docs/adr/ADR-0006.md +82 -0
- package/dist-assets/docs/adr/ADR-0007.md +78 -0
- package/dist-assets/docs/api-engine-reference.md +7 -0
- package/{docs → dist-assets/docs}/architecture-policy.md +1 -1
- package/dist-assets/docs/cli-reference.md +27 -0
- package/dist-assets/docs/compatibility/provider-usage.md +38 -0
- package/dist-assets/docs/compatibility/runtime-matrix.md +30 -0
- package/dist-assets/docs/consumer-onboarding.md +17 -0
- package/dist-assets/docs/contributing-guide.md +11 -0
- package/{docs → dist-assets/docs}/design-patterns-policy.md +2 -2
- package/dist-assets/docs/full-documentation.md +113 -0
- package/{docs → dist-assets/docs}/npm-consumer-quickstart.md +18 -46
- package/dist-assets/docs/opencode-readme.md +8 -0
- package/dist-assets/docs/policies/01-BRANCH_GATE.md +63 -0
- package/dist-assets/docs/policies/02-SDD_METHODOLOGY.md +95 -0
- package/dist-assets/docs/policies/03-QUALITY_GATE.md +22 -0
- package/dist-assets/docs/policies/05-AGENT_CONTRACT.md +7 -0
- package/dist-assets/docs/policies/06-FINAL_EVIDENCE_CONTRACT.md +31 -0
- package/dist-assets/docs/policies/07-RELEASE_GATE.md +47 -0
- package/dist-assets/docs/policies/08-PRODUCT_TRUTHFULNESS_AND_PROJECT_DOCS.md +18 -0
- package/dist-assets/docs/policies/09-SPEC_VISIBILITY_AND_PUBLICATION.md +28 -0
- package/dist-assets/docs/policies/10-BEHAVIORAL_CONTRACT_HARDENING.md +9 -0
- package/dist-assets/docs/policies/11-EXECUTABLE_DELEGATION_AND_TRUTHFULNESS.md +7 -0
- package/dist-assets/docs/policies/ORCHESTRATION_PROTOCOL.md +15 -0
- package/dist-assets/docs/policies/PROCEDURE_DELIVERY_ARTIFACTS.md +21 -0
- package/dist-assets/docs/policies/PROCEDURE_DOCUMENTATION_CHECKLIST.md +24 -0
- package/dist-assets/docs/policies/PROCEDURE_UI_CHECKLIST.md +54 -0
- package/dist-assets/docs/profiles/README.md +19 -0
- package/dist-assets/docs/profiles/backend-api.md +5 -0
- package/dist-assets/docs/profiles/documentation.md +3 -0
- package/dist-assets/docs/profiles/frontend-product.md +19 -0
- package/dist-assets/docs/profiles/frontend-utility.md +19 -0
- package/dist-assets/docs/profiles/refactor.md +3 -0
- package/dist-assets/docs/profiles/security-review.md +3 -0
- package/dist-assets/docs/references/frontend-quality/landing-page-quality-checklist.md +11 -0
- package/dist-assets/docs/references/frontend-quality/product-copy-truthfulness.md +7 -0
- package/dist-assets/docs/references/frontend-quality/quality-failure-examples.md +20 -0
- package/dist-assets/docs/references/frontend-quality/visual-composition-patterns.md +10 -0
- package/dist-assets/docs/specs/runtime-operational-contract.md +39 -0
- package/dist-assets/docs/troubleshooting-guide.md +21 -0
- package/dist-assets/examples/README.md +10 -0
- package/dist-assets/examples/autopilot-cycle/00-CONTEXT.md +3 -0
- package/dist-assets/examples/autopilot-cycle/01-requirement.md +16 -0
- package/dist-assets/examples/autopilot-cycle/02-gate-a-check.md +23 -0
- package/dist-assets/examples/autopilot-cycle/03-orion-planning.md +20 -0
- package/dist-assets/examples/autopilot-cycle/04-astra-implementation.md +17 -0
- package/dist-assets/examples/autopilot-cycle/05-sage-validation.md +15 -0
- package/dist-assets/examples/autopilot-cycle/06-phoenix-healing.md +12 -0
- package/dist-assets/examples/autopilot-cycle/07-orchestration-report.md +18 -0
- package/dist-assets/examples/backend-api/00-CONTEXT.md +12 -0
- package/dist-assets/examples/backend-api/01-requirement.md +19 -0
- package/dist-assets/examples/backend-api/02-functional-spec.md +20 -0
- package/dist-assets/examples/backend-api/03-technical-plan.md +15 -0
- package/dist-assets/examples/backend-api/04-pr-breakdown.md +10 -0
- package/dist-assets/examples/backend-api/05-execution-handoff.md +13 -0
- package/dist-assets/examples/backend-api/06-validation-report.md +11 -0
- package/dist-assets/examples/backend-api/07-orchestration-report.md +7 -0
- package/dist-assets/examples/blocked-scenarios/00-CONTEXT.md +9 -0
- package/dist-assets/examples/blocked-scenarios/01-branch-gate-block.md +12 -0
- package/dist-assets/examples/blocked-scenarios/02-quality-gate-block.md +13 -0
- package/dist-assets/examples/blocked-scenarios/03-scope-creep-block.md +13 -0
- package/dist-assets/examples/blocked-scenarios/04-unblock-resolution.md +9 -0
- package/dist-assets/examples/blocked-scenarios/05-orchestration-decision-log.md +11 -0
- package/dist-assets/examples/bugfix-critical/00-CONTEXT.md +12 -0
- package/dist-assets/examples/bugfix-critical/01-bug-report.md +11 -0
- package/dist-assets/examples/bugfix-critical/02-diagnosis-hypothesis.md +11 -0
- package/dist-assets/examples/bugfix-critical/03-technical-plan.md +12 -0
- package/dist-assets/examples/bugfix-critical/04-implementation-handoff.md +8 -0
- package/dist-assets/examples/bugfix-critical/05-validation-report.md +10 -0
- package/dist-assets/examples/bugfix-critical/06-orchestration-report.md +7 -0
- package/dist-assets/examples/cli-package/00-CONTEXT.md +9 -0
- package/dist-assets/examples/cli-package/01-requirement.md +14 -0
- package/dist-assets/examples/cli-package/02-technical-spec.md +16 -0
- package/dist-assets/examples/cli-package/03-technical-plan.md +12 -0
- package/dist-assets/examples/cli-package/04-pr-breakdown.md +9 -0
- package/dist-assets/examples/cli-package/05-release-report.md +15 -0
- package/dist-assets/examples/docs-only-repo/01-requirement.md +31 -0
- package/dist-assets/examples/docs-only-repo/02-functional-spec.md +25 -0
- package/dist-assets/examples/docs-only-repo/03-technical-plan.md +21 -0
- package/dist-assets/examples/docs-only-repo/04-pr-breakdown.md +13 -0
- package/dist-assets/examples/docs-only-repo/05-execution-handoff.md +17 -0
- package/dist-assets/examples/docs-only-repo/06-validation-report.md +16 -0
- package/dist-assets/examples/docs-only-repo/README.md +26 -0
- package/dist-assets/examples/full-stack-checkout/00-CONTEXT.md +9 -0
- package/dist-assets/examples/full-stack-checkout/01-requirement.md +12 -0
- package/dist-assets/examples/full-stack-checkout/02-functional-spec.md +15 -0
- package/dist-assets/examples/full-stack-checkout/03-technical-plan.md +15 -0
- package/dist-assets/examples/full-stack-checkout/04-pr-breakdown.md +8 -0
- package/dist-assets/examples/full-stack-checkout/05-execution-handoff.md +14 -0
- package/dist-assets/examples/full-stack-checkout/06-validation-report.md +12 -0
- package/dist-assets/examples/healing-cycle/00-CONTEXT.md +15 -0
- package/dist-assets/examples/healing-cycle/01-broken-implementation.md +10 -0
- package/dist-assets/examples/healing-cycle/02-sage-fails.md +14 -0
- package/dist-assets/examples/healing-cycle/03-phoenix-diagnosis.md +17 -0
- package/dist-assets/examples/healing-cycle/04-phoenix-fix.md +18 -0
- package/dist-assets/examples/healing-cycle/05-sage-revalidation.md +12 -0
- package/dist-assets/examples/healing-cycle/06-orchestration-log.md +14 -0
- package/dist-assets/examples/infra-deploy/00-CONTEXT.md +9 -0
- package/dist-assets/examples/infra-deploy/01-operational-goal.md +12 -0
- package/dist-assets/examples/infra-deploy/02-architecture-specs.md +15 -0
- package/dist-assets/examples/infra-deploy/03-implementation-plan.md +14 -0
- package/dist-assets/examples/infra-deploy/04-step-breakdown.md +9 -0
- package/dist-assets/examples/infra-deploy/05-execution-handoff.md +13 -0
- package/dist-assets/examples/infra-deploy/06-operational-report.md +11 -0
- package/dist-assets/examples/multi-pr-release/00-CONTEXT.md +9 -0
- package/dist-assets/examples/multi-pr-release/01-requirement.md +13 -0
- package/dist-assets/examples/multi-pr-release/02-strategic-plan.md +13 -0
- package/dist-assets/examples/multi-pr-release/03-pr-breakdown.md +14 -0
- package/dist-assets/examples/multi-pr-release/04-release-plan.md +12 -0
- package/dist-assets/examples/multi-pr-release/05-orchestration-report.md +7 -0
- package/dist-assets/examples/nuxt-dashboard/01-requirement.md +81 -0
- package/dist-assets/examples/nuxt-dashboard/02-functional-spec.md +88 -0
- package/dist-assets/examples/nuxt-dashboard/03-technical-plan.md +76 -0
- package/dist-assets/examples/nuxt-dashboard/04-pr-breakdown.md +219 -0
- package/dist-assets/examples/nuxt-dashboard/05-execution-handoff.md +88 -0
- package/dist-assets/examples/nuxt-dashboard/06-validation-report.md +56 -0
- package/dist-assets/examples/nuxt-dashboard/07-orchestration-report.md +79 -0
- package/dist-assets/examples/nuxt-dashboard/README.md +52 -0
- package/dist-assets/examples/react-dashboard/01-requirement.md +84 -0
- package/dist-assets/examples/react-dashboard/02-functional-spec.md +88 -0
- package/dist-assets/examples/react-dashboard/03-technical-plan.md +76 -0
- package/dist-assets/examples/react-dashboard/04-pr-breakdown.md +218 -0
- package/dist-assets/examples/react-dashboard/05-execution-handoff.md +13 -0
- package/dist-assets/examples/react-dashboard/06-validation-report.md +12 -0
- package/dist-assets/examples/react-dashboard/07-orchestration-report.md +7 -0
- package/dist-assets/examples/react-dashboard/README.md +70 -0
- package/dist-assets/examples/refactoring-service/00-CONTEXT.md +9 -0
- package/dist-assets/examples/refactoring-service/01-debt-report.md +12 -0
- package/dist-assets/examples/refactoring-service/02-behavior-spec.md +11 -0
- package/dist-assets/examples/refactoring-service/03-technical-plan.md +13 -0
- package/dist-assets/examples/refactoring-service/04-pr-breakdown.md +9 -0
- package/dist-assets/examples/refactoring-service/05-execution-handoff.md +14 -0
- package/dist-assets/examples/refactoring-service/06-stability-report.md +12 -0
- package/dist-assets/examples/sdd-cycle/00-CONTEXT.md +12 -0
- package/dist-assets/examples/sdd-cycle/01-raw-request.md +13 -0
- package/dist-assets/examples/sdd-cycle/02-spec-creation.md +18 -0
- package/dist-assets/examples/sdd-cycle/03-spec-review.md +12 -0
- package/dist-assets/examples/sdd-cycle/04-technical-plan.md +16 -0
- package/dist-assets/examples/sdd-cycle/05-pr-breakdown.md +9 -0
- package/dist-assets/examples/sdd-cycle/06-spec-implement.md +13 -0
- package/dist-assets/examples/sdd-cycle/07-validation-against-spec.md +13 -0
- package/dist-assets/examples/wordpress-theme/01-requirement.md +29 -0
- package/dist-assets/examples/wordpress-theme/02-functional-spec.md +22 -0
- package/dist-assets/examples/wordpress-theme/03-technical-plan.md +22 -0
- package/dist-assets/examples/wordpress-theme/04-pr-breakdown.md +14 -0
- package/dist-assets/examples/wordpress-theme/05-execution-handoff.md +17 -0
- package/dist-assets/examples/wordpress-theme/06-validation-report.md +16 -0
- package/dist-assets/examples/wordpress-theme/README.md +32 -0
- package/{harness → dist-assets/harness}/handoffs/HANDOFF.template.md +2 -2
- package/{harness → dist-assets/harness}/workflows/agent-evaluation-checklist.md +5 -5
- package/{harness → dist-assets/harness}/workflows/implement-review-validate.md +24 -0
- package/{harness → dist-assets/harness}/workflows/multi-agent-handoff.md +4 -4
- package/{harness → dist-assets/harness}/workflows/planner-executor-workflow.md +5 -5
- package/{harness → dist-assets/harness}/workflows/requirement-to-pr.md +1 -1
- package/dist-assets/runbooks/agent-delegation-workflow.md +50 -0
- package/dist-assets/runbooks/apply-starter-to-real-project.md +45 -0
- package/dist-assets/runbooks/commands-cheatsheet.md +44 -0
- package/dist-assets/runbooks/how-to-use-skills.md +44 -0
- package/dist-assets/runbooks/private-spec-publication-safety.md +35 -0
- package/{runbooks → dist-assets/runbooks}/spec-driven-development.md +3 -6
- package/dist-assets/runbooks/tutorial-walkthroughs.md +23 -0
- package/dist-assets/runbooks/use-linear-for-operational-planning.md +45 -0
- package/dist-assets/runbooks/use-napkin-project-memory.md +33 -0
- package/dist-assets/skills/architecture/SKILL.md +166 -0
- package/dist-assets/skills/backend-development/SKILL.md +166 -0
- package/dist-assets/skills/deployment/SKILL.md +166 -0
- package/dist-assets/skills/design-principles/SKILL.md +166 -0
- package/dist-assets/skills/documentation/SKILL.md +171 -0
- package/dist-assets/skills/frontend-development/SKILL.md +225 -0
- package/dist-assets/skills/full-stack-development/SKILL.md +166 -0
- package/dist-assets/skills/optimize-tokens/SKILL.md +166 -0
- package/dist-assets/skills/pr-workflow/SKILL.md +166 -0
- package/dist-assets/skills/product-discovery/SKILL.md +166 -0
- package/dist-assets/skills/product-planning/SKILL.md +166 -0
- package/dist-assets/skills/project-memory/SKILL.md +166 -0
- package/dist-assets/skills/prompt-engineer/SKILL.md +166 -0
- package/dist-assets/skills/qa-workflow/SKILL.md +186 -0
- package/dist-assets/skills/refactoring/SKILL.md +166 -0
- package/dist-assets/skills/release-workflow/SKILL.md +166 -0
- package/dist-assets/skills/spec-driven-development/SKILL.md +166 -0
- package/dist-assets/skills/technical-leadership/SKILL.md +166 -0
- package/dist-assets/skills/ui-ux-design/SKILL.md +202 -0
- package/dist-assets/templates/.geminiignore.template +8 -0
- package/dist-assets/templates/CLAUDE.md.template +20 -0
- package/dist-assets/templates/CODEX.md.template +20 -0
- package/dist-assets/templates/GEMINI.md.template +20 -0
- package/dist-assets/templates/HANDOFF.template.md +45 -0
- package/dist-assets/templates/SPEC.template.md +38 -0
- package/dist-assets/templates/change-proposal.template.md +14 -0
- package/dist-assets/templates/owner-evidence/astra-implementation.json +10 -0
- package/dist-assets/templates/owner-evidence/phoenix-remediation.json +8 -0
- package/dist-assets/templates/owner-evidence/sage-revalidation.json +8 -0
- package/dist-assets/templates/owner-evidence/sage-validation.json +8 -0
- package/dist-assets/templates/specs/deep.md +48 -0
- package/dist-assets/templates/specs/standard.md +38 -0
- package/dist-assets/templates/specs/tiny.md +19 -0
- package/package.json +42 -47
- package/src/adapters/index.js +3 -0
- package/src/adapters/platforms/claude.js +126 -0
- package/src/adapters/platforms/codex.js +100 -0
- package/src/adapters/platforms/gemini.js +232 -0
- package/src/cli.js +96 -0
- package/src/commands/collect-evidence.js +61 -0
- package/src/commands/doctor.js +186 -0
- package/{packages/ai-workflow/src → src}/commands/init.js +119 -20
- package/src/commands/run.js +111 -0
- package/src/core/completion-contract.js +35 -0
- package/src/core/gates/branch-gate.js +113 -0
- package/src/core/handoff/handoff-engine.js +78 -0
- package/src/core/healing/cli-remediation-executor.js +151 -0
- package/src/core/healing/healer-engine.js +179 -0
- package/src/core/identity.js +43 -0
- package/{packages/ai-workflow/src → src}/core/install-plan.js +3 -3
- package/src/core/opencode-merge.js +149 -0
- package/{packages/ai-workflow/src → src}/core/package-assets.js +29 -10
- package/src/core/sdd/validator.js +67 -0
- package/src/core/statuses.js +29 -0
- package/src/core/symlink-layout.js +93 -0
- package/src/core/templates.js +218 -0
- package/src/core/validation/canonical-finalization.js +43 -0
- package/src/core/validation/evidence-collector.js +109 -0
- package/src/core/validation/quality-guard.js +243 -0
- package/src/core/workflow-profiles.js +107 -0
- package/.agents/napkin.md +0 -89
- package/.agents/skills/backend-implementer/SKILL.md +0 -490
- package/.agents/skills/build-and-validate/SKILL.md +0 -442
- package/.agents/skills/deploy-engineer/SKILL.md +0 -541
- package/.agents/skills/docs-writer/SKILL.md +0 -430
- package/.agents/skills/frontend-implementer/SKILL.md +0 -488
- package/.agents/skills/interface-design/SKILL.md +0 -428
- package/.agents/skills/interface-design/references/critique.md +0 -67
- package/.agents/skills/interface-design/references/example.md +0 -86
- package/.agents/skills/interface-design/references/principles.md +0 -235
- package/.agents/skills/interface-design/references/validation.md +0 -48
- package/.agents/skills/minimal-context/SKILL.md +0 -177
- package/.agents/skills/napkin/SKILL.md +0 -84
- package/.agents/skills/opencode-agent-design/SKILL.md +0 -77
- package/.agents/skills/playwright-cli/SKILL.md +0 -62
- package/.agents/skills/pr-orchestrator/SKILL.md +0 -366
- package/.agents/skills/product-manager/SKILL.md +0 -519
- package/.agents/skills/seo-audit/SKILL.md +0 -176
- package/.agents/skills/stack-variant-creator/SKILL.md +0 -265
- package/.agents/skills/tech-lead/SKILL.md +0 -453
- package/.agents/skills/tester/SKILL.md +0 -399
- package/.agents/skills/token-economy/SKILL.md +0 -137
- package/.agents/skills/vue-nuxt/SKILL.md +0 -102
- package/.agents/skills/wordpress-engineer/SKILL.md +0 -75
- package/.codex/prompts/README.md +0 -44
- package/.codex/prompts/autopilot.md +0 -50
- package/.codex/prompts/deploy.md +0 -33
- package/.codex/prompts/execute-selected-pr.md +0 -35
- package/.codex/prompts/fix-issue.md +0 -34
- package/.codex/prompts/minimal-context-mode.md +0 -55
- package/.codex/prompts/orchestrate-next.md +0 -33
- package/.codex/prompts/plan-from-requirement.md +0 -37
- package/.codex/prompts/review-implementation.md +0 -33
- package/.codex/prompts/roadmap-audit.md +0 -22
- package/.codex/prompts/specs/create-spec-from-requirement.md +0 -26
- package/.codex/prompts/specs/review-spec.md +0 -29
- package/.codex/prompts/specs/spec-to-pr-breakdown.md +0 -23
- package/.codex/prompts/specs/spec-to-technical-plan.md +0 -28
- package/.codex/prompts/start-project.md +0 -29
- package/.codex/prompts/token-economy-mode.md +0 -48
- package/.codex/prompts/validate-work.md +0 -28
- package/checklists/change-spec-readiness-checklist.md +0 -34
- package/docs/full-documentation.md +0 -661
- package/docs/setup-codex-opencode.md +0 -313
- package/harness/README.md +0 -106
- package/opencode/README.md +0 -84
- package/opencode/agents/README.md +0 -113
- package/opencode/agents/atlas.md +0 -127
- package/opencode/agents/discovery.md +0 -61
- package/opencode/agents/fixer.md +0 -51
- package/opencode/agents/implementer.md +0 -61
- package/opencode/agents/orchestrator.md +0 -145
- package/opencode/agents/planner.md +0 -60
- package/opencode/agents/prompt-engineer.md +0 -50
- package/opencode/agents/release-manager.md +0 -50
- package/opencode/agents/reviewer.md +0 -51
- package/opencode/agents/spec-engineer.md +0 -85
- package/opencode/agents/validator.md +0 -50
- package/opencode/agents/wordpress-engineer.md +0 -49
- package/opencode/commands/README.md +0 -48
- package/opencode/commands/autopilot.md +0 -50
- package/opencode/commands/deploy.md +0 -35
- package/opencode/commands/execute.md +0 -47
- package/opencode/commands/orchestrate.md +0 -37
- package/opencode/commands/plan.md +0 -39
- package/opencode/commands/review.md +0 -33
- package/opencode/commands/roadmap-audit.md +0 -30
- package/opencode/commands/ship.md +0 -48
- package/opencode/commands/specs/create-spec-from-request.md +0 -27
- package/opencode/commands/specs/create-spec-from-requirement.md +0 -25
- package/opencode/commands/specs/review-spec.md +0 -26
- package/opencode/commands/specs/spec-to-pr-breakdown.md +0 -19
- package/opencode/commands/specs/spec-to-tasks.md +0 -26
- package/opencode/commands/specs/spec-to-technical-plan.md +0 -27
- package/opencode/commands/start.md +0 -45
- package/opencode/commands/token-economy.md +0 -29
- package/opencode/commands/validate.md +0 -33
- package/opencode.jsonc +0 -235
- package/packages/ai-workflow/README.md +0 -82
- package/packages/ai-workflow/src/cli.js +0 -70
- package/packages/ai-workflow/src/commands/codex.js +0 -37
- package/packages/ai-workflow/src/commands/doctor.js +0 -168
- package/packages/ai-workflow/src/commands/guide.js +0 -194
- package/packages/ai-workflow/src/core/opencode-merge.js +0 -172
- package/packages/ai-workflow/src/core/symlink-layout.js +0 -54
- package/packages/ai-workflow/src/core/templates.js +0 -275
- package/runbooks/agent-delegation-workflow.md +0 -111
- package/runbooks/apply-starter-to-real-project.md +0 -445
- package/runbooks/commands-cheatsheet.md +0 -71
- package/runbooks/how-to-use-skills.md +0 -713
- package/runbooks/quick-start-guide.md +0 -213
- package/runbooks/tutorial-walkthroughs.md +0 -416
- package/runbooks/use-linear-for-operational-planning.md +0 -185
- package/runbooks/use-napkin-project-memory.md +0 -77
- package/templates/AGENTS.template.md +0 -397
- package/templates/DESIGN.template.md +0 -484
- package/templates/PR-PLAN.template.md +0 -172
- package/templates/README.template.md +0 -293
- package/templates/REQUIREMENT.template.md +0 -165
- package/templates/SPEC.template.md +0 -397
- package/templates/TECH-PLAN.template.md +0 -244
- package/templates/change-proposal.template.md +0 -97
- /package/{checklists/spec-readiness-checklist.md → dist-assets/docs/policies/SPEC_READINESS.md} +0 -0
- /package/{prompts → dist-assets/prompts}/00-bootstrap-project.md +0 -0
- /package/{prompts → dist-assets/prompts}/01-create-requirement.md +0 -0
- /package/{prompts → dist-assets/prompts}/02-create-spec.md +0 -0
- /package/{prompts → dist-assets/prompts}/03-create-tech-plan.md +0 -0
- /package/{prompts → dist-assets/prompts}/04-breakdown-prs.md +0 -0
- /package/{prompts → dist-assets/prompts}/05-implement-pr.md +0 -0
- /package/{prompts → dist-assets/prompts}/06-review-and-fix.md +0 -0
- /package/{prompts → dist-assets/prompts}/07-apply-design.md +0 -0
- /package/{prompts → dist-assets/prompts}/08-validate.md +0 -0
- /package/{prompts → dist-assets/prompts}/09-deploy.md +0 -0
- /package/{prompts → dist-assets/prompts}/commands/implement.md +0 -0
- /package/{prompts → dist-assets/prompts}/commands/requirement.md +0 -0
- /package/{prompts → dist-assets/prompts}/commands/spec.md +0 -0
- /package/{prompts → dist-assets/prompts}/commands/tech-plan.md +0 -0
- /package/{prompts → dist-assets/prompts}/commands/validate.md +0 -0
- /package/{runbooks → dist-assets/runbooks}/branch-cleanup.md +0 -0
- /package/{runbooks → dist-assets/runbooks}/deploy-checklist.md +0 -0
- /package/{runbooks → dist-assets/runbooks}/publication-readiness-checklist.md +0 -0
- /package/{runbooks → dist-assets/runbooks}/publish-package-checklist.md +0 -0
- /package/{runbooks → dist-assets/runbooks}/team-governance-pr-readiness.md +0 -0
- /package/{runbooks → dist-assets/runbooks}/validate-starter-in-real-project.md +0 -0
- /package/{runbooks → dist-assets/runbooks}/validation-checklist.md +0 -0
- /package/{schemas → dist-assets/schemas}/README.md +0 -0
- /package/{schemas → dist-assets/schemas}/functional-spec.schema.json +0 -0
- /package/{schemas → dist-assets/schemas}/handoff.schema.json +0 -0
- /package/{schemas → dist-assets/schemas}/pr-breakdown.schema.json +0 -0
- /package/{schemas → dist-assets/schemas}/requirement.schema.json +0 -0
- /package/{schemas → dist-assets/schemas}/technical-plan.schema.json +0 -0
- /package/{schemas → dist-assets/schemas}/validation-report.schema.json +0 -0
- /package/{packages/ai-workflow/src → src}/core/backup.js +0 -0
- /package/{packages/ai-workflow/src → src}/core/filesystem.js +0 -0
|
@@ -1,661 +0,0 @@
|
|
|
1
|
-
# AI Workflow Kit full documentation
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
This document is the detailed reference for **AI Workflow Kit**.
|
|
6
|
-
|
|
7
|
-
Use the root `README.md` as the landing page. Use this document when you need the full repository map, workflow explanation, role model, validation model, and adoption guidance.
|
|
8
|
-
|
|
9
|
-
## What AI Workflow Kit is
|
|
10
|
-
|
|
11
|
-
AI Workflow Kit is a documentation-first workflow system for AI-assisted software delivery.
|
|
12
|
-
|
|
13
|
-
It helps developers and teams use Codex, OpenCode, and agentic coding tools with:
|
|
14
|
-
|
|
15
|
-
- clear requirements before implementation;
|
|
16
|
-
- functional specifications before technical plans;
|
|
17
|
-
- small PRs instead of uncontrolled generation;
|
|
18
|
-
- specialist roles instead of generic assistant behavior;
|
|
19
|
-
- validation evidence before approval;
|
|
20
|
-
- no-regression rules;
|
|
21
|
-
- local-first safety gates;
|
|
22
|
-
- explicit handoffs across planning, implementation, review, validation, and release.
|
|
23
|
-
|
|
24
|
-
## What AI Workflow Kit is not
|
|
25
|
-
|
|
26
|
-
This repository is intentionally not:
|
|
27
|
-
|
|
28
|
-
- an application starter;
|
|
29
|
-
- a framework boilerplate;
|
|
30
|
-
- a Nuxt, React, WordPress, Node.js, or Python production template;
|
|
31
|
-
- a UI kit;
|
|
32
|
-
- a design system implementation;
|
|
33
|
-
- a hosted service;
|
|
34
|
-
- a replacement for senior technical judgment.
|
|
35
|
-
|
|
36
|
-
Stack-specific variants exist to guide workflows, not to generate complete applications.
|
|
37
|
-
|
|
38
|
-
## Core philosophy
|
|
39
|
-
|
|
40
|
-
Most AI coding failures come from starting too late in the workflow.
|
|
41
|
-
|
|
42
|
-
Weak path:
|
|
43
|
-
|
|
44
|
-
```txt
|
|
45
|
-
Idea → Generate code → Review huge diff → Discover missing context
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
Preferred path:
|
|
49
|
-
|
|
50
|
-
```txt
|
|
51
|
-
Idea
|
|
52
|
-
→ Requirement
|
|
53
|
-
→ Functional specification
|
|
54
|
-
→ Technical plan
|
|
55
|
-
→ PR breakdown
|
|
56
|
-
→ Implement one PR
|
|
57
|
-
→ Review and fix
|
|
58
|
-
→ Validate with evidence
|
|
59
|
-
→ Ship only when ready
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
The goal is not to make AI write more code. The goal is to make AI work with clearer context, smaller scope, stronger constraints, and real validation.
|
|
63
|
-
|
|
64
|
-
## Repository structure
|
|
65
|
-
|
|
66
|
-
```txt
|
|
67
|
-
ai-workflow/
|
|
68
|
-
├── .agents/
|
|
69
|
-
│ ├── napkin.md
|
|
70
|
-
│ └── skills/
|
|
71
|
-
├── .codex/
|
|
72
|
-
│ └── prompts/
|
|
73
|
-
├── .github/
|
|
74
|
-
│ └── workflows/
|
|
75
|
-
├── docs/
|
|
76
|
-
│ └── adr/
|
|
77
|
-
├── examples/
|
|
78
|
-
├── harness/
|
|
79
|
-
│ ├── handoffs/
|
|
80
|
-
│ └── workflows/
|
|
81
|
-
├── opencode/
|
|
82
|
-
│ ├── agents/
|
|
83
|
-
│ └── commands/
|
|
84
|
-
├── prompts/
|
|
85
|
-
│ └── commands/
|
|
86
|
-
├── runbooks/
|
|
87
|
-
├── schemas/
|
|
88
|
-
├── scripts/
|
|
89
|
-
├── templates/
|
|
90
|
-
├── tests/
|
|
91
|
-
├── variants/
|
|
92
|
-
├── AGENTS.md
|
|
93
|
-
├── README.md
|
|
94
|
-
├── ROADMAP.md
|
|
95
|
-
└── package.json
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
## Directory guide
|
|
99
|
-
|
|
100
|
-
| Path | Purpose |
|
|
101
|
-
| --- | --- |
|
|
102
|
-
| `AGENTS.md` | Main operational contract for AI agents in this repository. |
|
|
103
|
-
| [`.agents/skills/`](.agents/skills/) | Reusable specialist skill definitions. |
|
|
104
|
-
| [`.agents/napkin.md`](.agents/napkin.md) | Durable project memory index. |
|
|
105
|
-
| [`.codex/prompts/`](.codex/prompts/) | Compact Codex prompt entrypoints. |
|
|
106
|
-
| [`docs/`](docs/) | Architecture policy, design pattern policy, ADRs, and project documentation. |
|
|
107
|
-
| [`examples/`](examples/) | Documentation-only workflow examples. |
|
|
108
|
-
| [`harness/`](harness/) | Workflow gates, handoff contracts, and execution harness documents. |
|
|
109
|
-
| [`opencode/agents/`](opencode/agents/) | OpenCode role prompts. |
|
|
110
|
-
| [`opencode/commands/`](opencode/commands/) | OpenCode command entrypoints. |
|
|
111
|
-
| [`prompts/`](prompts/) | Ordered workflow prompts from bootstrap to deploy. |
|
|
112
|
-
| [`runbooks/`](runbooks/) | Operational procedures for real usage. |
|
|
113
|
-
| [`schemas/`](schemas/) | Lightweight JSON Schema contracts for workflow outputs. |
|
|
114
|
-
| [`scripts/`](scripts/) | Validation and workflow helper scripts. |
|
|
115
|
-
| [`templates/`](templates/) | Reusable document templates. |
|
|
116
|
-
| [`tests/`](tests/) | End-to-end validation tests. |
|
|
117
|
-
| [`variants/`](variants/) | Optional stack-specific workflow variants. |
|
|
118
|
-
|
|
119
|
-
## Main workflow
|
|
120
|
-
|
|
121
|
-
Use the full workflow for medium or high-risk changes:
|
|
122
|
-
|
|
123
|
-
| Step | Output | Primary file |
|
|
124
|
-
| ---: | --- | --- |
|
|
125
|
-
| 00 | Project foundation | [`prompts/00-bootstrap-project.md`](prompts/00-bootstrap-project.md) |
|
|
126
|
-
| 01 | Requirement | [`prompts/01-create-requirement.md`](prompts/01-create-requirement.md) |
|
|
127
|
-
| 02 | Functional specification | [`prompts/02-create-spec.md`](prompts/02-create-spec.md) |
|
|
128
|
-
| 03 | Technical plan | [`prompts/03-create-tech-plan.md`](prompts/03-create-tech-plan.md) |
|
|
129
|
-
| 04 | PR breakdown | [`prompts/04-breakdown-prs.md`](prompts/04-breakdown-prs.md) |
|
|
130
|
-
| 05 | Implemented PR | [`prompts/05-implement-pr.md`](prompts/05-implement-pr.md) |
|
|
131
|
-
| 06 | Review and fixes | [`prompts/06-review-and-fix.md`](prompts/06-review-and-fix.md) |
|
|
132
|
-
| 07 | Design pass | [`prompts/07-apply-design.md`](prompts/07-apply-design.md) |
|
|
133
|
-
| 08 | Validation report | [`prompts/08-validate.md`](prompts/08-validate.md) |
|
|
134
|
-
| 09 | Deploy plan | [`prompts/09-deploy.md`](prompts/09-deploy.md) |
|
|
135
|
-
|
|
136
|
-
For small documentation fixes, use a proportional workflow:
|
|
137
|
-
|
|
138
|
-
```txt
|
|
139
|
-
Define change → Edit file → Validate Markdown/references → Review scope
|
|
140
|
-
```
|
|
141
|
-
|
|
142
|
-
## Codex usage
|
|
143
|
-
|
|
144
|
-
For installation and first-run setup, see [`docs/setup-codex-opencode.md`](docs/setup-codex-opencode.md).
|
|
145
|
-
|
|
146
|
-
Codex is fully supported through shared repository rules and prompt entrypoints.
|
|
147
|
-
|
|
148
|
-
Use [`AGENTS.md`](AGENTS.md) as the main operating contract and select the prompt that matches the current step.
|
|
149
|
-
|
|
150
|
-
| Prompt | Purpose |
|
|
151
|
-
| --- | --- |
|
|
152
|
-
| [`.codex/prompts/start-project.md`](.codex/prompts/start-project.md) | Start a project workflow. |
|
|
153
|
-
| [`.codex/prompts/plan-from-requirement.md`](.codex/prompts/plan-from-requirement.md) | Plan from an existing requirement. |
|
|
154
|
-
| [`.codex/prompts/execute-selected-pr.md`](.codex/prompts/execute-selected-pr.md) | Execute one selected PR. |
|
|
155
|
-
| [`.codex/prompts/review-implementation.md`](.codex/prompts/review-implementation.md) | Review an implementation. |
|
|
156
|
-
| [`.codex/prompts/validate-work.md`](.codex/prompts/validate-work.md) | Validate work with evidence. |
|
|
157
|
-
| [`.codex/prompts/orchestrate-next.md`](.codex/prompts/orchestrate-next.md) | Progress gate-based handoffs manually. (OpenCode equivalent: [`opencode/commands/orchestrate.md`](opencode/commands/orchestrate.md)) |
|
|
158
|
-
| [`.codex/prompts/fix-issue.md`](.codex/prompts/fix-issue.md) | Diagnose and fix an issue. (OpenCode equivalent: [`opencode/agents/fixer.md`](opencode/agents/fixer.md)) |
|
|
159
|
-
| [`.codex/prompts/autopilot.md`](.codex/prompts/autopilot.md) | Use a local-first task router. |
|
|
160
|
-
| [`.codex/prompts/deploy.md`](.codex/prompts/deploy.md) | Prepare deployment readiness. |
|
|
161
|
-
| [`.codex/prompts/token-economy-mode.md`](.codex/prompts/token-economy-mode.md) | Reduce output verbosity. |
|
|
162
|
-
| [`.codex/prompts/minimal-context-mode.md`](.codex/prompts/minimal-context-mode.md) | Reduce input context loading. |
|
|
163
|
-
| [`.codex/prompts/roadmap-audit.md`](.codex/prompts/roadmap-audit.md) | Audit roadmap state and next work. |
|
|
164
|
-
|
|
165
|
-
Spec-Driven prompts:
|
|
166
|
-
|
|
167
|
-
| Prompt | Purpose |
|
|
168
|
-
| --- | --- |
|
|
169
|
-
| [`.codex/prompts/specs/create-spec-from-requirement.md`](.codex/prompts/specs/create-spec-from-requirement.md) | Draft a testable spec from an approved requirement. |
|
|
170
|
-
| [`.codex/prompts/specs/review-spec.md`](.codex/prompts/specs/review-spec.md) | Review spec readiness before technical planning. |
|
|
171
|
-
| [`.codex/prompts/specs/spec-to-technical-plan.md`](.codex/prompts/specs/spec-to-technical-plan.md) | Convert an approved spec into technical planning output. |
|
|
172
|
-
| [`.codex/prompts/specs/spec-to-pr-breakdown.md`](.codex/prompts/specs/spec-to-pr-breakdown.md) | Split an approved spec into small, reviewable PRs. |
|
|
173
|
-
|
|
174
|
-
Codex orchestration is explicit and prompt-driven. It should follow gates manually using [`harness/workflows/multi-agent-handoff.md`](harness/workflows/multi-agent-handoff.md).
|
|
175
|
-
|
|
176
|
-
## OpenCode usage
|
|
177
|
-
|
|
178
|
-
For installation and first-run setup, see [`docs/setup-codex-opencode.md`](docs/setup-codex-opencode.md).
|
|
179
|
-
|
|
180
|
-
OpenCode is the primary integrated experience because this repository includes project configuration, command prompts, agent roles, and routing conventions.
|
|
181
|
-
|
|
182
|
-
OpenCode assets:
|
|
183
|
-
|
|
184
|
-
- [`opencode.jsonc`](opencode.jsonc) — project registry for commands and agents;
|
|
185
|
-
- [`opencode/commands/`](opencode/commands/) — command entrypoints;
|
|
186
|
-
- [`opencode/agents/`](opencode/agents/) — role prompts.
|
|
187
|
-
|
|
188
|
-
| Command | Purpose |
|
|
189
|
-
| --- | --- |
|
|
190
|
-
| [`opencode/commands/start.md`](opencode/commands/start.md) | Start workflow discovery. |
|
|
191
|
-
| [`opencode/commands/plan.md`](opencode/commands/plan.md) | Create scoped planning output. |
|
|
192
|
-
| [`opencode/commands/execute.md`](opencode/commands/execute.md) | Execute one selected PR. |
|
|
193
|
-
| [`opencode/commands/review.md`](opencode/commands/review.md) | Review implementation. |
|
|
194
|
-
| [`opencode/commands/validate.md`](opencode/commands/validate.md) | Validate with evidence. |
|
|
195
|
-
| [`opencode/commands/orchestrate.md`](opencode/commands/orchestrate.md) | Run gate-based handoff routing. |
|
|
196
|
-
| [`opencode/commands/ship.md`](opencode/commands/ship.md) | Run end-to-end shipping workflow. |
|
|
197
|
-
| [`opencode/commands/autopilot.md`](opencode/commands/autopilot.md) | Use a local-first task router. |
|
|
198
|
-
| [`opencode/commands/deploy.md`](opencode/commands/deploy.md) | Prepare deployment readiness. |
|
|
199
|
-
| [`opencode/commands/token-economy.md`](opencode/commands/token-economy.md) | Use compact output mode. |
|
|
200
|
-
| [`opencode/commands/roadmap-audit.md`](opencode/commands/roadmap-audit.md) | Audit roadmap state and next work. |
|
|
201
|
-
|
|
202
|
-
Spec-Driven commands:
|
|
203
|
-
|
|
204
|
-
| Command | Purpose |
|
|
205
|
-
| --- | --- |
|
|
206
|
-
| [`opencode/commands/specs/create-spec-from-request.md`](opencode/commands/specs/create-spec-from-request.md) | Turn a vague request into a lightweight change artifact before coding. |
|
|
207
|
-
| [`opencode/commands/specs/create-spec-from-requirement.md`](opencode/commands/specs/create-spec-from-requirement.md) | Draft a testable spec from an approved requirement. |
|
|
208
|
-
| [`opencode/commands/specs/review-spec.md`](opencode/commands/specs/review-spec.md) | Review spec readiness before technical planning. |
|
|
209
|
-
| [`opencode/commands/specs/spec-to-technical-plan.md`](opencode/commands/specs/spec-to-technical-plan.md) | Convert an approved spec into technical planning output. |
|
|
210
|
-
| [`opencode/commands/specs/spec-to-pr-breakdown.md`](opencode/commands/specs/spec-to-pr-breakdown.md) | Split an approved spec into small, reviewable PRs. |
|
|
211
|
-
| [`opencode/commands/specs/spec-to-tasks.md`](opencode/commands/specs/spec-to-tasks.md) | Convert approved spec into small implementation tasks with validation and evidence. |
|
|
212
|
-
|
|
213
|
-
Consumer-project artifact path convention for lightweight specs:
|
|
214
|
-
|
|
215
|
-
```txt
|
|
216
|
-
docs/specs/[spec-type]/[yyyy-mm-dd]-[change-slug]/
|
|
217
|
-
```
|
|
218
|
-
|
|
219
|
-
## OpenCode agent model
|
|
220
|
-
|
|
221
|
-
OpenCode agents are operational roles. Skills are reusable capabilities. Commands are user-facing entrypoints.
|
|
222
|
-
|
|
223
|
-
| Agent | Role |
|
|
224
|
-
| --- | --- |
|
|
225
|
-
| [`atlas`](opencode/agents/atlas.md) | Primary senior engineering partner and workflow orchestrator. |
|
|
226
|
-
| [`discovery`](opencode/agents/discovery.md) | Explore project context before planning. |
|
|
227
|
-
| [`spec-engineer`](opencode/agents/spec-engineer.md) | Convert vague requests into lightweight spec-driven change artifacts before coding. |
|
|
228
|
-
| [`planner`](opencode/agents/planner.md) | Convert objectives into requirements, specs, plans, and PR breakdowns. |
|
|
229
|
-
| [`orchestrator`](opencode/agents/orchestrator.md) | Route multi-step work across gates and specialists. |
|
|
230
|
-
| [`implementer`](opencode/agents/implementer.md) | Implement scoped changes. |
|
|
231
|
-
| [`fixer`](opencode/agents/fixer.md) | Diagnose and fix issues. |
|
|
232
|
-
| [`reviewer`](opencode/agents/reviewer.md) | Review implementation quality and scope. |
|
|
233
|
-
| [`validator`](opencode/agents/validator.md) | Run validation and collect evidence. |
|
|
234
|
-
| [`release-manager`](opencode/agents/release-manager.md) | Prepare release, deployment, and rollback readiness. |
|
|
235
|
-
| [`wordpress-engineer`](opencode/agents/wordpress-engineer.md) | Handle WordPress/PHP-specific workflow. |
|
|
236
|
-
| [`prompt-engineer`](opencode/agents/prompt-engineer.md) | Improve prompts, commands, and agent instructions. |
|
|
237
|
-
|
|
238
|
-
## Specialist skills
|
|
239
|
-
|
|
240
|
-
Skills define focused behavior for AI agents. Use exactly one primary skill per task unless a supporting skill closes a concrete gap.
|
|
241
|
-
|
|
242
|
-
| Skill | Use when |
|
|
243
|
-
| --- | --- |
|
|
244
|
-
| [`product-manager`](.agents/skills/product-manager/SKILL.md) | Clarifying requirements, users, scope, and acceptance criteria. |
|
|
245
|
-
| [`tech-lead`](.agents/skills/tech-lead/SKILL.md) | Planning architecture, trade-offs, risks, and sequencing. |
|
|
246
|
-
| [`pr-orchestrator`](.agents/skills/pr-orchestrator/SKILL.md) | Splitting, executing, reviewing, and summarizing small PRs. |
|
|
247
|
-
| [`frontend-implementer`](.agents/skills/frontend-implementer/SKILL.md) | Frontend UI, routing, state, styling, and accessibility work. |
|
|
248
|
-
| [`backend-implementer`](.agents/skills/backend-implementer/SKILL.md) | APIs, services, data, validation, auth, and server-side tests. |
|
|
249
|
-
| [`tester`](.agents/skills/tester/SKILL.md) | Acceptance criteria, regression coverage, and validation evidence. |
|
|
250
|
-
| [`build-and-validate`](.agents/skills/build-and-validate/SKILL.md) | Build, lint, typecheck, test, and validation failures. |
|
|
251
|
-
| [`docs-writer`](.agents/skills/docs-writer/SKILL.md) | README, runbooks, prompts, templates, and documentation updates. |
|
|
252
|
-
| [`deploy-engineer`](.agents/skills/deploy-engineer/SKILL.md) | Release, deployment, rollback, and CI/CD readiness. |
|
|
253
|
-
| [`interface-design`](.agents/skills/interface-design/SKILL.md) | Product interface design and UI quality passes. |
|
|
254
|
-
| [`minimal-context`](.agents/skills/minimal-context/SKILL.md) | Input context discipline and scoped file reading. |
|
|
255
|
-
| [`napkin`](.agents/skills/napkin/SKILL.md) | Durable project memory updates. |
|
|
256
|
-
| [`opencode-agent-design`](.agents/skills/opencode-agent-design/SKILL.md) | OpenCode agent, command, and routing design. |
|
|
257
|
-
| [`playwright-cli`](.agents/skills/playwright-cli/SKILL.md) | Browser test workflows and Playwright evidence. |
|
|
258
|
-
| [`stack-variant-creator`](.agents/skills/stack-variant-creator/SKILL.md) | Creating new stack-specific workflow variants. |
|
|
259
|
-
| [`token-economy`](.agents/skills/token-economy/SKILL.md) | Compact output while preserving evidence. |
|
|
260
|
-
| [`vue-nuxt`](.agents/skills/vue-nuxt/SKILL.md) | Vue/Nuxt architecture, dashboards, CRUD patterns, stores, composables, and TypeScript contracts. |
|
|
261
|
-
| [`wordpress-engineer`](.agents/skills/wordpress-engineer/SKILL.md) | WordPress, WooCommerce, ACF, themes, and PHP 7-compatible work. |
|
|
262
|
-
| [`seo-audit`](.agents/skills/seo-audit/SKILL.md) | Auditing SEO, AEO, and GEO signals with evidence-based findings. |
|
|
263
|
-
|
|
264
|
-
## Skill routing
|
|
265
|
-
|
|
266
|
-
| Expected output | Primary skill |
|
|
267
|
-
| --- | --- |
|
|
268
|
-
| Requirement or acceptance criteria | `product-manager` |
|
|
269
|
-
| Technical plan | `tech-lead` |
|
|
270
|
-
| PR breakdown | `pr-orchestrator` |
|
|
271
|
-
| Frontend implementation | `frontend-implementer` |
|
|
272
|
-
| Backend implementation | `backend-implementer` |
|
|
273
|
-
| Test strategy or review | `tester` |
|
|
274
|
-
| Command evidence or failure diagnosis | `build-and-validate` |
|
|
275
|
-
| Documentation | `docs-writer` |
|
|
276
|
-
| Deployment readiness | `deploy-engineer` |
|
|
277
|
-
| SEO/AEO/GEO audit | `seo-audit` |
|
|
278
|
-
| OpenCode agent/config design | `opencode-agent-design` |
|
|
279
|
-
| Stack variant creation | `stack-variant-creator` |
|
|
280
|
-
|
|
281
|
-
## Architecture and design policy
|
|
282
|
-
|
|
283
|
-
Before proposing application code structure, apply [`docs/architecture-policy.md`](docs/architecture-policy.md).
|
|
284
|
-
|
|
285
|
-
Required behavior:
|
|
286
|
-
|
|
287
|
-
- classify work as `simple-site`, `feature-app`, `domain-app`, `package-tooling`, or `wordpress`;
|
|
288
|
-
- choose the lowest-complexity architecture that fits;
|
|
289
|
-
- avoid Clean/Hexagonal defaults unless escalation criteria are met;
|
|
290
|
-
- do not introduce repositories, use cases, entities, DTOs, mappers, or DI by default.
|
|
291
|
-
|
|
292
|
-
Before introducing formal design patterns, apply [`docs/design-patterns-policy.md`](docs/design-patterns-policy.md).
|
|
293
|
-
|
|
294
|
-
Required behavior:
|
|
295
|
-
|
|
296
|
-
- patterns are optional tools, not defaults;
|
|
297
|
-
- justify pattern use before implementation;
|
|
298
|
-
- prefer simple functions, modules, services, composables, and component composition first;
|
|
299
|
-
- do not create abstractions for a single implementation without explicit justification.
|
|
300
|
-
|
|
301
|
-
## Handoff and gate model
|
|
302
|
-
|
|
303
|
-
The harness documents define how work moves between steps and agents:
|
|
304
|
-
|
|
305
|
-
| File | Purpose |
|
|
306
|
-
| --- | --- |
|
|
307
|
-
| [`harness/workflows/requirement-to-pr.md`](harness/workflows/requirement-to-pr.md) | Convert requirement work into PR-ready plans. |
|
|
308
|
-
| [`harness/workflows/implement-review-validate.md`](harness/workflows/implement-review-validate.md) | Move implementation through review and validation. |
|
|
309
|
-
| [`harness/workflows/multi-agent-handoff.md`](harness/workflows/multi-agent-handoff.md) | Define deterministic multi-agent gate transitions. |
|
|
310
|
-
| [`harness/workflows/planner-executor-workflow.md`](harness/workflows/planner-executor-workflow.md) | Separate planning and execution responsibilities. |
|
|
311
|
-
| [`harness/workflows/agent-evaluation-checklist.md`](harness/workflows/agent-evaluation-checklist.md) | Evaluate whether agent output is useful, safe, scoped, and validated. |
|
|
312
|
-
| [`harness/handoffs/HANDOFF.template.md`](harness/handoffs/HANDOFF.template.md) | Standard handoff packet template. |
|
|
313
|
-
|
|
314
|
-
Gate transitions should be `Pass` only when required evidence exists. Otherwise they should be `Blocked` with the smallest safe fix request.
|
|
315
|
-
|
|
316
|
-
## Templates
|
|
317
|
-
|
|
318
|
-
Templates are reusable starting points, not completed project documents.
|
|
319
|
-
|
|
320
|
-
| Template | Purpose |
|
|
321
|
-
| --- | --- |
|
|
322
|
-
| [`templates/AGENTS.template.md`](templates/AGENTS.template.md) | Base AI-agent instruction file. |
|
|
323
|
-
| [`templates/DESIGN.template.md`](templates/DESIGN.template.md) | Design guidance template. |
|
|
324
|
-
| [`templates/README.template.md`](templates/README.template.md) | Base project README. |
|
|
325
|
-
| [`templates/REQUIREMENT.template.md`](templates/REQUIREMENT.template.md) | Product requirement. |
|
|
326
|
-
| [`templates/SPEC.template.md`](templates/SPEC.template.md) | Functional specification. |
|
|
327
|
-
| [`templates/change-proposal.template.md`](templates/change-proposal.template.md) | Lightweight change proposal/spec artifact. |
|
|
328
|
-
| [`templates/TECH-PLAN.template.md`](templates/TECH-PLAN.template.md) | Technical plan. |
|
|
329
|
-
| [`templates/PR-PLAN.template.md`](templates/PR-PLAN.template.md) | PR plan. |
|
|
330
|
-
|
|
331
|
-
## Runbooks
|
|
332
|
-
|
|
333
|
-
Runbooks are operational guides for applying the workflow.
|
|
334
|
-
|
|
335
|
-
| Runbook | Purpose |
|
|
336
|
-
| --- | --- |
|
|
337
|
-
| [`runbooks/quick-start-guide.md`](runbooks/quick-start-guide.md) | Fastest path to first value. |
|
|
338
|
-
| <!-- consolidated into quick-start-guide.md --> | |
|
|
339
|
-
| [`runbooks/apply-starter-to-real-project.md`](runbooks/apply-starter-to-real-project.md) | Apply this workflow to a target project. |
|
|
340
|
-
| [`runbooks/validate-starter-in-real-project.md`](runbooks/validate-starter-in-real-project.md) | Prove adoption in a real project. |
|
|
341
|
-
| [`runbooks/how-to-use-skills.md`](runbooks/how-to-use-skills.md) | Choose specialist skills. |
|
|
342
|
-
| [`runbooks/commands-cheatsheet.md`](runbooks/commands-cheatsheet.md) | Choose Codex/OpenCode commands. |
|
|
343
|
-
| [`runbooks/spec-driven-development.md`](runbooks/spec-driven-development.md) | Run lightweight spec-first flow and artifact conventions before implementation. |
|
|
344
|
-
| [`runbooks/agent-delegation-workflow.md`](runbooks/agent-delegation-workflow.md) | Use orchestrator and handoff routing. |
|
|
345
|
-
| [`runbooks/use-linear-for-operational-planning.md`](runbooks/use-linear-for-operational-planning.md) | Use Linear as the operational backlog when the roadmap is too large for daily planning. |
|
|
346
|
-
| [`runbooks/validation-checklist.md`](runbooks/validation-checklist.md) | Validate docs, code, PRs, builds, security, accessibility, and deploy readiness. |
|
|
347
|
-
| [`runbooks/team-governance-pr-readiness.md`](runbooks/team-governance-pr-readiness.md) | Define PR readiness and approval policy. |
|
|
348
|
-
| [`runbooks/deploy-checklist.md`](runbooks/deploy-checklist.md) | Prepare deploy, smoke tests, and rollback. |
|
|
349
|
-
| [`runbooks/use-napkin-project-memory.md`](runbooks/use-napkin-project-memory.md) | Maintain durable project memory. |
|
|
350
|
-
| [`runbooks/tutorial-walkthroughs.md`](runbooks/tutorial-walkthroughs.md) | Run self-guided tutorials or video walkthroughs. |
|
|
351
|
-
| [`runbooks/publish-package-checklist.md`](runbooks/publish-package-checklist.md) | Guarded npm publish and rollback steps. |
|
|
352
|
-
|
|
353
|
-
## Stack variants
|
|
354
|
-
|
|
355
|
-
Variants tailor the generic workflow to specific project families without polluting the generic core.
|
|
356
|
-
|
|
357
|
-
| Variant | Purpose |
|
|
358
|
-
| --- | --- |
|
|
359
|
-
| [`variants/nuxt/`](variants/nuxt/) | Nuxt/Vue frontend and dashboard workflow. |
|
|
360
|
-
| [`variants/wordpress/`](variants/wordpress/) | WordPress/PHP workflow. |
|
|
361
|
-
| [`variants/docs-only/`](variants/docs-only/) | Documentation-only repository workflow. |
|
|
362
|
-
| [`variants/nodejs-api/`](variants/nodejs-api/) | Node.js API workflow. |
|
|
363
|
-
| [`variants/python-api/`](variants/python-api/) | Python API workflow. |
|
|
364
|
-
|
|
365
|
-
## Examples
|
|
366
|
-
|
|
367
|
-
Examples demonstrate workflow outputs without becoming application boilerplates.
|
|
368
|
-
|
|
369
|
-
| Example | Purpose |
|
|
370
|
-
| --- | --- |
|
|
371
|
-
| [`examples/nuxt-dashboard/`](examples/nuxt-dashboard/) | Nuxt dashboard workflow example with requirement, spec, plan, PR breakdown, handoff, validation, and orchestration report. |
|
|
372
|
-
| [`examples/docs-only-repo/`](examples/docs-only-repo/) | Documentation-only workflow example. |
|
|
373
|
-
| [`examples/react-dashboard/`](examples/react-dashboard/) | React dashboard workflow example. |
|
|
374
|
-
| [`examples/wordpress-theme/`](examples/wordpress-theme/) | WordPress theme workflow example. |
|
|
375
|
-
|
|
376
|
-
## Schemas
|
|
377
|
-
|
|
378
|
-
Schemas are lightweight completeness contracts. They are guardrails, not heavy process requirements.
|
|
379
|
-
|
|
380
|
-
| Schema | Purpose |
|
|
381
|
-
| --- | --- |
|
|
382
|
-
| [`schemas/requirement.schema.json`](schemas/requirement.schema.json) | Requirement output contract. |
|
|
383
|
-
| [`schemas/functional-spec.schema.json`](schemas/functional-spec.schema.json) | Functional specification contract. |
|
|
384
|
-
| [`schemas/technical-plan.schema.json`](schemas/technical-plan.schema.json) | Technical plan contract. |
|
|
385
|
-
| [`schemas/pr-breakdown.schema.json`](schemas/pr-breakdown.schema.json) | PR breakdown contract. |
|
|
386
|
-
| [`schemas/handoff.schema.json`](schemas/handoff.schema.json) | Handoff packet contract. |
|
|
387
|
-
| [`schemas/validation-report.schema.json`](schemas/validation-report.schema.json) | Validation report contract. |
|
|
388
|
-
| [`.workflow-state.schema.json`](.workflow-state.schema.json) | Workflow state contract. |
|
|
389
|
-
|
|
390
|
-
See [`schemas/README.md`](schemas/README.md) for schema guidance.
|
|
391
|
-
|
|
392
|
-
## Validation
|
|
393
|
-
|
|
394
|
-
Run the complete local validation suite:
|
|
395
|
-
|
|
396
|
-
```bash
|
|
397
|
-
npm run validate
|
|
398
|
-
```
|
|
399
|
-
|
|
400
|
-
Focused checks:
|
|
401
|
-
|
|
402
|
-
```bash
|
|
403
|
-
npm run validate:md
|
|
404
|
-
npm run validate:json
|
|
405
|
-
npm run validate:refs
|
|
406
|
-
npm run validate:links
|
|
407
|
-
npm run validate:docs-consistency
|
|
408
|
-
npm run validate:workflow
|
|
409
|
-
npm run validate:schemas
|
|
410
|
-
npm run validate:skills
|
|
411
|
-
npm run validate:delegation
|
|
412
|
-
npm run validate:structure
|
|
413
|
-
npm run test:e2e
|
|
414
|
-
```
|
|
415
|
-
|
|
416
|
-
Validation evidence must include:
|
|
417
|
-
|
|
418
|
-
- command executed;
|
|
419
|
-
- command result;
|
|
420
|
-
- relevant error output if any;
|
|
421
|
-
- file path or line reference when useful;
|
|
422
|
-
- skipped checks and why they were skipped.
|
|
423
|
-
|
|
424
|
-
Invalid evidence includes:
|
|
425
|
-
|
|
426
|
-
- “looks good” without support;
|
|
427
|
-
- assumed success;
|
|
428
|
-
- hidden skipped checks;
|
|
429
|
-
- vague approval without command or manual evidence.
|
|
430
|
-
|
|
431
|
-
## Git and branch safety
|
|
432
|
-
|
|
433
|
-
Before edits, check branch state:
|
|
434
|
-
|
|
435
|
-
```bash
|
|
436
|
-
git status -sb
|
|
437
|
-
```
|
|
438
|
-
|
|
439
|
-
Do not edit directly on `main`. Create a scoped branch first:
|
|
440
|
-
|
|
441
|
-
```bash
|
|
442
|
-
git switch -c docs-short-task-slug
|
|
443
|
-
```
|
|
444
|
-
|
|
445
|
-
See [`docs/branch-flow.md`](docs/branch-flow.md) for canonical branch policy and [`docs/branch-flow-audit.md`](docs/branch-flow-audit.md) for audit context.
|
|
446
|
-
|
|
447
|
-
Do not commit, push, merge, publish, release, or deploy unless explicitly requested.
|
|
448
|
-
|
|
449
|
-
## Autopilot behavior
|
|
450
|
-
|
|
451
|
-
Autopilot is a local-first workflow entrypoint. The command/prompt files are the source of truth; this section summarizes the contract.
|
|
452
|
-
|
|
453
|
-
It should:
|
|
454
|
-
|
|
455
|
-
- parse the user objective;
|
|
456
|
-
- define the smallest safe scope;
|
|
457
|
-
- choose the lightest valid route (`planner`, `orchestrator`, or specialist owner);
|
|
458
|
-
- route to existing agents, prompts, skills, and workflow contracts only;
|
|
459
|
-
- run branch safety checks before write operations;
|
|
460
|
-
- validate proportionally to risk;
|
|
461
|
-
- stop as `Blocked` when required context is missing, scope is too broad, or validation fails;
|
|
462
|
-
- ask before push, publish, remote repository creation, merge PR, release, or deploy actions.
|
|
463
|
-
|
|
464
|
-
It should not:
|
|
465
|
-
|
|
466
|
-
- create new architecture;
|
|
467
|
-
- create new agents;
|
|
468
|
-
- create new skills;
|
|
469
|
-
- skip gates;
|
|
470
|
-
- bypass local-first safety.
|
|
471
|
-
|
|
472
|
-
Expected output should include selected route, scope, active step/gate, files changed, validation commands/results, risks/open questions, and next safe step.
|
|
473
|
-
|
|
474
|
-
Primary files:
|
|
475
|
-
|
|
476
|
-
- [`opencode/commands/autopilot.md`](opencode/commands/autopilot.md)
|
|
477
|
-
- [`.codex/prompts/autopilot.md`](.codex/prompts/autopilot.md)
|
|
478
|
-
- [`opencode/agents/orchestrator.md`](opencode/agents/orchestrator.md)
|
|
479
|
-
|
|
480
|
-
## Notes
|
|
481
|
-
|
|
482
|
-
- The recommended install path is `npx @williambeto/ai-workflow init`. See `docs/npm-consumer-quickstart.md`.
|
|
483
|
-
- AI Workflow Kit now uses `.ai-workflow/` with symlinked workflow paths as the default installation model.
|
|
484
|
-
|
|
485
|
-
## Recommended tool path
|
|
486
|
-
|
|
487
|
-
AI Workflow Kit works with both OpenCode and Codex.
|
|
488
|
-
|
|
489
|
-
| Tool | Recommendation | Workflow style |
|
|
490
|
-
| --- | --- | --- |
|
|
491
|
-
| OpenCode | Best integrated experience | Commands, agents, routing, and `opencode.jsonc` automation |
|
|
492
|
-
| Codex | Fully supported | `AGENTS.md`, `.codex/prompts/`, and explicit prompt-driven orchestration |
|
|
493
|
-
|
|
494
|
-
OpenCode is the primary integrated experience. Codex is fully supported through the same shared rules and prompts, but the orchestration is more manual.
|
|
495
|
-
|
|
496
|
-
## Adoption levels
|
|
497
|
-
|
|
498
|
-
| Level | Use when | Start here |
|
|
499
|
-
| --- | --- | --- |
|
|
500
|
-
| Minimal | You only want prompts and templates | `prompts/`, `templates/` |
|
|
501
|
-
| Operational | You want a repeatable PR workflow | `runbooks/quick-start-guide.md` |
|
|
502
|
-
| Full | You want agent-based delivery | `.codex/prompts/`, `opencode/commands/` |
|
|
503
|
-
| Standalone CLI | You want the default install path for another repo | `npx @williambeto/ai-workflow init --yes` |
|
|
504
|
-
| Governance | You want team review and readiness policy | `runbooks/team-governance-pr-readiness.md` |
|
|
505
|
-
|
|
506
|
-
## Supported project types
|
|
507
|
-
|
|
508
|
-
| Project type | Support level | Useful assets |
|
|
509
|
-
| --- | --- | --- |
|
|
510
|
-
| Nuxt/Vue dashboards | Native high | `vue-nuxt`, `variants/nuxt/` |
|
|
511
|
-
| WordPress/PHP projects | Native high | `wordpress-engineer`, `variants/wordpress/` |
|
|
512
|
-
| Documentation repositories | Native high | `docs-writer`, `variants/docs-only/` |
|
|
513
|
-
| Node.js APIs | Variant support | `backend-implementer`, `variants/nodejs-api/` |
|
|
514
|
-
| Python APIs | Variant support | `backend-implementer`, `variants/python-api/` |
|
|
515
|
-
| React/Next.js applications | Generic support | `frontend-implementer`, `interface-design` |
|
|
516
|
-
| Microservices | Generic support | `backend-implementer`, `deploy-engineer` |
|
|
517
|
-
|
|
518
|
-
Native high means this repository includes a dedicated skill or complete applied example. Generic support means the workflow applies, but project-specific conventions still need human judgment.
|
|
519
|
-
|
|
520
|
-
## Repository status
|
|
521
|
-
|
|
522
|
-
| Area | Status |
|
|
523
|
-
| --- | --- |
|
|
524
|
-
| Skills | Complete |
|
|
525
|
-
| Prompts | Complete |
|
|
526
|
-
| Codex prompt entrypoints | Complete |
|
|
527
|
-
| OpenCode command entrypoints | Complete |
|
|
528
|
-
| OpenCode agent roles | Complete |
|
|
529
|
-
| Templates | Complete |
|
|
530
|
-
| Runbooks | Complete |
|
|
531
|
-
| README | Landing page |
|
|
532
|
-
| AGENTS.md | Complete |
|
|
533
|
-
| ROADMAP | Complete |
|
|
534
|
-
| Examples | Complete (nuxt-dashboard, docs-only-repo, react-dashboard, wordpress-theme) |
|
|
535
|
-
| Automated Markdown validation | Complete |
|
|
536
|
-
| Stack-specific variants | Complete (Nuxt, WordPress, docs-only, Node.js API, Python API) |
|
|
537
|
-
| opencode.jsonc | Added |
|
|
538
|
-
| CI workflow | Added |
|
|
539
|
-
| package.json / version | Added |
|
|
540
|
-
| CHANGELOG | Added |
|
|
541
|
-
| LICENSE | Added |
|
|
542
|
-
|
|
543
|
-
## Success criteria
|
|
544
|
-
|
|
545
|
-
This project is successful if it helps produce:
|
|
546
|
-
|
|
547
|
-
- clearer requirements;
|
|
548
|
-
- safer technical plans;
|
|
549
|
-
- smaller pull requests;
|
|
550
|
-
- fewer uncontrolled AI changes;
|
|
551
|
-
- stronger validation before approval;
|
|
552
|
-
- better Codex/OpenCode handoffs;
|
|
553
|
-
- more predictable AI-assisted software delivery.
|
|
554
|
-
|
|
555
|
-
## Final idea
|
|
556
|
-
|
|
557
|
-
The goal is not to make AI write more code.
|
|
558
|
-
|
|
559
|
-
The goal is to make AI work with clearer context, smaller scope, stronger constraints, and real validation.
|
|
560
|
-
|
|
561
|
-
## Token economy and minimal context
|
|
562
|
-
|
|
563
|
-
Use [`token-economy`](.agents/skills/token-economy/SKILL.md) to reduce output verbosity while preserving evidence and decisions.
|
|
564
|
-
|
|
565
|
-
Use [`minimal-context`](.agents/skills/minimal-context/SKILL.md) to reduce input context loading by reading only task-relevant files.
|
|
566
|
-
|
|
567
|
-
Useful entrypoints:
|
|
568
|
-
|
|
569
|
-
- [`.codex/prompts/token-economy-mode.md`](.codex/prompts/token-economy-mode.md)
|
|
570
|
-
- [`.codex/prompts/minimal-context-mode.md`](.codex/prompts/minimal-context-mode.md)
|
|
571
|
-
- [`opencode/commands/token-economy.md`](opencode/commands/token-economy.md)
|
|
572
|
-
|
|
573
|
-
## Napkin project memory
|
|
574
|
-
|
|
575
|
-
Napkin is durable, discoverable project memory.
|
|
576
|
-
|
|
577
|
-
Use it for reusable decisions, recurring corrections, project conventions, and operational memory. Do not use it for temporary notes or secrets.
|
|
578
|
-
|
|
579
|
-
Files:
|
|
580
|
-
|
|
581
|
-
- [`.agents/napkin.md`](.agents/napkin.md)
|
|
582
|
-
- [`.agents/skills/napkin/SKILL.md`](.agents/skills/napkin/SKILL.md)
|
|
583
|
-
- [`runbooks/use-napkin-project-memory.md`](runbooks/use-napkin-project-memory.md)
|
|
584
|
-
|
|
585
|
-
## Governance
|
|
586
|
-
|
|
587
|
-
Team adoption can use lightweight readiness and approval rules from [`runbooks/team-governance-pr-readiness.md`](runbooks/team-governance-pr-readiness.md).
|
|
588
|
-
|
|
589
|
-
Recommended governance principles:
|
|
590
|
-
|
|
591
|
-
- define Definition of Ready before implementation;
|
|
592
|
-
- define Definition of Done before approval;
|
|
593
|
-
- assign reviewer responsibility;
|
|
594
|
-
- escalate unclear ownership;
|
|
595
|
-
- keep merge authority explicit;
|
|
596
|
-
- require validation evidence before approval.
|
|
597
|
-
|
|
598
|
-
## Release and deployment readiness
|
|
599
|
-
|
|
600
|
-
Use deployment guidance only after validation passes and the user explicitly requests release or deployment work.
|
|
601
|
-
|
|
602
|
-
Primary assets:
|
|
603
|
-
|
|
604
|
-
- [`prompts/09-deploy.md`](prompts/09-deploy.md)
|
|
605
|
-
- [`.codex/prompts/deploy.md`](.codex/prompts/deploy.md)
|
|
606
|
-
- [`opencode/commands/deploy.md`](opencode/commands/deploy.md)
|
|
607
|
-
- [`runbooks/deploy-checklist.md`](runbooks/deploy-checklist.md)
|
|
608
|
-
- [`.agents/skills/deploy-engineer/SKILL.md`](.agents/skills/deploy-engineer/SKILL.md)
|
|
609
|
-
|
|
610
|
-
Deployment plans should include:
|
|
611
|
-
|
|
612
|
-
- environment assumptions;
|
|
613
|
-
- pre-deploy checks;
|
|
614
|
-
- smoke tests;
|
|
615
|
-
- rollback plan;
|
|
616
|
-
- monitoring or verification steps;
|
|
617
|
-
- explicit skipped checks.
|
|
618
|
-
|
|
619
|
-
## Maintenance rules
|
|
620
|
-
|
|
621
|
-
When maintaining this repository:
|
|
622
|
-
|
|
623
|
-
- keep changes small and reviewable;
|
|
624
|
-
- evolve file by file;
|
|
625
|
-
- preserve existing patterns before adding new ones;
|
|
626
|
-
- validate Markdown safety;
|
|
627
|
-
- update references when files move;
|
|
628
|
-
- avoid duplicated long sections that drift;
|
|
629
|
-
- keep generic files framework-agnostic;
|
|
630
|
-
- keep stack-specific details inside variants, examples, or skills;
|
|
631
|
-
- update [`ROADMAP.md`](ROADMAP.md) when priorities change;
|
|
632
|
-
- do not make commits unless explicitly requested.
|
|
633
|
-
|
|
634
|
-
## Current limitations
|
|
635
|
-
|
|
636
|
-
- OpenCode has the most integrated experience; Codex orchestration is more manual.
|
|
637
|
-
- Stack variants guide workflow behavior but do not replace project-specific engineering decisions.
|
|
638
|
-
- Public package identity is `@williambeto/ai-workflow`; historical `codex-repo-starter` references should appear only where they explain migration history or legacy submodule paths.
|
|
639
|
-
|
|
640
|
-
## Recommended reading order
|
|
641
|
-
|
|
642
|
-
For new users:
|
|
643
|
-
|
|
644
|
-
1. `README.md`
|
|
645
|
-
2. [`runbooks/quick-start-guide.md`](runbooks/quick-start-guide.md)
|
|
646
|
-
3. [`runbooks/how-to-use-skills.md`](runbooks/how-to-use-skills.md)
|
|
647
|
-
4. [`AGENTS.md`](AGENTS.md)
|
|
648
|
-
|
|
649
|
-
For maintainers:
|
|
650
|
-
|
|
651
|
-
1. [`AGENTS.md`](AGENTS.md)
|
|
652
|
-
2. [`ROADMAP.md`](ROADMAP.md)
|
|
653
|
-
3. [`docs/architecture-policy.md`](docs/architecture-policy.md)
|
|
654
|
-
4. [`docs/design-patterns-policy.md`](docs/design-patterns-policy.md)
|
|
655
|
-
5. [`harness/workflows/multi-agent-handoff.md`](harness/workflows/multi-agent-handoff.md)
|
|
656
|
-
|
|
657
|
-
## Final note
|
|
658
|
-
|
|
659
|
-
AI Workflow Kit should make AI-assisted delivery more deliberate, not heavier.
|
|
660
|
-
|
|
661
|
-
Use the smallest workflow that protects quality for the current risk level.
|