@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
package/CHANGELOG.md
CHANGED
|
@@ -1,877 +1,96 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* add Atlas OpenCode agent ([#70](https://github.com/williambeto/ai-workflow/issues/70)) ([15ae8a2](https://github.com/williambeto/ai-workflow/commit/15ae8a2d0ae0d97cad450280522f5e2849c0149b))
|
|
7
|
-
|
|
8
|
-
## [1.19.0](https://github.com/williambeto/ai-workflow/compare/v1.18.18...v1.19.0) (2026-05-23)
|
|
9
|
-
|
|
10
|
-
### Added
|
|
11
|
-
|
|
12
|
-
- **Atlas OpenCode agent**: added Atlas as a primary OpenCode agent and default senior engineering partner for project workflows.
|
|
13
|
-
- **Atlas prompt file**: added `opencode/agents/atlas.md` with workflow orchestration, implementation quality, no-regression, validation evidence, and critical review guidance.
|
|
14
|
-
- **OpenCode configuration**: registered Atlas in `opencode.jsonc` and set `default_agent` to `atlas` while preserving existing agents, commands, permissions, and workflows.
|
|
15
|
-
- **OpenCode documentation**: documented Atlas in OpenCode agent documentation and package-facing documentation.
|
|
16
|
-
|
|
17
|
-
### Validation
|
|
18
|
-
|
|
19
|
-
- Validated JSON, delegation contracts, full repository validation, diff checks, and npm package dry-run for the Atlas release.
|
|
20
|
-
|
|
21
|
-
## [1.18.18](https://github.com/williambeto/ai-workflow/compare/v1.18.17...v1.18.18) (2026-05-23)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
### Bug Fixes
|
|
25
|
-
|
|
26
|
-
* **init:** include napkin memory in npm install ([f4f2e31](https://github.com/williambeto/ai-workflow/commit/f4f2e313dfae85daa31c92d60d5402df48c83b62))
|
|
27
|
-
|
|
28
|
-
## [1.18.17](https://github.com/williambeto/ai-workflow/compare/v1.18.16...v1.18.17) (2026-05-23)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
### Bug Fixes
|
|
32
|
-
|
|
33
|
-
* **init:** ignore generated workflow footprint ([15eba7a](https://github.com/williambeto/ai-workflow/commit/15eba7a2ac3ad81af3f6e6984be900717a6e89ef))
|
|
34
|
-
* **init:** use canonical opencode full config ([8b8551d](https://github.com/williambeto/ai-workflow/commit/8b8551d5af00b8924dbc8f2244b159f091fcb810))
|
|
35
|
-
|
|
36
|
-
## [1.18.16](https://github.com/williambeto/ai-workflow/compare/v1.18.15...v1.18.16) (2026-05-22)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* **audit:** harden artifact safety and align CLI/OpenCode catalog ([047c3bd](https://github.com/williambeto/ai-workflow/commit/047c3bd92d2d7fd3bc7bef2afc5f29a8fba441e9))
|
|
42
|
-
* **audit:** harden artifact safety and align CLI/OpenCode catalog ([a13f489](https://github.com/williambeto/ai-workflow/commit/a13f489c1a5cc7a06ba67580b30dd30f670d9b62))
|
|
43
|
-
|
|
44
|
-
## [1.18.15](https://github.com/williambeto/ai-workflow/compare/v1.18.14...v1.18.15) (2026-05-22)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Bug Fixes
|
|
48
|
-
|
|
49
|
-
* **cli-catalog:** sync managed config with current repo skills ([595a4cc](https://github.com/williambeto/ai-workflow/commit/595a4cc71fe89a25664fc2b9c5ae2131b36c92dc))
|
|
50
|
-
* **cli-catalog:** sync managed config with current repo skills ([7202320](https://github.com/williambeto/ai-workflow/commit/72023200ccd7d47a5a6e1106b781013fbf27215f))
|
|
51
|
-
|
|
52
|
-
## [1.18.14](https://github.com/williambeto/ai-workflow/compare/v1.18.13...v1.18.14) (2026-05-22)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Bug Fixes
|
|
56
|
-
|
|
57
|
-
* add missing spec-engineer agent to managed OpenCode config ([#58](https://github.com/williambeto/ai-workflow/issues/58)) ([bc0ffc9](https://github.com/williambeto/ai-workflow/commit/bc0ffc963d84956cc2880e6d6903061ea86016cc))
|
|
58
|
-
|
|
59
|
-
## [1.18.13](https://github.com/williambeto/ai-workflow/compare/v1.18.12...v1.18.13) (2026-05-22)
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
### Bug Fixes
|
|
63
|
-
|
|
64
|
-
* remove --provenance flag for private repo publish ([#57](https://github.com/williambeto/ai-workflow/issues/57)) ([557a41e](https://github.com/williambeto/ai-workflow/commit/557a41ed5f56071d932f494ebac0ebd1740d98ec))
|
|
65
|
-
|
|
66
|
-
## [1.18.12](https://github.com/williambeto/ai-workflow/compare/v1.18.11...v1.18.12) (2026-05-22)
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
### Bug Fixes
|
|
70
|
-
|
|
71
|
-
* skip auto-generated CHANGELOG.md from markdownlint and link validation ([#56](https://github.com/williambeto/ai-workflow/issues/56)) ([aefc44d](https://github.com/williambeto/ai-workflow/commit/aefc44d3b137b99e6089763952a8973de74f2ce6))
|
|
72
|
-
|
|
73
|
-
## [1.18.11](https://github.com/williambeto/ai-workflow/compare/v1.18.10...v1.18.11) (2026-05-22)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
### Bug Fixes
|
|
77
|
-
|
|
78
|
-
* apply readiness audit fixes (security, package, branding, docs) ([9721661](https://github.com/williambeto/ai-workflow/commit/972166100908681f27889e9ddd10de71f20a9627))
|
|
79
|
-
* apply readiness audit fixes (security, package, branding, docs) ([ee60c7c](https://github.com/williambeto/ai-workflow/commit/ee60c7cabab77dc45684d8e1b91533566660e794))
|
|
80
|
-
* update semantic-release CI to Node.js 22 ([8bbaabb](https://github.com/williambeto/ai-workflow/commit/8bbaabbefa3ffe1a27b19264bc8c98779ba4bddd))
|
|
81
|
-
* update semantic-release CI to Node.js 22 ([89a198a](https://github.com/williambeto/ai-workflow/commit/89a198aadd21f10c8b3d65e21a58747e50c23703))
|
|
82
|
-
|
|
83
|
-
# Changelog
|
|
84
|
-
|
|
85
|
-
All notable changes to AI Workflow Kit (`ai-workflow`) are documented in this file.
|
|
86
|
-
|
|
87
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
88
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
89
|
-
|
|
90
|
-
## [1.18.9] - 2026-05-21
|
|
91
|
-
|
|
92
|
-
### Removed
|
|
93
|
-
|
|
94
|
-
- **Consumer `workflow:validate` and `workflow:doctor` scripts**: removed thin wrapper aliases from consumer `package.json`. These provided marginal value over direct commands (`npm run validate`, `npx ai-workflow doctor`). Removed `merge-package-json.js`, updated `init.js`, `doctor.js`, `templates.js`, and all documentation references.
|
|
95
|
-
|
|
96
|
-
## [1.18.8] - 2026-05-20
|
|
97
|
-
|
|
98
|
-
### Added
|
|
99
|
-
|
|
100
|
-
- **Discovery gate enforcement**: `opencode/agents/discovery.md` now explicitly blocks execution/delegation requests and routes them to `orchestrator`.
|
|
101
|
-
- **Discovery routing guard docs**: added explicit guard behavior to `opencode/agents/README.md` and `runbooks/agent-delegation-workflow.md` to keep gate behavior consistent across agent docs and runbooks.
|
|
102
|
-
- **Roadmap simplification phases**: added Phase 17/18/19 plan in `ROADMAP.md` for OpenCode-first focus, artifact surface reduction, and consumer-validation/Napkin hardening.
|
|
103
|
-
|
|
104
|
-
### Changed
|
|
105
|
-
|
|
106
|
-
- **Roadmap priority update**: `ROADMAP.md` next sprint, next step, and next recommended PR now point to Phase 17 platform focus as immediate priority.
|
|
107
|
-
|
|
108
|
-
## [1.18.6] - 2026-05-20
|
|
109
|
-
|
|
110
|
-
### Added
|
|
111
|
-
|
|
112
|
-
- **Publish hardening via `.npmignore`**: added a defense-in-depth ignore file to prevent accidental inclusion of non-essential repository assets during publish operations.
|
|
113
|
-
|
|
114
|
-
## [1.18.5] - 2026-05-20
|
|
115
|
-
|
|
116
|
-
### Added
|
|
117
|
-
|
|
118
|
-
- **Symlink layout manager**: added `packages/ai-workflow/src/core/symlink-layout.js` to define and validate managed root/file links from project root to `.ai-workflow/`.
|
|
119
|
-
|
|
120
|
-
### Changed
|
|
121
|
-
|
|
122
|
-
- **Standalone install target**: `init` now installs workflow assets under `.ai-workflow/` as the source of truth, while exposing root-level links for Codex/OpenCode compatibility.
|
|
123
|
-
- **Init flow and config contract**: `init` now records `managedLinks` in `.ai-workflow.json` and reports link creation in install summary.
|
|
124
|
-
- **Doctor coverage**: `doctor` now validates `.ai-workflow/` presence and managed link health in standalone mode.
|
|
125
|
-
- **Documentation and discoverability**: updated quickstart/setup/command indexes to reflect `.ai-workflow/` + symlink default model.
|
|
126
|
-
|
|
127
|
-
### Removed
|
|
128
|
-
|
|
129
|
-
- **Legacy submodule sync flow**: removed `update-submodule` prompt/command/runbook flow and `scripts/validate-submodule.mjs` validation path.
|
|
130
|
-
|
|
131
|
-
## [1.18.4] - 2026-05-20
|
|
1
|
+
## [2.0.5] - 2026-06-08
|
|
132
2
|
|
|
133
3
|
### Fixed
|
|
134
4
|
|
|
135
|
-
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
-
|
|
140
|
-
|
|
141
|
-
## [1.18.3] - 2026-05-20
|
|
142
|
-
|
|
143
|
-
### Changed
|
|
144
|
-
|
|
145
|
-
- **Publish retry with unique version**: bumped package version to `1.18.3` after `1.18.2` was already published.
|
|
146
|
-
|
|
147
|
-
## [1.18.2] - 2026-05-20
|
|
148
|
-
|
|
149
|
-
### Added
|
|
150
|
-
|
|
151
|
-
- **Spec-Driven Development workflow assets**:
|
|
152
|
-
- `checklists/spec-readiness-checklist.md`
|
|
153
|
-
- `.codex/prompts/specs/` (create/review/spec-to-plan/spec-to-pr)
|
|
154
|
-
- `opencode/commands/specs/` (create/review/spec-to-plan/spec-to-pr)
|
|
155
|
-
- `runbooks/spec-driven-development.md`
|
|
156
|
-
|
|
157
|
-
### Changed
|
|
158
|
-
|
|
159
|
-
- **Spec template expanded for planning/validation evidence**: `templates/SPEC.template.md` now includes explicit sections for objective/context/problem, functional and non-functional requirements, technical constraints, implementation plan, PR breakdown, validation plan, and expected evidence.
|
|
160
|
-
- **Workflow discovery docs updated**: `README.md`, `docs/full-documentation.md`, `.codex/prompts/README.md`, `opencode/commands/README.md`, `runbooks/commands-cheatsheet.md`, `prompts/02-create-spec.md`, `ROADMAP.md`.
|
|
161
|
-
- **Release continuity**: package version bumped to `1.18.2`.
|
|
162
|
-
|
|
163
|
-
## [1.18.1] - 2026-05-20
|
|
164
|
-
|
|
165
|
-
### Added
|
|
166
|
-
|
|
167
|
-
- **Public-readiness evaluation report**: added `docs/reports/project-evaluation.md` with evidence-backed verdict, adoption blockers, and minimal PR roadmap.
|
|
168
|
-
- **Public-readiness improvement backlog**: added `docs/reports/public-readiness-backlog.md` with prioritized incremental execution plan.
|
|
169
|
-
|
|
170
|
-
### Changed
|
|
171
|
-
|
|
172
|
-
- **Validation E2E refs assertions**: updated `tests/validate-e2e.mjs` to align with current `validate-refs` output markers.
|
|
173
|
-
- **Version alignment**: local package version aligned and bumped to `1.18.1` for publish/release continuity.
|
|
5
|
+
- Locked standard/full Atlas completion behind current-task Sage, Evidence Collector, and QualityGuard execution.
|
|
6
|
+
- Rejected direct Atlas `PASS`, user-deferred `/validate`, self-validation, and missing executable finalizer paths.
|
|
7
|
+
- Added canonical cross-field validation for branch evidence, owners, artifacts, truthfulness, collector/final status, and Phoenix/Sage consistency.
|
|
8
|
+
- Strengthened fictitious-product claim detection for unsupported market superlatives, pricing, SLA/support, API, batch, and export capabilities.
|
|
9
|
+
- Added regression tests for runtime completion lock and internally inconsistent canonical results.
|
|
174
10
|
|
|
175
|
-
## [
|
|
11
|
+
## [2.0.3] - 2026-06-08
|
|
176
12
|
|
|
177
13
|
### Added
|
|
178
14
|
|
|
179
|
-
-
|
|
180
|
-
-
|
|
15
|
+
- Lightweight workflow profiles separating execution mode from domain quality guidance.
|
|
16
|
+
- Deterministic profile routing for frontend product, frontend utility, backend API, refactor, documentation, and security review work.
|
|
17
|
+
- Objective owner-completion contract with one bounded resume before `BLOCKED`.
|
|
18
|
+
- Consumer workflow profile documentation.
|
|
181
19
|
|
|
182
20
|
### Changed
|
|
183
21
|
|
|
184
|
-
-
|
|
185
|
-
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
### Added
|
|
190
|
-
|
|
191
|
-
- **`init` copies real skill/agent/workflow assets**: `init --profile=full` no longer generates 3-line stub files for each skill. Instead, it reads the actual content from the installed package (62–528 lines per skill) plus subdirectories like `interface-design/references/*.md`. Also copies OpenCode agent prompts, command files, additional Codex prompts, harness workflow contracts, policy docs (`docs/architecture-policy.md`, `docs/design-patterns-policy.md`), project templates, and JSON schemas. Total files created: 86 (up from ~35).
|
|
192
|
-
- **Dependabot automation**: added `.github/dependabot.yml` for weekly npm dependency update PRs.
|
|
193
|
-
- **Semantic-release automation**: added `.github/workflows/semantic-release.yml` and `.releaserc.json` for automated versioning/release flow on `main`.
|
|
194
|
-
- **Local developer bootstrap**: added `npm run setup:dev` powered by `scripts/setup-dev.mjs` (`npm ci` + validation + CLI smoke checks).
|
|
195
|
-
- **Feedback metrics**: added `npm run metrics:feedback` and `scripts/collect-feedback-metrics.mjs` with output to `evidence/feedback-metrics.json`.
|
|
196
|
-
- **Feedback intake template**: added `.github/ISSUE_TEMPLATE/feedback.yml`.
|
|
197
|
-
|
|
198
|
-
### Changed
|
|
199
|
-
|
|
200
|
-
- **`templates.js`**: `buildFullFiles()` now reads real files from disk via the new `package-assets.js` utility instead of generating inline stubs for skills, agents, and commands.
|
|
201
|
-
- **`package-assets.js`**: Added utility to resolve the installed package root and recursively discover files from `.agents/skills/`, `opencode/agents/`, `opencode/commands/`, `.codex/prompts/`, `harness/`, `docs/`, `templates/`, and `schemas/`.
|
|
202
|
-
- **npm publish workflow**: fixed `.github/workflows/publish-npm.yml` to publish from repository root package (removed incorrect `working-directory: packages/ai-workflow`).
|
|
203
|
-
- **Agent routing registry**: added `seo-audit` as subagent in `opencode.jsonc` to align with available skills and routing matrix.
|
|
204
|
-
|
|
205
|
-
### Fixed
|
|
206
|
-
|
|
207
|
-
- **Placeholder stub skills on `init`**: All 20 skills were previously generated as 3-line stubs, making them non-functional as subagent prompts. Now each skill file contains the real content (frontmatter, sections, validation rules, constraints).
|
|
208
|
-
- **Missing reference files**: `interface-design/references/*.md` (4 files) were not included in the generated project.
|
|
209
|
-
- **Missing harness workflows**: `harness/workflows/*.md` and `harness/handoffs/HANDOFF.template.md` (referenced by orchestrator agent) were not copied.
|
|
210
|
-
- **Missing policy docs**: `docs/architecture-policy.md` and `docs/design-patterns-policy.md` were not included.
|
|
211
|
-
- **Missing `.codex/prompts/` extra files**: 7 additional prompt files (autopilot, deploy, fix-issue, roadmap-audit, etc.) were missing.
|
|
212
|
-
|
|
213
|
-
## [1.12.6] - 2026-05-19
|
|
214
|
-
|
|
215
|
-
### Fixed
|
|
216
|
-
|
|
217
|
-
- **CLI executable resolution**: `npx @williambeto/ai-workflow init` now works. Root `package.json` was missing `bin/ai-workflow` entry pointing to `packages/ai-workflow/bin/ai-workflow.js`.
|
|
218
|
-
- **npm publish over 1.12.5**: bumped to `1.12.6` to republish with correct package structure.
|
|
219
|
-
|
|
220
|
-
### Added
|
|
22
|
+
- Visual validation now uses objective rendered checks instead of subjective labels or benchmark comparison.
|
|
23
|
+
- Frontend product and utility profiles load both frontend and UI/UX skills without imposing a fixed SaaS page template.
|
|
24
|
+
- Product Truthfulness accepts clear page-level conceptual labels for non-authoritative commercial concepts while keeping official/live/security/SLA claims strict.
|
|
25
|
+
- Atlas handoff guidance is shorter and outcome-first.
|
|
221
26
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
## [1.12.5] - 2026-05-19
|
|
225
|
-
|
|
226
|
-
### Added
|
|
227
|
-
|
|
228
|
-
- **Codex compatibility audit**: full audit report in `evidence/codex-compatibility-audit-2026-05-19.md` covering 20 skills, 10 OpenCode agents, 13 Codex prompts, 5 workflows.
|
|
229
|
-
- **Phase 15 documentation**: added to ROADMAP.md with 3 incremental fixes applied.
|
|
230
|
-
|
|
231
|
-
### Changed
|
|
232
|
-
|
|
233
|
-
- **Dedup orchestrator routing matrix**: `opencode/agents/orchestrator.md` no longer duplicates the delegation table from `AGENTS.md`; references `AGENTS.md` §453 instead.
|
|
234
|
-
- **Delegation matrix completeness**: `AGENTS.md` §464 now includes `Bug fixing / diagnostics | fixer` with Codex path `.codex/prompts/fix-issue.md`, closing the documented gap.
|
|
235
|
-
- **Codex/OpenCode comparison table**: `docs/setup-codex-opencode.md` now explicitly states OpenCode agent files are not Codex subagents.
|
|
236
|
-
|
|
237
|
-
## [1.12.4] - 2026-05-16
|
|
238
|
-
|
|
239
|
-
### Added
|
|
240
|
-
|
|
241
|
-
- **Guarded npm publish workflow**: added `.github/workflows/publish-npm.yml` with manual trigger, dry-run default, required validation, and token-gated real publish.
|
|
242
|
-
- **Publish runbook**: added `runbooks/publish-package-checklist.md` with pre-publish gates, evidence requirements, and rollback/deprecate guidance.
|
|
243
|
-
- **Publish rehearsal evidence**: added `evidence/publish-dry-run-2026-05-15.md` documenting the successful dry-run workflow run.
|
|
244
|
-
|
|
245
|
-
### Changed
|
|
246
|
-
|
|
247
|
-
- **Validation default flow**: `npm run validate` now includes external link validation.
|
|
248
|
-
- **Autopilot/ship context discipline**: Codex/OpenCode entrypoints now use minimum-first context loading to reduce token-heavy scans.
|
|
249
|
-
- **Documentation consistency**: examples maturity rows and quickstart validation counts aligned with current repository checks.
|
|
250
|
-
- **GitHub Actions runtime compatibility**: workflows now force JavaScript actions to Node 24 runtime to preempt Node 20 runner deprecation.
|
|
251
|
-
|
|
252
|
-
## [1.12.1] - 2026-05-14
|
|
253
|
-
|
|
254
|
-
### Added
|
|
255
|
-
|
|
256
|
-
- **Implementation output effort line**: added `Effort: AI elapsed ~Xm | Senior dev estimate ~Ym` to implementation-oriented output templates across Codex prompts, OpenCode commands/agents, and implementation skills.
|
|
257
|
-
|
|
258
|
-
### Changed
|
|
259
|
-
|
|
260
|
-
- **README.md**: repositioned as AI Workflow Kit landing page with compact structure and OpenCode/Codex setup guidance links.
|
|
261
|
-
- **docs/full-documentation.md**: added detailed workflow reference document.
|
|
262
|
-
- **docs/setup-codex-opencode.md**: added dedicated setup and usage guide for OpenCode and Codex.
|
|
263
|
-
- **Roadmap**: marked Phase 13 (AI Workflow Kit documentation repositioning) complete and advanced next recommended PR to Phase 14 guarded publish workflow.
|
|
264
|
-
|
|
265
|
-
## [1.11.0] - 2026-05-13
|
|
266
|
-
|
|
267
|
-
### Changed
|
|
268
|
-
|
|
269
|
-
- **AGENTS.md**: Synced with opencode.jsonc. Phase 7 complete.
|
|
270
|
-
|
|
271
|
-
## [1.10.5] - 2026-05-13
|
|
272
|
-
|
|
273
|
-
### Added
|
|
274
|
-
|
|
275
|
-
- **Delegation matrix**: Add interface-design, playwright-cli, stack-variant-creator. Phase 7 PR 7.
|
|
276
|
-
|
|
277
|
-
## [1.10.4] - 2026-05-13
|
|
278
|
-
|
|
279
|
-
### Removed
|
|
280
|
-
|
|
281
|
-
- **skill-creator subagent**: Scope absorbed by prompt-engineer. Phase 7 PR 6.
|
|
282
|
-
|
|
283
|
-
## [1.10.3] - 2026-05-13
|
|
284
|
-
|
|
285
|
-
### Removed
|
|
286
|
-
|
|
287
|
-
- **estimator agent**: Never routed, no command, no documented use. Phase 7 PR 5.
|
|
288
|
-
- **frontend-architect agent**: Scope covered by frontend-implementer + tech-lead. Phase 7 PR 5.
|
|
289
|
-
|
|
290
|
-
## [1.10.2] - 2026-05-13
|
|
291
|
-
|
|
292
|
-
### Removed
|
|
293
|
-
|
|
294
|
-
- **codex-token-economy skill**: Merged into token-economy. Phase 7 PR 4.
|
|
295
|
-
|
|
296
|
-
## [1.10.1] - 2026-05-13
|
|
297
|
-
|
|
298
|
-
### Removed
|
|
299
|
-
|
|
300
|
-
- **git-pr-release-flow subagent**: Deleted; scope covered by release-manager. Phase 7 PR 3.
|
|
301
|
-
|
|
302
|
-
## [1.10.0] - 2026-05-13
|
|
303
|
-
|
|
304
|
-
### Removed
|
|
305
|
-
|
|
306
|
-
- **autopilot agent**: Merged into orchestrator. `/start` and `/ship` now route to orchestrator. Phase 7 PR 2.
|
|
307
|
-
|
|
308
|
-
## [1.9.10] - 2026-05-13
|
|
309
|
-
|
|
310
|
-
### Removed
|
|
311
|
-
|
|
312
|
-
- **Codex subagents/**: Deleted 5 files. Project is primary OpenCode; AGENTS.md covers Codex routing. Phase 7 PR 1.
|
|
313
|
-
|
|
314
|
-
## [1.9.9] - 2026-05-13
|
|
315
|
-
|
|
316
|
-
### Changed
|
|
317
|
-
|
|
318
|
-
- **ROADMAP.md**: Add Phase 7 agent & skill simplification plan with 8-PR reduction from audit findings
|
|
319
|
-
|
|
320
|
-
## [1.9.8] - 2026-05-13
|
|
321
|
-
|
|
322
|
-
### Added
|
|
323
|
-
|
|
324
|
-
- **Token economy coverage**: Add `token-economy` + `minimal-context` directive to all 22 skills and 3 primary agents (discovery, wordpress-engineer, prompt-engineer)
|
|
27
|
+
# Changelog
|
|
325
28
|
|
|
326
|
-
## [
|
|
29
|
+
## [2.0.4] - 2026-06-08
|
|
327
30
|
|
|
328
31
|
### Fixed
|
|
329
32
|
|
|
330
|
-
-
|
|
331
|
-
-
|
|
332
|
-
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
### Changed
|
|
337
|
-
|
|
338
|
-
- **init.mjs**: Simplify to only merge opencode.jsonc — no file copying, assets stay in submodule
|
|
339
|
-
- **runbooks/sync-workflow-from-submodule.md**: Updated install/uninstall steps
|
|
340
|
-
|
|
341
|
-
### Removed
|
|
33
|
+
- Removed circular finalization evidence by deriving canonical results from executed policy checks and persisting them in `EVIDENCE.json`.
|
|
34
|
+
- Enforced all canonical standard/full final response fields from one machine-readable contract.
|
|
35
|
+
- Persisted and rendered delegation owners, loaded skills, delivery artifacts, Sage revalidation, Evidence Collector, QualityGuard, Product Truthfulness, finalizer, and terminal status.
|
|
36
|
+
- Required structured TypeScript waivers with an explicit source and concrete constraint.
|
|
37
|
+
- Added regression coverage for omitted fields, direct finalizer bypass, remediation without Sage revalidation, and canonical status spelling.
|
|
342
38
|
|
|
343
|
-
- **sync.mjs**: No longer needed
|
|
344
|
-
- **uninstall-workflow.mjs**: Manual cleanup sufficient
|
|
345
|
-
- **submodule-sync-allowlist.json**: No longer needed
|
|
346
39
|
|
|
347
|
-
##
|
|
348
|
-
|
|
349
|
-
### Changed
|
|
350
|
-
|
|
351
|
-
- **init.mjs** (renamed from bootstrap-parent-workflow.mjs): bootstrap workflow assets, merge opencode.jsonc into parent root
|
|
352
|
-
- **sync.mjs** (renamed from refresh-submodule.mjs): sync workflow subtree, merge opencode.jsonc (backups existing)
|
|
353
|
-
|
|
354
|
-
### Added
|
|
355
|
-
|
|
356
|
-
- **opencode.jsonc merge**: init.mjs and sync.mjs now merge opencode.jsonc from `.workflow/` into parent root with backup of existing config
|
|
40
|
+
## 2.0.2
|
|
357
41
|
|
|
358
42
|
### Fixed
|
|
359
43
|
|
|
360
|
-
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
- **Token-economy auto-load in all agents**: 8 agents (planner, implementer, validator, reviewer, orchestrator, release-manager, fixer, autopilot) now have token-economy + minimal-context in `Required context` — caveman mode persists across delegation chains.
|
|
367
|
-
- **Napkin entry**: Token economy does not auto-pass to subagents — delegation packets must explicitly request compact output.
|
|
368
|
-
- **Minimal-context troubleshooting**: Added section explaining session history as primary input token driver, with quick diagnostic and solutions (start new session, explicit handoff, compact output).
|
|
369
|
-
|
|
370
|
-
## [1.7.2] - 2026-05-13
|
|
371
|
-
|
|
372
|
-
### Added
|
|
44
|
+
- Enforced mode-specific final delivery artifacts so `standard` cannot pass with `delivery-summary.md`.
|
|
45
|
+
- Added mandatory finalization evidence for collector, QualityGuard, Product Truthfulness, delegation, and finalizer identity.
|
|
46
|
+
- Prevented `PASS` when canonical finalization fields are missing or inconsistent.
|
|
47
|
+
- Added direct tests for standard artifact mismatch and finalization evidence.
|
|
48
|
+
- Kept bounded remediation responsible for correcting final-gate failures before promotion.
|
|
373
49
|
|
|
374
|
-
|
|
375
|
-
- **Migration script**: `scripts/migrate-to-workflow.mjs` — migrate legacy `.codex/` + `.agents/` paths to `.workflow/` pointing in `opencode.json`. Supports `--dry-run` and `--force`. Backs up to `.workflow-migration-backups/`.
|
|
376
|
-
|
|
377
|
-
### Changed
|
|
378
|
-
|
|
379
|
-
- **update-submodule command** updated: references `.workflow/` path and `runbooks/sync-workflow-from-submodule.md`.
|
|
380
|
-
- **bootstrap-parent-workflow.mjs** already supports `.workflow/` as target (detected by script).
|
|
381
|
-
|
|
382
|
-
## [1.7.1] - 2026-05-13
|
|
383
|
-
|
|
384
|
-
### Added
|
|
385
|
-
|
|
386
|
-
- **Minimal Context Mode skill**: `.agents/skills/minimal-context/SKILL.md` — input discipline rules (3–7 files per read, grep before read, no broad scans unless audit).
|
|
387
|
-
- **Minimal Context Codex prompt**: `.codex/prompts/minimal-context-mode.md` — reusable prompt with input budget rules.
|
|
388
|
-
- **Handoff validation script**: `scripts/validate-handoffs.mjs` — structural skill-to-skill handoff readiness validation.
|
|
389
|
-
- **Skill auto-load baseline** in `AGENTS.md` — agent-to-skill mapping (planner, implementer, reviewer, validator, release-manager) discoverable from central rules.
|
|
390
|
-
|
|
391
|
-
### Changed
|
|
392
|
-
|
|
393
|
-
- **Token economy skill** updated: added input vs output distinction (`minimal-context` reduces input, `token-economy` reduces output).
|
|
394
|
-
- **implementer** and **planner** agents updated: added input discipline sections.
|
|
395
|
-
- **execute** command updated: references minimal-context skill.
|
|
396
|
-
- **README.md** updated: input vs output token distinction, minimal-context usage.
|
|
50
|
+
## 2.0.1
|
|
397
51
|
|
|
398
52
|
### Fixed
|
|
399
53
|
|
|
400
|
-
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
- **Token economy mode**: project-native compact output skill (`.agents/skills/token-economy/SKILL.md`) with modes `compact`, `terse`, `audit`, `handoff` and output contracts for implementation, audit, bugfix, handoff.
|
|
407
|
-
- **Token economy Codex prompt**: `.codex/prompts/token-economy-mode.md`.
|
|
408
|
-
- **Token economy OpenCode command**: `opencode/commands/token-economy.md`.
|
|
409
|
-
- **Token economy mode documentation** in `README.md` (compact output usage, modes, notes on verbosity reduction, optional external caveman tooling).
|
|
410
|
-
|
|
411
|
-
### Changed
|
|
412
|
-
|
|
413
|
-
- **Next recommended PR** in `ROADMAP.md` advanced to Phase 4B (agent routing refinement) after Phase 4A command work completed via PR #57.
|
|
414
|
-
- **PR queue** reprioritized: routing drift → handoff validation → Phase 6 docs.
|
|
54
|
+
- Added bounded, progress-aware remediation for recoverable quality and delegation gates.
|
|
55
|
+
- Prevented unresolved gate failures from being downgraded to `PASS_WITH_NOTES`.
|
|
56
|
+
- Added hard remediation limits by execution mode and blocking on repeated/no-progress findings.
|
|
57
|
+
- Synchronized the root evidence contract with the canonical distributed contract.
|
|
58
|
+
- Added direct coverage for implementation documentation and remediation lifecycle behavior.
|
|
415
59
|
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
- `npm run validate` — all 9 checks passed, 0 skill warnings.
|
|
419
|
-
|
|
420
|
-
## [1.6.9] - 2026-05-13
|
|
421
|
-
|
|
422
|
-
### Changed
|
|
423
|
-
|
|
424
|
-
- **Phase 5 (stack variants)**: marked as Complete in AGENTS.md and ROADMAP.md.
|
|
425
|
-
- **ROADMAP.md**: Phase 5 status updated to Complete, exit criteria all checked, completed items listed for all 5 variants, PR queue updated with remaining Phase 4A/4B/6 items, next recommended PR set to Phase 4A command refinement.
|
|
426
|
-
- **AGENTS.md**: maturity table updated — stack variants now "Complete (5 variants: nuxt, wordpress, docs-only, nodejs-api, python-api)".
|
|
427
|
-
|
|
428
|
-
### Validation
|
|
429
|
-
|
|
430
|
-
- `npm run validate` — all 9 checks passed.
|
|
431
|
-
|
|
432
|
-
## [1.6.8] - 2026-05-13
|
|
60
|
+
## 2.0.0
|
|
433
61
|
|
|
434
62
|
### Added
|
|
435
63
|
|
|
436
|
-
-
|
|
64
|
+
- OpenCode-first workflow with six primary ownership roles.
|
|
65
|
+
- Proportional `quick`, `standard`, and `full` delivery modes.
|
|
66
|
+
- Persisted delivery artifacts and executable evidence collection.
|
|
67
|
+
- Branch recovery, quality gates, delegation statuses, Product Truthfulness, and safe packaging.
|
|
68
|
+
- TypeScript default for new frontend applications unless explicitly waived.
|
|
69
|
+
- Consumer quickstart, runtime compatibility guidance, and v2 upgrade documentation.
|
|
70
|
+
- Optional Codex, Claude Code, and Gemini adapter assets.
|
|
437
71
|
|
|
438
72
|
### Changed
|
|
439
73
|
|
|
440
|
-
-
|
|
441
|
-
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
- `npm run validate` — all 9 checks passed, 0 skill warnings (was 42).
|
|
446
|
-
|
|
447
|
-
## [1.6.7] - 2026-05-12
|
|
448
|
-
|
|
449
|
-
### Added
|
|
450
|
-
|
|
451
|
-
- **Commands cheat sheet**: added `runbooks/commands-cheatsheet.md` as a quick reference for Codex (`.codex/prompts/`) and OpenCode (`opencode/commands/`) commands, with usage examples and safety rules.
|
|
452
|
-
|
|
453
|
-
### Changed
|
|
454
|
-
|
|
455
|
-
- **AGENTS.md file tree**: synced to reflect current repository structure (skill-creator, stack-variant-creator, new scripts, variants, tests).
|
|
456
|
-
- **README.md runbooks table**: added `commands-cheatsheet.md` entry.
|
|
457
|
-
- **Repository maturity**: marked stack-specific variants as "In progress".
|
|
458
|
-
|
|
459
|
-
### Validation
|
|
460
|
-
|
|
461
|
-
- Ran `npm run validate` — all 9 checks passed.
|
|
462
|
-
|
|
463
|
-
## [1.6.6] - 2026-05-11
|
|
464
|
-
|
|
465
|
-
### Added
|
|
466
|
-
|
|
467
|
-
- **Submodule update commands**: added `.codex/prompts/update-submodule.md` and `opencode/commands/update-submodule.md` to safely update `codex-repo-starter` when installed as a submodule in another repository.
|
|
468
|
-
|
|
469
|
-
### Changed
|
|
470
|
-
|
|
471
|
-
- **OpenCode command registry**: registered `update-submodule` in `opencode.jsonc` using `release-manager` as the command owner.
|
|
472
|
-
- **Discoverability and structure checks**: updated command READMEs and `scripts/validate-structure.mjs` to require and document the new submodule-update command files.
|
|
473
|
-
|
|
474
|
-
### Validation
|
|
475
|
-
|
|
476
|
-
- Ran `npm run validate`
|
|
477
|
-
|
|
478
|
-
## [1.6.5] - 2026-05-11
|
|
479
|
-
|
|
480
|
-
### Added
|
|
481
|
-
|
|
482
|
-
- **Delegation workflow runbook**: added `runbooks/agent-delegation-workflow.md` to document orchestration rules, delegation matrix, escalation paths, and anti-overdelegation behavior.
|
|
483
|
-
- **Delegation validation script**: added `scripts/validate-delegation.mjs` and `npm run validate:delegation` to enforce orchestrator presence, command-to-agent mapping integrity, and Codex/OpenCode routing guidance checks.
|
|
484
|
-
|
|
485
|
-
### Changed
|
|
486
|
-
|
|
487
|
-
- **Governance and routing contracts**: updated `AGENTS.md`, `opencode/agents/orchestrator.md`, and OpenCode/Codex command prompts to make delegation contracts explicit (task type classification, handoff fields, specialist output expectations).
|
|
488
|
-
- **Validation suite**: wired delegation checks into `scripts/validate-all.mjs` so `npm run validate` continuously verifies delegation integrity.
|
|
489
|
-
|
|
490
|
-
### Validation
|
|
491
|
-
|
|
492
|
-
- Ran `npm run validate:delegation`
|
|
493
|
-
- Ran `npm run validate`
|
|
494
|
-
|
|
495
|
-
## [1.6.4] - 2026-05-11
|
|
496
|
-
|
|
497
|
-
### Added
|
|
498
|
-
|
|
499
|
-
- **Napkin project memory**: added `.agents/napkin.md` and `runbooks/use-napkin-project-memory.md` to provide durable, repository-specific memory with progressive disclosure guidance.
|
|
500
|
-
|
|
501
|
-
### Changed
|
|
502
|
-
|
|
503
|
-
- **Agent guidance**: updated `AGENTS.md`, `opencode/README.md`, `opencode/agents/README.md`, and `opencode/commands/README.md` to require contextual Napkin checks at task start without force-loading full memory.
|
|
504
|
-
- **Structure validation hardening**: `scripts/validate-structure.mjs` now fails when `.agents/napkin.md` or `.agents/skills/napkin/SKILL.md` is missing and dynamically requires `SKILL.md` in every `.agents/skills/*` directory.
|
|
505
|
-
|
|
506
|
-
### Validation
|
|
507
|
-
|
|
508
|
-
- Ran `npm run validate`
|
|
509
|
-
|
|
510
|
-
## [1.6.3] - 2026-05-09
|
|
511
|
-
|
|
512
|
-
### Changed
|
|
513
|
-
|
|
514
|
-
- **Interface-design skill sync**: replaced `.agents/skills/interface-design/SKILL.md` with the upstream content from `Dammyjay93/interface-design` while preserving local validator compatibility sections.
|
|
515
|
-
- **Reference materials added**: added `.agents/skills/interface-design/references/{principles,critique,example,validation}.md` to provide deeper craft guidance and post-build critique workflows.
|
|
516
|
-
|
|
517
|
-
### Validation
|
|
518
|
-
|
|
519
|
-
- Ran `npm run validate:md`
|
|
520
|
-
- Ran `npm run validate:skills`
|
|
521
|
-
- Ran `npm run validate`
|
|
522
|
-
|
|
523
|
-
## [1.6.2] - 2026-05-09
|
|
524
|
-
|
|
525
|
-
### Changed
|
|
526
|
-
|
|
527
|
-
- **English-only root documentation**: translated remaining Portuguese sections in `README.md`, `runbooks/quick-start-guide.md`, and submodule install prompts to keep the repository default language consistent.
|
|
528
|
-
- **Skill example language consistency**: translated the example snippet in `.agents/skills/stack-variant-creator/SKILL.md` to English.
|
|
529
|
-
|
|
530
|
-
## [1.6.1] - 2026-05-09
|
|
531
|
-
|
|
532
|
-
### Added
|
|
533
|
-
|
|
534
|
-
- **Quick-start guide**: `runbooks/quick-start-guide.md` with zero-to-first-PR in 10 minutes.
|
|
535
|
-
|
|
536
|
-
## [1.6.0] - 2026-05-09
|
|
537
|
-
|
|
538
|
-
### Added
|
|
539
|
-
|
|
540
|
-
- **Cross-reference depth validation**: `scripts/validate-refs.mjs` enhanced with reference graph builder, circular reference detection (self-references filtered), depth computation, configurable depth limits (max 5 levels), and deep directory nesting checks (>6 levels).
|
|
541
|
-
- **Automated release workflow**: `.github/workflows/release.yml` creates a GitHub Release with notes from CHANGELOG.md when a `v*` tag is pushed, after running the full validation suite. Uses `body_path` for safe multiline release notes.
|
|
542
|
-
- **End-to-end validation tests**: `tests/validate-e2e.mjs` runs 14 tests covering all 8 validation scripts plus markdown lint, depth validation, placeholder exclusions, anchor validation, and release workflow structure. Added `npm run test:e2e` script.
|
|
543
|
-
- **Structure validation**: `tests/` registered as an optional directory in `scripts/validate-structure.mjs`.
|
|
544
|
-
- **Tutorial walkthroughs**: `runbooks/tutorial-walkthroughs.md` with 10 structured modules covering the full workflow from zero to first PR through deployment and stack customization, usable as self-guided tutorials or video scripts.
|
|
545
|
-
|
|
546
|
-
## [1.5.0] - 2026-05-09
|
|
547
|
-
|
|
548
|
-
### Added
|
|
549
|
-
|
|
550
|
-
- **Python API variant**: New variant (`variants/python-api/`) for FastAPI/Flask/Django backend projects with layered architecture, Pydantic validation, type hints, security, and framework-specific rules
|
|
551
|
-
|
|
552
|
-
### Fixed
|
|
553
|
-
|
|
554
|
-
- `validate-refs.mjs`: Added `tests/` to placeholder path prefixes to fix false positive for test directory references
|
|
555
|
-
|
|
556
|
-
## [1.3.0] - 2026-05-09
|
|
557
|
-
|
|
558
|
-
### Added
|
|
559
|
-
|
|
560
|
-
- **Public readiness**:
|
|
561
|
-
- `CONTRIBUTING.md` — New contribution guidelines, PR process, validation instructions
|
|
562
|
-
- License badge and npm version badge added to README
|
|
563
|
-
- Copyright year updated to 2026 in LICENSE
|
|
564
|
-
|
|
565
|
-
### Changed
|
|
566
|
-
|
|
567
|
-
- **Phase 2, 3, 3A, 5, 6 completion**: All major phases marked as Complete in ROADMAP.md
|
|
568
|
-
|
|
569
|
-
## [1.2.9] - 2026-05-09
|
|
570
|
-
|
|
571
|
-
### Added
|
|
572
|
-
|
|
573
|
-
- **Phase 6 - Advanced agent workflows**:
|
|
574
|
-
- `harness/workflows/planner-executor-workflow.md` — Planner/executor role separation, gate model, failure modes, workflow sequence, integration with OpenCode agents
|
|
575
|
-
- `harness/workflows/agent-evaluation-checklist.md` — Criteria for evaluating agent outputs: Useful, Safe, Scoped, Validated; severity model; final recommendations
|
|
576
|
-
- **Phase 2 - Consistency checks completed**:
|
|
577
|
-
- Verified no conflicting duplicate rules across 341+ "Do not" rules
|
|
578
|
-
- Standardized recommendation labels (Approved/Approved with notes/Changes requested/Blocked) across 30+ files
|
|
579
|
-
- Standardized severity language (High/Medium/Low) across 51+ files
|
|
580
|
-
- Standardized evidence rules wording across 11+ files
|
|
581
|
-
- Decision: No central `PROJECT_RULES.md` needed; AGENTS.md serves as central rules file
|
|
582
|
-
|
|
583
|
-
### Changed
|
|
584
|
-
|
|
585
|
-
- **ROADMAP.md**: Marked Phases 2, 3, 3A, 5, and 6 as Complete; added delivered items documentation
|
|
586
|
-
|
|
587
|
-
## [1.2.8] - 2026-05-09
|
|
588
|
-
|
|
589
|
-
### Added
|
|
590
|
-
|
|
591
|
-
- **Internal anchor validation**: `scripts/validate-refs.mjs` now validates anchor references (e.g. `#section` and `file.md#section` patterns) against parsed ATX and setext headings using GitHub-style ID generation. Detects broken anchors alongside existing file-path validation.
|
|
592
|
-
|
|
593
|
-
### Changed
|
|
594
|
-
|
|
595
|
-
- **validate-refs.mjs heading detection**: Added `headingToId()`, `extractHeadings()`, `resolveAnchorTargetFile()` functions; builds a heading index from all `.md` files before cross-reference checking.
|
|
596
|
-
|
|
597
|
-
## [1.2.7] - 2026-05-09
|
|
598
|
-
|
|
599
|
-
### Added
|
|
600
|
-
|
|
601
|
-
- **Offline-safe link validation**: Network errors (DNS, timeout, unreachable) in `scripts/validate-links.mjs` now print warnings and exit 0; only HTTP error responses (400+) cause failures. `npm run validate:links` is now usable offline.
|
|
602
|
-
- **Optional evidence directory**: `scripts/validate-structure.mjs` now accepts `evidence/` as an optional directory — warns if absent, does not fail — enabling future pilots to produce evidence organically.
|
|
603
|
-
|
|
604
|
-
### Changed
|
|
605
|
-
|
|
606
|
-
- **Workflow-state filename alignment**: `.workflow-state.json` phase filenames and `scripts/validate-workflow.mjs` `VALID_PHASES` map corrected to match actual prompt file names (e.g., `00-bootstrap.md` → `00-bootstrap-project.md`).
|
|
607
|
-
- **Skill table sync**: Both `README.md` and `AGENTS.md` specialist skill listings expanded to 19 entries, matching all actual skill directories in `.agents/skills/`.
|
|
608
|
-
- **markdownlint-cli 0.44 → 0.48**: Updated dependency; disabled MD060 rule (GFM-style tables do not require pipe alignment).
|
|
609
|
-
|
|
610
|
-
## [1.2.6] - 2026-05-09
|
|
611
|
-
|
|
612
|
-
### Added
|
|
613
|
-
|
|
614
|
-
- **Full skill-directory validation**: Added `scripts/validate-skills.mjs` wired into `npm run validate` to ensure every `.agents/skills/*/SKILL.md` passes structural checks.
|
|
615
|
-
- **Missing skill file**: Added `.agents/skills/playwright-cli/SKILL.md` to satisfy per-skill validation contract.
|
|
616
|
-
|
|
617
|
-
### Changed
|
|
618
|
-
|
|
619
|
-
- **Deterministic default validation**: Made default `npm run validate` deterministic and offline-safe by keeping external HTTP link checks explicit in `npm run validate:links` only.
|
|
620
|
-
- **OpenCode implementation naming**: Normalized naming around `implementer`, documenting `subagents/executor.md` as a lightweight local equivalent.
|
|
74
|
+
- Public version identity is now aligned with the npm upgrade path from `1.x` to `2.0.0`.
|
|
75
|
+
- Active documentation describes only the current 2.0 product and supported migration path.
|
|
76
|
+
- Repository-maintenance paths are separated from consumer-facing paths.
|
|
77
|
+
- The initial `2.0.0` rollout uses the npm `next` dist-tag without moving `latest`.
|
|
621
78
|
|
|
622
79
|
### Removed
|
|
623
80
|
|
|
624
|
-
-
|
|
625
|
-
|
|
626
|
-
## [1.2.5] - 2026-05-08
|
|
627
|
-
|
|
628
|
-
### Added
|
|
629
|
-
|
|
630
|
-
- **Handoff instance schema validation**: Added validation path for handoff instance files against the handoff schema in CI.
|
|
631
|
-
|
|
632
|
-
### Fixed
|
|
633
|
-
|
|
634
|
-
- **WordPress skill naming alignment**: Aligned WordPress skill naming convention with agent routing across all references.
|
|
635
|
-
|
|
636
|
-
### Changed
|
|
637
|
-
|
|
638
|
-
- **Adoption runbook Quick Start**: Added Quick Start section to `runbooks/apply-starter-to-real-project.md` for faster onboarding.
|
|
81
|
+
- Obsolete pre-2.0 runtime guidance, taxonomies, aliases, package paths, and intermediate release-candidate documentation.
|
|
639
82
|
|
|
640
|
-
##
|
|
83
|
+
## Previous public releases
|
|
641
84
|
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
- **One-command parent bootstrap**: Added `submodule:bootstrap` in `package.json` to prepare parent repositories after installing this starter as `.workflow`.
|
|
645
|
-
- **Bootstrap automation script**: Added `scripts/bootstrap-parent-workflow.mjs` to run full workflow sync, align parent `opencode.json` from `.workflow/opencode.jsonc`, and enforce backup ignore defaults.
|
|
646
|
-
|
|
647
|
-
### Changed
|
|
648
|
-
|
|
649
|
-
- **Adoption runbook guidance**: Updated `runbooks/apply-starter-to-real-project.md` with fast bootstrap instructions for submodule mode.
|
|
650
|
-
- **Submodule installation prompts**: Updated `prompts/commands/install-codex-repo-starter-submodule.md` and `.short.md` to include optional full bootstrap execution.
|
|
651
|
-
- **README adoption quickstart**: Documented bootstrap usage in `README.md` for faster first-run setup in target projects.
|
|
652
|
-
|
|
653
|
-
## [1.2.3] - 2026-05-08
|
|
654
|
-
|
|
655
|
-
### Added
|
|
656
|
-
|
|
657
|
-
- **Submodule refresh automation command**: Added `submodule:refresh`, `submodule:refresh:minimal`, and `submodule:refresh:full` scripts in `package.json` to support parent-repo update workflows when this starter is installed as `.workflow`.
|
|
658
|
-
- **Allowlist profiles for parent sync**: Added `scripts/submodule-sync-allowlist.json` with `minimal` and `full` sync profiles to control which workflow assets can be propagated outside `.workflow`.
|
|
659
|
-
- **Safe refresh script with backups**: Added `scripts/refresh-submodule.mjs` to run submodule sync/update/tag refresh and copy allowlisted files to the parent repository with timestamped backups.
|
|
660
|
-
|
|
661
|
-
### Changed
|
|
662
|
-
|
|
663
|
-
- **OpenCode command routing coverage**: Registered the `deploy` command in `opencode.jsonc` and aligned readiness routing with existing deploy command assets.
|
|
664
|
-
- **Readiness documentation cohesion**: Updated `README.md` inventory/tree markers and standardized submodule path guidance in `runbooks/validate-starter-in-real-project.md`.
|
|
665
|
-
- **Docs consistency guardrails**: Extended `scripts/validate-doc-consistency.mjs` to detect missing README structure markers and runbook-count drift.
|
|
666
|
-
|
|
667
|
-
## [1.2.1] - 2026-05-08
|
|
668
|
-
|
|
669
|
-
### Fixed
|
|
670
|
-
|
|
671
|
-
- **Submodule version-validation guidance**: Updated `prompts/commands/install-codex-repo-starter-submodule.md` and `.short.md` to reduce false version confusion when `git submodule status` shows stale tag metadata.
|
|
672
|
-
- **Tag refresh step in submodule flow**: Added `git -C .workflow fetch --tags --force` to ensure local submodule tag metadata is current before validating with `describe`.
|
|
673
|
-
- **Stronger validation evidence**: Added explicit checks with `git -C .workflow rev-parse HEAD` and `git -C .workflow describe --tags --always` in the submodule setup prompts.
|
|
674
|
-
|
|
675
|
-
## [1.2.0] - 2026-05-08
|
|
676
|
-
|
|
677
|
-
### Added
|
|
678
|
-
|
|
679
|
-
- **Team governance runbook**: Added `runbooks/team-governance-pr-readiness.md` with Definition of Ready/Definition of Done, reviewer ownership, escalation policy, and optional CODEOWNERS guidance.
|
|
680
|
-
- **Readiness hardening**: Synced top-level documentation (`README.md`, `AGENTS.md`) with current repository assets and roadmap improvements.
|
|
681
|
-
- **Structure validation hardening**: Extended `scripts/validate-structure.mjs` to require orchestration-related OpenCode agent/command files (`autopilot`, `orchestrator`, `start`, `ship`, `orchestrate`, `deploy`).
|
|
682
|
-
- **Startup routing alignment**: Aligned Codex and OpenCode startup defaults to `autopilot` with explicit fallbacks (`planner`, `discovery`, `prompt-engineer`).
|
|
683
|
-
- **OpenCode first-run smoke test**: Added verification checklist to `opencode/README.md` and `runbooks/apply-starter-to-real-project.md` to reduce manual interpretation during adoption.
|
|
684
|
-
|
|
685
|
-
### Changed
|
|
686
|
-
|
|
687
|
-
- **ROADMAP.md**: Marked team governance runbook as delivered and refined next-sprint action plan.
|
|
688
|
-
- **Documentation consistency**: Updated structure trees in `README.md` and `AGENTS.md` to reflect current harness workflows, example counts, and OpenCode assets.
|
|
689
|
-
|
|
690
|
-
## [1.1.9] - 2026-05-08
|
|
691
|
-
|
|
692
|
-
### Added
|
|
693
|
-
|
|
694
|
-
- **Deploy command entrypoint**: Added `opencode/commands/deploy.md` and documented it in `opencode/commands/README.md` for deployment readiness, rollout, and rollback planning.
|
|
695
|
-
- **Persistent operational memory**: Added `.codex/napkin.md` as curated runbook memory for recurring execution guardrails and token-efficiency directives.
|
|
85
|
+
The previous npm line ends at `1.19.1`. Detailed historical changes remain available in Git history and GitHub Releases.
|
|
696
86
|
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
- **Branch safety enforcement**: Expanded branch-gate requirements to implementation workflows, OpenCode execute command, and implementer/subagent contracts to block implementation on `main`.
|
|
700
|
-
- **PR approval policy for private repositories**: Added two-account approval flow with squash-default merge guidance in adoption runbooks.
|
|
701
|
-
- **Validation pipeline coverage**: Added external HTTP link validation (`scripts/validate-links.mjs`) and integrated it into the unified `npm run validate` flow.
|
|
702
|
-
- **Agent/skill routing clarity**: Added official agent-to-skill auto-load baseline and next-sprint action plan updates in runbooks and roadmap documentation.
|
|
703
|
-
|
|
704
|
-
## [1.1.8] - 2026-05-08
|
|
705
|
-
|
|
706
|
-
### Added
|
|
707
|
-
|
|
708
|
-
- **Startup routing entrypoints**: Added `opencode/commands/start.md` and `.codex/prompts/start-project.md` to enforce planner-first startup routing with safe fallbacks to discovery and prompt-engineer.
|
|
709
|
-
|
|
710
|
-
### Changed
|
|
711
|
-
|
|
712
|
-
- **OpenCode config routing**: Registered `start` command in `opencode.jsonc` pointing to planner with startup routing template.
|
|
713
|
-
- **Prompt docs discoverability**: Updated `.codex/prompts/README.md` and `opencode/README.md` to document the new startup routing entrypoints.
|
|
714
|
-
|
|
715
|
-
## [1.1.7] - 2026-05-08
|
|
716
|
-
|
|
717
|
-
### Added
|
|
718
|
-
|
|
719
|
-
- **Submodule setup prompts**: Added `prompts/commands/install-codex-repo-starter-submodule.md` and `.short.md` for installing `codex-repo-starter` as a `.workflow` submodule with safe backup/removal flow and GH CLI SSH URL resolution.
|
|
720
|
-
- **New reusable skills**: Added `.agents/skills/skill-creator/SKILL.md`, `.agents/skills/interface-design/SKILL.md`, and `.agents/skills/napkin/SKILL.md` adapted to this repository workflow.
|
|
87
|
+
## 2.1.0
|
|
721
88
|
|
|
722
89
|
### Changed
|
|
723
90
|
|
|
724
|
-
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
- **README inventory accuracy**: Updated validation script count from 3 to 7 to reflect the current validation toolchain.
|
|
731
|
-
- **ROADMAP clarity**: Renamed a stale subsection label from "Planned items" to "Planned and completed updates" where checklist items are mixed by design.
|
|
732
|
-
|
|
733
|
-
## [1.1.5] - 2026-05-08
|
|
734
|
-
|
|
735
|
-
### Added
|
|
736
|
-
|
|
737
|
-
- **Workflow-state schema contract**: Added `.workflow-state.schema.json` and included it in repository structure validation.
|
|
738
|
-
|
|
739
|
-
### Changed
|
|
740
|
-
|
|
741
|
-
- **Schema validation coverage**: Updated `scripts/validate-schemas.mjs` to compile-check `.workflow-state.schema.json` in addition to existing workflow schemas.
|
|
742
|
-
- **CI validation flow**: Simplified `.github/workflows/validate.yml` to run a single canonical `npm run validate` step.
|
|
743
|
-
|
|
744
|
-
### Fixed
|
|
745
|
-
|
|
746
|
-
- **AGENTS maturity table duplication**: Removed duplicated status rows in `AGENTS.md`.
|
|
747
|
-
- **ROADMAP status drift**: Reconciled example and changelog completion markers in `ROADMAP.md` to reflect current repository state.
|
|
748
|
-
|
|
749
|
-
## [1.1.4] - 2026-05-08
|
|
750
|
-
|
|
751
|
-
### Added
|
|
752
|
-
|
|
753
|
-
- **Subagent routing guide**: Added `subagents/README.md` with ownership boundaries, best-use routing, optimization rules, and a recommended handoff chain (`planner -> executor -> reviewer -> validator`).
|
|
754
|
-
|
|
755
|
-
### Changed
|
|
756
|
-
|
|
757
|
-
- **OpenCode agent documentation**: Updated `opencode/agents/README.md` with a “Fast path with local subagents” section to improve routing between repository subagents and broader OpenCode agent roles.
|
|
758
|
-
- **Top-level discoverability**: Updated `README.md` `subagents/` section to link to `subagents/README.md` for quick routing and handoff guidance.
|
|
759
|
-
|
|
760
|
-
## [1.1.3] - 2026-05-08
|
|
761
|
-
|
|
762
|
-
### Added
|
|
763
|
-
|
|
764
|
-
- **Real-project validation runbook**: Added `runbooks/validate-starter-in-real-project.md` with adoption criteria, workflow proof steps, and common pitfalls.
|
|
765
|
-
- **Quickstart (10 minutes)**: Added a fast-path onboarding section to `README.md` for first-value execution.
|
|
766
|
-
- **Documentation consistency validation**: Added `scripts/validate-doc-consistency.mjs` and integrated it into `validate-all.mjs` as a new validation tier.
|
|
767
|
-
- **Completed examples**: Finished full 6-file workflow artifacts for `examples/docs-only-repo/` and `examples/wordpress-theme/`.
|
|
768
|
-
|
|
769
|
-
### Changed
|
|
770
|
-
|
|
771
|
-
- **Project positioning text**: Updated key documents to present the repository as a **Workflow starter kit** while preserving `codex-repo-starter` technical identifier.
|
|
772
|
-
- **Maturity status tables**: Updated examples status to `Complete (nuxt-dashboard, docs-only-repo, wordpress-theme)` in `README.md` and `AGENTS.md`.
|
|
773
|
-
|
|
774
|
-
### Fixed
|
|
775
|
-
|
|
776
|
-
- **Skill routing clarity**: Added quick routing maps and practical selection heuristics to reduce ambiguity when choosing primary vs supporting skills.
|
|
777
|
-
|
|
778
|
-
## [1.1.2] - 2026-05-08
|
|
779
|
-
|
|
780
|
-
### Fixed
|
|
781
|
-
|
|
782
|
-
- **opencode.jsonc**: Replaced invalid top-level keys (`version`, `name`, `description`, `agents`, `commands`, `workflow`) with OpenCode schema keys (`agent`, `command`, `skills.paths`).
|
|
783
|
-
- **OpenCode docs**: Updated README references to describe the validated OpenCode project config structure.
|
|
784
|
-
|
|
785
|
-
## [1.1.1] - 2026-05-08
|
|
786
|
-
|
|
787
|
-
### Added
|
|
788
|
-
|
|
789
|
-
- **Cross-reference validation**: `scripts/validate-refs.mjs` extracts file paths from Markdown code fences, backticks, and links. Verifies each path resolves to an existing file or directory. Handles placeholder exclusions for examples/ and template files.
|
|
790
|
-
- **Workflow state tracker**: `.workflow-state.json` + `scripts/validate-workflow.mjs` track 5 workflow phases (bootstrap, requirement, specification, technicalPlan, prBreakdown) with status, completion date, active PR, and completed PRs. Validates phase ordering.
|
|
791
|
-
- **Schema validation**: `scripts/validate-schemas.mjs` uses `ajv` to validate all 6 JSON schemas. Verifies valid JSON, no circular refs, and all internal `$ref` resolution.
|
|
792
|
-
- **harness/README.md**: Added Workflow State Tracker section documenting phase order, rules, and usage.
|
|
793
|
-
- **opencode/README.md**: Added Configuration section documenting `opencode.jsonc` experimental status and verification requirements.
|
|
794
|
-
|
|
795
|
-
### Fixed
|
|
796
|
-
|
|
797
|
-
- **AGENTS.md maturity table**: Fixed "Automated Markdown validation" from "Not started" to "Complete"; added 5 missing rows (opencode.jsonc, CI workflow, package.json/version, CHANGELOG, LICENSE).
|
|
798
|
-
- **README.md known gaps**: Removed stale "changelog" and "license decision" references; updated "executable validation" to reflect new cross-reference and workflow state checks.
|
|
799
|
-
- **README.md next improvements**: Replaced outdated PR recommendations with schema validation and OpenCode config verification as top priorities.
|
|
800
|
-
- **AGENTS.md next improvements**: Replaced completed items with genuine future work (schema validation, cross-reference checks, harness expansion, link validation, stack variants).
|
|
801
|
-
- **opencode.jsonc**: Added informational comment noting that `$schema` reference is unverified and the configuration structure is experimental.
|
|
802
|
-
- **All 6 schemas**: Removed `https://json-schema.org/draft/2020-12/schema` reference from `schemas/*.schema.json` — schemas are self-contained with `$id` only.
|
|
803
|
-
|
|
804
|
-
### Changed
|
|
805
|
-
|
|
806
|
-
- **validate-all.mjs**: Expanded from 3 to 6 validation tiers (Markdown, JSON, cross-refs, workflow state, schemas, structure).
|
|
807
|
-
- **package.json**: Added `validate:refs`, `validate:workflow`, `validate:schemas` scripts; added `ajv` and `ajv-formats` dev dependencies.
|
|
808
|
-
- **validate-structure.mjs**: Added `.workflow-state.json` to required paths (55 paths total).
|
|
809
|
-
|
|
810
|
-
## [1.1.0] - 2024-05-07
|
|
811
|
-
|
|
812
|
-
### Added
|
|
813
|
-
|
|
814
|
-
- **License**: Added MIT LICENSE file for legal clarity
|
|
815
|
-
- **OpenCode config**: Added `opencode.jsonc` with agent, command, and skill mappings
|
|
816
|
-
- **CI workflow**: Added `.github/workflows/validate.yml` for automatic validation
|
|
817
|
-
- **Compact commands**: Added 5 token-efficient command prompts in `prompts/commands/`:
|
|
818
|
-
- `requirement.md` (~47 lines) - Create requirement
|
|
819
|
-
- `spec.md` (~41 lines) - Create specification
|
|
820
|
-
- `tech-plan.md` (~41 lines) - Create technical plan
|
|
821
|
-
- `implement.md` (~42 lines) - Implement PR
|
|
822
|
-
- `validate.md` (~42 lines) - Validate PR
|
|
823
|
-
|
|
824
|
-
### Changed
|
|
825
|
-
|
|
826
|
-
- Updated `opencode.jsonc` to include `compact_commands` references
|
|
827
|
-
- Reduced token usage by 87-92% for common workflow commands
|
|
828
|
-
|
|
829
|
-
## [1.0.0] - 2024-05-05
|
|
830
|
-
|
|
831
|
-
### Added
|
|
832
|
-
|
|
833
|
-
- **Core structure**: Initial repository foundation
|
|
834
|
-
- **Skills**: 15 specialist skills in `.agents/skills/`
|
|
835
|
-
- **Prompts**: 10 ordered prompts in `prompts/00-09/`
|
|
836
|
-
- **Codex entrypoints**: 4 compact prompts in `.codex/prompts/`
|
|
837
|
-
- **OpenCode commands**: 5 commands in `opencode/commands/`
|
|
838
|
-
- **OpenCode agents**: 11 agents in `opencode/agents/`
|
|
839
|
-
- **Templates**: 7 reusable templates in `templates/`
|
|
840
|
-
- **Runbooks**: 5 operational runbooks in `runbooks/`
|
|
841
|
-
- **Schemas**: 6 JSON schemas in `schemas/`
|
|
842
|
-
- **Example**: Nuxt dashboard workflow in `examples/`
|
|
843
|
-
- **Validation**: Markdown, JSON, and structure validation scripts
|
|
844
|
-
- **Documentation**: README.md, AGENTS.md, ROADMAP.md
|
|
845
|
-
|
|
846
|
-
---
|
|
847
|
-
|
|
848
|
-
## Versioning strategy
|
|
849
|
-
|
|
850
|
-
- **Major**: Breaking changes to workflow structure or skill contracts
|
|
851
|
-
- **Minor**: New features (commands, skills, examples)
|
|
852
|
-
- **Patch**: Documentation fixes, validation improvements
|
|
853
|
-
|
|
854
|
-
## How to add changes
|
|
855
|
-
|
|
856
|
-
When contributing changes:
|
|
857
|
-
|
|
858
|
-
1. Add entry under `[Unreleased]` with date
|
|
859
|
-
2. Categorize as `Added`, `Changed`, `Deprecated`, `Removed`, `Fixed`, `Security`
|
|
860
|
-
3. Be specific about what changed and where
|
|
861
|
-
4. Update version in header when releasing
|
|
862
|
-
|
|
863
|
-
## Migration notes
|
|
864
|
-
|
|
865
|
-
### 1.1.0 → 1.1.1
|
|
866
|
-
|
|
867
|
-
- Run `npm install` to install `ajv` and `ajv-formats` dev dependencies
|
|
868
|
-
- Validation now has 6 tiers — `npm run validate` runs cross-reference, workflow state, and schema checks in addition to previous checks
|
|
869
|
-
- `.workflow-state.json` is optional — the repository validates without it
|
|
870
|
-
- `opencode.jsonc` is marked experimental — verify configuration against a known OpenCode installation before production use
|
|
871
|
-
|
|
872
|
-
### 1.0.0 → 1.1.0
|
|
873
|
-
|
|
874
|
-
- New `opencode.jsonc` enables direct OpenCode integration
|
|
875
|
-
- Use `prompts/commands/` for token-efficient workflow
|
|
876
|
-
- CI now validates automatically on push/PR
|
|
877
|
-
- All changes backwards compatible
|
|
91
|
+
- Recovered the original product direction: proportionate workflows, useful software, and concise evidence.
|
|
92
|
+
- Kept protected-branch enforcement, required validation execution, bounded remediation, and false-success prevention as non-negotiable guardrails.
|
|
93
|
+
- Removed mandatory canonical response fields, owner JSON, fixed delivery filenames, and persisted evidence from quick/standard work.
|
|
94
|
+
- Simplified Atlas to route and coordinate without forcing multi-agent ceremony.
|
|
95
|
+
- Simplified QualityGuard to objective branch, validation, documentation, UI-evidence, and full-mode persistence checks.
|
|
96
|
+
- Replaced keyword-driven Product Truthfulness enforcement with semantic guidance.
|