Context aware task decomposition
Skill ChrisLamDev/hermes-core-skills/skills/context-aware-task-decomposition
25 executable AI agent skills for debugging, planning, token efficiency, and security
npx -y skills add ChrisLamDev/hermes-core-skills --skill context-aware-task-decompositionAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when the context window is getting full and tasks need breaking down.
SKILL.md
1.3 KB, as published. Nobody here has run it
Context-Aware Task Decomposition
Self-regulate task size based on context window capacity. When generating multi-step work, estimate if it fits in the remaining context and decompose accordingly.
Decision Flow
Is the task > 10 steps or likely > 2000 lines?
├─ Yes: Decompose into sub-tasks, dispatch via delegate_task()
│ Each sub-task gets its own full context window
└─ No: Execute directly
When to Decompose
- Complex code generation (multi-file)
- Long research with many sources
- Refactoring across multiple modules
- Any task with > 5 independent sub-steps
Decomposition Template
## Task: [name]
### Sub-task 1: [specific deliverable]
### Sub-task 2: [specific deliverable]
### Sub-task 3: [specific deliverable]
### Merge & Verify
Each sub-task becomes a delegate_task() call with its own context.