$npx -y skills add kornpng/web-mvp-blueprint-kit --skill mvp-agent-contextGenerate Codex-first agent context files for a Web MVP. Use after the PRD and Technical Blueprint exist when the user needs AGENTS.md, REVIEW-CHECKLIST.md, and agent_docs for project brief, requirements, tech stack, page map, data model, build tasks, testing, and reusable prompts
| 1 | # MVP Agent Context |
| 2 | |
| 3 | Generate the files a coding agent needs before implementation. |
| 4 | |
| 5 | ## Inputs |
| 6 | |
| 7 | Read: |
| 8 | |
| 9 | - `docs/BuildablePRD-*.md` |
| 10 | - `docs/TechBlueprint-*.md` |
| 11 | - Optional `docs/EvidencePack-*.md` |
| 12 | |
| 13 | ## Files |
| 14 | |
| 15 | Create or update: |
| 16 | |
| 17 | ```text |
| 18 | AGENTS.md |
| 19 | REVIEW-CHECKLIST.md |
| 20 | agent_docs/ |
| 21 | project_brief.md |
| 22 | product_requirements.md |
| 23 | tech_stack.md |
| 24 | page_map.md |
| 25 | data_model.md |
| 26 | build_tasks.md |
| 27 | testing.md |
| 28 | prompts.md |
| 29 | ``` |
| 30 | |
| 31 | Use `templates/` from this repository as the starting point when available. Replace placeholders with project-specific details. |
| 32 | |
| 33 | ## Rules |
| 34 | |
| 35 | - Keep `AGENTS.md` concise. |
| 36 | - Put detailed requirements in `agent_docs/`. |
| 37 | - Include safety rules: no delete, no auto-commit, no deploy, no real secrets, no out-of-scope features. |
| 38 | - Stop after generating context and ask whether to create build tickets. |