A skill for disciplined AI agent task execution with planning, verification, and self-improvement loops.
Workflow orchestration provides a systematic approach to complex task execution:
| Practice | Purpose |
|---|---|
| Plan Mode | Think before acting on non-trivial tasks |
| Subagent Delegation | Keep main context clean |
| Self-Improvement | Learn from corrections |
| Verification | Prove work is complete |
| Balanced Elegance | Quality without over-engineering |
| Autonomous Fixing | Reduce user burden |
npx skills add vxcozy/workflow-orchestrationPersonal (all projects):
git clone https://github.com/vxcozy/workflow-orchestration ~/.claude/skills/workflow-orchestrationProject-specific:
git clone https://github.com/vxcozy/workflow-orchestration .claude/skills/workflow-orchestration/workflow-orchestration
The skill activates automatically for:
- Non-trivial tasks (3+ steps)
- Bug fixes and feature work
- Refactoring and architectural changes
This skill uses Diataxis-style documentation:
| Type | Purpose | Link |
|---|---|---|
| Tutorial | Learn by doing | docs/tutorial.md |
| How-To | Solve specific problems | docs/howto.md |
| Reference | Technical details | references/REFERENCE.md |
| Explanation | Understand concepts | docs/explanation.md |
- Task Templates - Ready-to-use todo.md formats
- Lessons Format - How to capture learnings
workflow-orchestration/
├── SKILL.md # Main skill (loaded by agents)
├── docs/
│ ├── tutorial.md # Learning-oriented guide
│ ├── howto.md # Task-oriented guides
│ └── explanation.md # Understanding-oriented
├── references/
│ ├── REFERENCE.md # Complete reference
│ ├── task-templates.md # Todo file templates
│ └── lessons-format.md # Lessons file format
├── README.md
└── LICENSE
- Install the skill
- Start a non-trivial task
- Create
tasks/todo.mdwith your plan - Execute with progress tracking
- Verify before marking complete
- Capture lessons after corrections
- Simplicity First - Minimal changes, minimal code
- No Laziness - Find root causes, no temporary fixes
- Minimal Impact - Only touch what's necessary
Works with any Agent Skills-compatible agent:
- Claude Code
- Cursor
- GitHub Copilot
- Gemini CLI
- And many more
MIT