Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

execute

verified

Plan execution methodology and verification strategies. Triggers on: "execute plan", "implement plan", "run plan", "follow the plan", "start implementation", "continue execution", "resume plan". Provides execution patterns, progress tracking, and error handling strategies.

View on GitHub

Marketplace

anilcancakir

anilcancakir/claude-code-plugins

Plugin

implementation-planner

Repository

anilcancakir/claude-code-plugins
2stars

implementation-planner/skills/execute/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/anilcancakir/claude-code-plugins/blob/main/implementation-planner/skills/execute/SKILL.md -a claude-code --skill execute

Installation paths:

Claude
.claude/skills/execute/
Powered by add-skill CLI

Instructions

# Plan Execution Skill

Guidelines for executing implementation plans effectively.

## Execution Principles

1. **Follow Exactly** - Do what the plan says, nothing more
2. **Verify Always** - Run verification after each task
3. **Track Progress** - Update plan file continuously
4. **Ask When Stuck** - Report blockers, don't guess

## Execution Workflow

### 1. Load Plan
- Read plan from `.claude/plans/`
- Validate structure and status
- Check prerequisites
- Identify resume point if partially complete

### 2. Pre-Execution Checks
- Plan status is "approved" or "in_progress"
- All dependencies available
- Test framework ready (for TDD)

### 3. Execute Tasks
For each task:
1. Announce task start
2. Execute action
3. Run verification
4. Update status
5. Report result

### 4. Phase Transitions
- Summarize completed phase
- Run phase-level verification
- Ask user before continuing

## Task Actions

### Create
- Use Write tool for new files
- Follow project conventions
- Include all required code

### Modify
- Use Edit tool for changes
- Prefer precise edits over rewrites
- If Serena available, use `replace_symbol_body()`

### Delete
- Confirm with user first
- Consider backup for significant files

### Run
- Execute via Bash tool
- Capture and report output
- Check exit code

## Verification Patterns

```bash
# Command verification
[command] && echo "PASSED" || echo "FAILED"

# File verification
test -f [path] && echo "File exists"

# Test verification
php artisan test --filter=[Test]
flutter test [file]
npm run test -- [file]
```

## Error Handling

### Task Failure
- Stop immediately
- Report error with details
- Ask: (r)etry, (s)kip, (m)odify, (a)bort

### Verification Failure
- Report expected vs actual
- Ask: (i)nvestigate, (p)roceed

### Blocker Found
- Document in plan progress
- Report to user
- Wait for guidance

## Progress Tracking

Update plan file after each task:

```markdown
## Progress

### Session [timestamp]
- Task 1.1: COMPLETED
- Task 1.2: COMPLETED -

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
2213 chars