Slash Command178 repo starsupdated 6mo ago
build
The build command executes a development plan by reading task instructions, implementing each step in sequence while verifying syntax and imports, running any included validation tests, and reporting completed work with summaries of created or modified files. Use this command to systematically convert a structured plan into working code implementation with quality assurance checkpoints.
Install in Claude Code
Copymkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/theaiautomators/claude-code-agentic-rag-masterclass/HEAD/.claude/commands/build.md -o ~/.claude/commands/build.mdThen start a new Claude Code session; the slash command loads automatically.
Definition
build.md
# Build Read and execute: `$ARGUMENTS` ## Process 1. **Read the entire plan** - Understand all tasks, dependencies, and success criteria 2. **Execute tasks in order** - Implement each task following project conventions. Verify syntax and imports after each change. 3. **Run any validation steps** - If the plan includes tests or validation commands, run them. Fix issues before proceeding. 4. **Report completion** - Summarise what was done: - Tasks completed - Files created/modified - Test results (if applicable) - Any deviations from plan and why
More from this repository