A repository-ready template pack for using a planner / generator / evaluator harness in backend, web, and fullstack projects.
.harness/: runtime memory, schemas, sprint contracts, reports.agents/: role prompts and boundaries.skills/: reusable operating rules.commands/: orchestration entry promptsscripts/: bootstrap and validation helpersdocs/: architecture and best-practice notesapps/web/: suggested web app layoutapps/backend/: suggested backend service layouttests/: shared test layersci/: starter CI and quality gate files
- Copy the whole template into a repo.
- Edit
.harness/project.jsonto match your stack and target. - Fill
spec.md,feature_list.json, andsprint_plan.json. - Use
.commands/start-harness.mdas the orchestration entry. - Enforce the JSON schemas in
.harness/schemas/through CI. - Keep
run_state.jsonandprogress.mdupdated on every transition.
- Planning:
.commands/plan-project.md - Sprint delivery:
.commands/run-sprint.md - Evaluation:
.commands/evaluate-sprint.md - Closeout:
.commands/close-project.md
.harness/feature_list.jsonis the only source of truth for feature completion.- All critical steps must run serially.
- No sprint may advance before evaluator approval.
- The project is only complete when all features have
passes=true.