Skip to content

Instantly share code, notes, and snippets.

@nestharus
Last active December 4, 2025 11:51
Show Gist options
  • Select an option

  • Save nestharus/19b78a880f11cb06aa217adbd6bea9e2 to your computer and use it in GitHub Desktop.

Select an option

Save nestharus/19b78a880f11cb06aa217adbd6bea9e2 to your computer and use it in GitHub Desktop.
Claude Code Task Executor And Reviewer
# Plan
## Overview
## Current State (Problems)
## Target State
## Additional Info
## Tasks
### Task 1:
### Task 2:
### Task 3:
### Task 4:
### Task 5:
## Execution Instructions
For each task:
1. **Execute**: Use the general-purpose sub-agent to implement the task:
```
Task(subagent_type="general-purpose", prompt="Implement Task N from <FILEPATH>. Read the plan file first, then implement the specific task requirements. Write tests as specified. Do not modify other tasks' code.")
```
2. **Review**: After sub-agent completes, review the changes against the plan:
- Verify all requirements are met
- Check that tests pass
- Check that existing functionality is preserved
- Note any deviations or issues
3. **Iterate**: If review finds issues, pass feedback to sub-agent:
```
Task(subagent_type="general-purpose", prompt="Review feedback for Task N: [feedback]. Fix the issues identified. The plan is in <FILEPATH>.")
```
4. **Proceed**: Only move to next task when current task passes review
## Success Criteria
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment