Templates and scripts for generating layered BUILD-GUIDE.json/md from Airtable plugin index - shows available commands organized by infrastructure layers
Inherits all available tools
Additional assets for this skill
This skill inherits all available tools. When active, it can use any tool Claude has access to.
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 \
--architecture docs/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 architecture docs
/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 --refresh