/execute
Execute implementation plan systematically with progress tracking and checkpoint validation
$ npx -y skills add athola/claude-night-market --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/execute
Context preview
What this command does when you run it.
Execute implementation plan systematically with progress tracking and checkpoint validation
Command definition
execute.mdname: execute
description: "Execute implementation plan systematically with progress tracking and checkpoint validation"
Attune Execute Command
Execute implementation plans systematically with task tracking, checkpoint validation, and continuous progress reporting.
When To Use
Use this command when you need to:
- Execute implementation plan with task tracking
- Implement tasks in dependency order
- Validate checkpoints against acceptance criteria
- Track progress and identify blockers
- Monitor velocity and burndown metrics
- Ensure systematic quality-gated execution
When NOT To Use
Avoid this command if:
- No implementation plan exists (use `/attune:blueprint` first)
- Still planning or designing (complete planning phase)
- Single isolated task (execute directly without framework)
- Exploratory coding or quick prototype (too much overhead)
Usage
# Start execution from plan
/attune:execute
# Execute specific task
/attune:execute --task TASK-003
# Resume from checkpoint
/attune:execute --resume
# Execute specific phase
/attune:execute --phase "Phase 1"
What This Command Does
1. **Loads implementation plan** from planning phase 2. **Invokes execution agent** with superpowers integration 3. **Executes tasks** in dependency order with checkpoints 4. **Tracks progress** and updates task status 5. **Validates completion** against acceptance criteria 6. **Reports progress** with metrics and blockers
Integration with Superpowers
When superpowers plugin is available:
- Uses `Skill(superpowers:executing-plans)` for systematic execution
- Uses `Skill(superpowers:systematic-debugging)` for issue resolution
- Uses `Skill(superpowers:verification-before-completion)` for validation
Without superpowers:
- Falls back to attune's native execution agent
- Provides similar checkpoint-based approach
- Validates task completion systematically
Workflow
# 1. Load implementation plan
# Read docs/implementation-plan.md
# 2. Invoke execution agent
Agent(attune:project-implementer)
# 3. Execute tasks in dependency order:
# For each task:
# - Check dependencies complete
# - Execute implementation
# - Run tests
# - Validate acceptance criteria
# - Update progress tracker
# 4. Report progress
# - Tasks completed/total
# - Blockers and risks
# - Next actions
# 5. Save execution state
# - .attune/execution-state.json
Execution Phases
Phase 1: Preparation
**Actions**:
- Load implementation plan
- Validate project initialized (run /attune:project-init if needed)
- Check dependencies installed
- Review task dependency graph
**Output**: Execution plan with ordered task list
Phase 2: Task Execution Loop
**For each task in order**:
1. **Pre-execution**:
- Verify dependencies complete
- Review acceptance criteria
- Create feature branch (if needed)
2. **Implementation**:
- Write code following spec
- Run tests continuously (TDD)
- Document as you go
3. **Validation**:
- All acceptance criteria met?
- Tests passing?
- Code review ready?
4. **Checkpoint**:
- Mark task complete
- Update progress tracker
- Identify blockers
Phase 3: Progress Reporting
**Metrics Tracked**:
- Tasks completed vs. total
- Tasks in progress
- Blocked tasks
- Estimated completion percentage
- Velocity (tasks/day)
**Reports Generated**:
- Daily standup summary
- Sprint progress report
- Blocker identification
- Risk assessment updates
Arguments
- `--task <task-id>` - Execute specific task (e.g., TASK-003)
- `--phase <phase-name>` - Execute specific phase
- `--resume` - Resume from last checkpoint
- `--dry-run` - Preview execution without applying changes
- `--parallel` - Execute nonconflicting tasks in parallel (DEFAULT for independent tasks)
Examples
Example 1: Full Execution
/attune:blueprint
/attune:project-init --lang python
/attune:execute
**Session Output**:
๐ Executing Implementation Plan
Plan: docs/implementation-plan.md
Total tasks: 40
Current sprint: Sprint 1 (Foundation)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Phase 1: Foundation (10 tasks)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[โ] TASK-001: Initialize Project Structure
โโ Created project with /attune:project-init
โโ All tests passing
โโ Duration: 45 minutes
[โถ] TASK-002: Database Schema Design
โโ Creating migration: migrations/001_initial.sql
โโ Running: alembic revision --autogenerate
โโ Progress: 60%
Checkpoint: 1/10 tasks complete (10%)
Next: Complete TASK-002, start TASK-003
Blockers: NoneExample 2: Execute Specific Task
/attune:execute --task TASK-005
**Detailed Task Execution**:
๐ Executing TASK-005: Implement OAuth Flow
Dependencies: TASK-004 (Complete โ)
Acceptance Criteria:
- [ ] GitHub OAuth app configured
- [ ] Login redirect to GitHub
- [ ] Callback handles tokens
- [ ] User session created
- [ ] Tests cover happy + error paths
Step 1/5: Configure GitHub OAuth App
โ Creating OAuth app in GitHub Settings...
โ Setting callback URL: http://localhost:8000/auth/callback
โ Storing client_id and client_secret in .env
โ Complete
Step 2/5: Implement login endpoint
โ Creating backend/app/auth/oauth.py...
โ Writing tests/auth/test_oauth.py...
[Code implementation details...]
โ Complete (tests passing)
Step 3/5: Implement callback handler
[... implementation ...]
Progress: 3/5 steps (60%)
Estimated completion: 30 minutes
Example 3: Resume from Checkpoint
/attune:execute --resume
Loads state from `.attune/execution-state.json`:
๐ Resuming Execution
Last checkpoint: 2026-01-02 14:30:22
Completed: 15/40 tasks (37.5%)
Last task: TASK-015 (Complete)
Next task: TASK-016
Resuming with TASK-016...
Example 4: Phase-Specific Execution
/attune:execute --phase "Phase 2"
Executes only Phase 2 tasks (TASK-011 through TASK-030).
Claude Code Tasks Integration (2.1.16+)
Read more
name: execute description: "Execute implementation plan systematically with progress tracking and checkpoint validation"
Attune Execute Command
Execute implementation plans systematically with task tracking, checkpoint validation, and continuous progress reporting.
When To Use
Use this command when you need to:
- Execute implementation plan with task tracking
- Implement tasks in dependency order
- Validate checkpoints against acceptance criteria
- Track progress and identify blockers
- Monitor velocity and burndown metrics
- Ensure systematic quality-gated execution
When NOT To Use
Avoid this command if:
- No implementation plan exists (use `/attune:blueprint` first)
- Still planning or designing (complete planning phase)
- Single isolated task (execute directly without framework)
- Exploratory coding or quick prototype (too much overhead)
Usage
# Start execution from plan /attune:execute # Execute specific task /attune:execute --task TASK-003 # Resume from checkpoint /attune:execute --resume # Execute specific phase /attune:execute --phase "Phase 1"
What This Command Does
1. **Loads implementation plan** from planning phase 2. **Invokes execution agent** with superpowers integration 3. **Executes tasks** in dependency order with checkpoints 4. **Tracks progress** and updates task status 5. **Validates completion** against acceptance criteria 6. **Reports progress** with metrics and blockers
Integration with Superpowers
When superpowers plugin is available:
- Uses `Skill(superpowers:executing-plans)` for systematic execution
- Uses `Skill(superpowers:systematic-debugging)` for issue resolution
- Uses `Skill(superpowers:verification-before-completion)` for validation
Without superpowers:
- Falls back to attune's native execution agent
- Provides similar checkpoint-based approach
- Validates task completion systematically
Workflow
# 1. Load implementation plan # Read docs/implementation-plan.md # 2. Invoke execution agent Agent(attune:project-implementer) # 3. Execute tasks in dependency order: # For each task: # - Check dependencies complete # - Execute implementation # - Run tests # - Validate acceptance criteria # - Update progress tracker # 4. Report progress # - Tasks completed/total # - Blockers and risks # - Next actions # 5. Save execution state # - .attune/execution-state.json
Execution Phases
Phase 1: Preparation
**Actions**:
- Load implementation plan
- Validate project initialized (run /attune:project-init if needed)
- Check dependencies installed
- Review task dependency graph
**Output**: Execution plan with ordered task list
Phase 2: Task Execution Loop
**For each task in order**:
1. **Pre-execution**: - Verify dependencies complete - Review acceptance criteria - Create feature branch (if needed) 2. **Implementation**: - Write code following spec - Run tests continuously (TDD) - Document as you go 3. **Validation**: - All acceptance criteria met? - Tests passing? - Code review ready? 4. **Checkpoint**: - Mark task complete - Update progress tracker - Identify blockers
Phase 3: Progress Reporting
**Metrics Tracked**:
- Tasks completed vs. total
- Tasks in progress
- Blocked tasks
- Estimated completion percentage
- Velocity (tasks/day)
**Reports Generated**:
- Daily standup summary
- Sprint progress report
- Blocker identification
- Risk assessment updates
Arguments
- `--task <task-id>` - Execute specific task (e.g., TASK-003)
- `--phase <phase-name>` - Execute specific phase
- `--resume` - Resume from last checkpoint
- `--dry-run` - Preview execution without applying changes
- `--parallel` - Execute nonconflicting tasks in parallel (DEFAULT for independent tasks)
Examples
Example 1: Full Execution
/attune:blueprint /attune:project-init --lang python /attune:execute
**Session Output**:
๐ Executing Implementation Plan
Plan: docs/implementation-plan.md
Total tasks: 40
Current sprint: Sprint 1 (Foundation)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Phase 1: Foundation (10 tasks)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[โ] TASK-001: Initialize Project Structure
โโ Created project with /attune:project-init
โโ All tests passing
โโ Duration: 45 minutes
[โถ] TASK-002: Database Schema Design
โโ Creating migration: migrations/001_initial.sql
โโ Running: alembic revision --autogenerate
โโ Progress: 60%
Checkpoint: 1/10 tasks complete (10%)
Next: Complete TASK-002, start TASK-003
Blockers: NoneExample 2: Execute Specific Task
/attune:execute --task TASK-005
**Detailed Task Execution**:
๐ Executing TASK-005: Implement OAuth Flow Dependencies: TASK-004 (Complete โ) Acceptance Criteria: - [ ] GitHub OAuth app configured - [ ] Login redirect to GitHub - [ ] Callback handles tokens - [ ] User session created - [ ] Tests cover happy + error paths Step 1/5: Configure GitHub OAuth App โ Creating OAuth app in GitHub Settings... โ Setting callback URL: http://localhost:8000/auth/callback โ Storing client_id and client_secret in .env โ Complete Step 2/5: Implement login endpoint โ Creating backend/app/auth/oauth.py... โ Writing tests/auth/test_oauth.py... [Code implementation details...] โ Complete (tests passing) Step 3/5: Implement callback handler [... implementation ...] Progress: 3/5 steps (60%) Estimated completion: 30 minutes
Example 3: Resume from Checkpoint
/attune:execute --resume
Loads state from `.attune/execution-state.json`:
๐ Resuming Execution Last checkpoint: 2026-01-02 14:30:22 Completed: 15/40 tasks (37.5%) Last task: TASK-015 (Complete) Next task: TASK-016 Resuming with TASK-016...
Example 4: Phase-Specific Execution
/attune:execute --phase "Phase 2"
Executes only Phase 2 tasks (TASK-011 through TASK-030).
Claude Code Tasks Integration (2.1.16+)
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Other commands on claude-night-market.
- /aggregate-logs
Generate LEARNINGS.md from skill execution logs.
Open command - /analyze-skill
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Open command - /bulletproof-skill
Harden skills against rationalization and bypass behaviors
Open command - /context-report
Generate context optimization report for skill directories
Open command - /create-command
Create slash commands with brainstorming and best practices
Open command - /create-hook
Create hooks with brainstorming and security-first design
Open command

