From planning
Templates and scripts for generating layered BUILD-GUIDE.json/md from Airtable plugin index - shows available commands organized by infrastructure layers
How this skill is triggered — by the user, by Claude, or both
Slash command
/planning:build-manifestThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides templates and scripts for generating **BUILD-GUIDE** files (both JSON and Markdown) that show available commands organized by infrastructure layers.
examples/BUILD-GUIDE-with-gaps.jsonexamples/BUILD-GUIDE.jsonexamples/BUILD-GUIDE.mdscripts/detect-tech-stack.shscripts/generate-manifest.pyscripts/validate-manifest.shtemplates/BUILD-GUIDE-minimal.json.templatetemplates/BUILD-GUIDE.json.templatetemplates/BUILD-GUIDE.md.templatetemplates/layer-template.jsonThis skill provides templates and scripts for generating BUILD-GUIDE files (both JSON and Markdown) that show available commands organized by infrastructure layers.
The BUILD-GUIDE is a layered execution blueprint that:
Use this skill when:
/planning:wizard completesBUILD-GUIDE organizes commands into sequential layers:
foundation, planning, supervisorquality, deployment, versioningLocation: templates/BUILD-GUIDE.json.template
Shows the complete JSON structure with:
Location: templates/BUILD-GUIDE.md.template
Human-readable version with:
Location: scripts/generate-manifest.py
Purpose: Query Airtable and generate BUILD-GUIDE files
Usage:
python scripts/generate-manifest.py \
--project files (README, roadmap/*.json, specs/)/architecture/README.md \
--output BUILD-GUIDE
Process:
Requirements:
See examples/BUILD-GUIDE.json for complete Next.js + FastAPI + Supabase example
See examples/BUILD-GUIDE.md for markdown version
{
"gaps": [
{
"technology": "Redis",
"mentioned_in": "docs/architecture/caching.md",
"reason": "No redis plugin found in any marketplace",
"suggestion": "Create redis plugin with /domain-plugin-builder:build-plugin redis"
}
]
}
The build-manifest-generator agent in this plugin uses this skill:
!{skill planning:build-manifest}
The agent:
BUILD-GUIDE.json:
BUILD-GUIDE.md:
All templates use placeholder format:
your_service_key_here for API keysThe skill validates:
Typical workflow:
# 1. Planning wizard creates project files (README, roadmap/*.json, specs/)
/planning:wizard
# 2. Generate build manifest
/planning:generate-build-guide # Uses this skill
# 3. Reference during development
# Claude reads BUILD-GUIDE.json when user says "add authentication"
# Claude sees: /supabase:add-auth available
When adding new plugins to marketplaces:
/planning:generate-build-guide --refreshnpx claudepluginhub vanman2024/dev-lifecycle-marketplace --plugin planningScaffolds greenfield project architecture and AI agent harness via interview-driven decisions. Outputs markdown spec with code structure exemplar, tests, guardrails, CLAUDE.md setup, and unified plan. Invoke via /scaffold for new projects.
Generates or updates AGENTS.md/CLAUDE.md files for AI coding agents by auto-scanning project files combined with interactive Q&A. Supports multiple tech stacks and preserves customizations when updating.
Scans codebase, infers project configuration, and interactively generates SDLC files with confidence-driven questions.