atomic-tasks
Installation
SKILL.md
Atomic Tasks Skill
This skill provides patterns for creating well-structured, atomic tasks that follow the principle: One task = One commit = One thing.
Core Principles
Atomicity
Each task should be:
- Self-contained: Completes a single logical unit of work
- Independently verifiable: Can be tested/verified in isolation
- Safely committable: Results in a working codebase if committed alone
- Rollback-friendly: Can be reverted without breaking other tasks