cleanup-cache
Clean system caches (npm, Homebrew, Yarn, browsers, Python/ML) to free disk space
Execute implementation tasks from a design document. Tasks are tracked as markdown checkboxes directly in the design file.
$ npx -y skills add davila7/claude-code-templates --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/feature-pipelineContext preview
What this command does when you run it.
Execute implementation tasks from a design document. Tasks are tracked as markdown checkboxes directly in the design file.
description: Execute implementation tasks from a design document. Tasks are tracked as markdown checkboxes directly in the design file. argument-hint: <design-file.md> allowed-tools: Read, Write, Edit, Bash, Glob, Grep, TodoWrite, Task, AskUserQuestion
Execute implementation tasks from a design document using markdown checkboxes.
`$ARGUMENTS` should be a path to a design markdown file (e.g., `docs/designs/xxx.md`)
If empty or unclear, ask user for the design file path.
1. Read the design file 2. Run `python3 .claude/skills/task-execution-engine/scripts/task_manager.py status --file <design.md>` to show current progress 3. If all tasks completed, report and exit 4. Otherwise, proceed to execution
**UNATTENDED MODE - No questions, no stopping**
LOOP:
1. RUN: task_manager.py next --file <design.md> --json
2. IF no task available → EXIT to Phase 3
3. READ task details (files, criteria)
4. IMPLEMENT the task
- Create/modify files as specified
- Follow codebase patterns
- Run tests if applicable
5. VERIFY acceptance criteria
6. UPDATE status:
- Success: task_manager.py done --file <design.md> --task "Title"
- Failure: task_manager.py fail --file <design.md> --task "Title" --reason "..."
7. OUTPUT result summary
8. CONTINUE (go to step 1)1. Run `task_manager.py status --file <design.md>` to show final summary 2. Report:
3. Ask if user wants to commit changes to git
1. **Read files** specified in task's `files:` line 2. **Understand criteria** from the checkbox items 3. **Implement** following existing codebase patterns 4. **Verify** each acceptance criterion is met 5. **Update** the design file with completion status
# Mark task completed (updates checkbox to [x] ✅) python3 .claude/skills/task-execution-engine/scripts/task_manager.py done \ --file <design.md> --task "Task Title" # Mark task failed (updates checkbox to [x] ❌ with reason) python3 .claude/skills/task-execution-engine/scripts/task_manager.py fail \ --file <design.md> --task "Task Title" --reason "Error description"
After each task:
---TASK RESULT--- task: Task Title status: completed|failed files: [list of modified files] notes: Brief description ---END TASK RESULT---
| Error | Action | |-------|--------| | Task implementation fails | Mark failed, continue to next | | Script error | Log error, retry once, then fail task | | No tasks available | Exit loop, show summary | | File not found | Ask user for correct path |
1. **NEVER stop** in the middle of execution loop 2. **NEVER ask** questions during execution 3. **ALWAYS** update task status in design file 4. **Exit only** when no pending tasks remain
Ready-to-use configurations for Anthropic's Claude Code. A comprehensive collection of AI agents, custom commands, settings, hooks, external integrations (MCPs), and project templates to enhance your development workflow.
Repo: davila7/claude-code-templates
Clean system caches (npm, Homebrew, Yarn, browsers, Python/ML) to free disk space
Create an SEO-optimized blog article for a Claude Code component with AI-generated cover image