Templates and scripts for generating layered BUILD-GUIDE.json/md from Airtable plugin index - shows available commands organized by infrastructure layers
/plugin marketplace add vanman2024/dev-lifecycle-marketplace/plugin install planning@dev-lifecycle-marketplaceThis 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 --refreshThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.