agentsclimarketplace

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

Install
npx -y skills add ChrisLamDev/hermes-core-skills --skill context-aware-task-decomposition

Assembled 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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.