Compiles the full agentic workflow for a project: CLAUDE.md, docs/, planner, and builder agents. Idempotent — safe to re-run.
How this skill is triggered — by the user, by Claude, or both
Slash command
/spec-driven-development:compiling-agentic-workflowsonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Orchestrates the full project compilation sequence in one invocation. Calls each sub-skill in dependency order, passing results forward. Idempotent — re-running updates all artifacts to match current codebase state.
Orchestrates the full project compilation sequence in one invocation. Calls each sub-skill in dependency order, passing results forward. Idempotent — re-running updates all artifacts to match current codebase state.
git rev-parse --is-inside-work-tree) — FAIL if notCLAUDE.md, docs/, .claude/agents/planner.md, .claude/agents/builder.md already exist (for reporting)Execute these skills in order — each depends on the output of the previous:
/compiling-project-settings {user arguments if provided}
Generates or updates CLAUDE.md (~50-100 lines). All subsequent steps reference this file.
/compiling-project-docs
Generates or updates docs/ directory. Planner and builder agents reference these files.
/compiling-planner-agent {user arguments if provided}
Generates or updates .claude/agents/planner.md.
/compiling-builder-agent {user arguments if provided}
Generates or updates .claude/agents/builder.md.
Report what was compiled:
Agentic Workflow Compiled
=========================
| Artifact | Status | Lines |
|-------------------------------|---------|-------|
| CLAUDE.md | created | 72 |
| docs/ (N files) | created | 580 |
| .claude/agents/planner.md | created | 85 |
| .claude/agents/builder.md | created | 91 |
Next steps:
claude --agent planner # Design a feature
claude --agent builder # Implement a task
/compiling-security-agent # (optional) Add security auditor
/compiling-devops-agent # (optional) Add DevOps specialist
Use created for new files, updated for re-compilations.
CLAUDE.md already exists, sub-skills handle the override prompt — don't suppress itAll arguments are forwarded to sub-skills where applicable:
/compiling-project-settings and agent compilers--focus "area" → passed to /compiling-project-settingsnpx claudepluginhub pipemind-com/pipemind-marketplace --plugin spec-driven-developmentInitializes or migrates a project to nested CLAUDE.md files for progressive disclosure. Splits bloated root config into topic-specific docs/agents/ files.
Creates and improves CLAUDE.md files for project memory and agent configuration using TDD workflow with task tracking. Activates on 'create CLAUDE.md', 'setup project', 'configure agent'.
Creates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.