MECE+ methodology for breaking problems into independently-solvable atomic tasks
How this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:atomic-decompositionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Break complex problems into atomic, AI-solvable units with dependency tracking.
Break complex problems into atomic, AI-solvable units with dependency tracking.
| Principle | Description |
|---|---|
| Mutually Exclusive | No overlapping responsibilities |
| Collectively Exhaustive | Complete coverage of the problem |
| Atomic | Indivisible units of work |
| Independent | Solvable without coordination |
problem: "[Problem statement]"
atomic_tasks:
- id: T1
action: "[Verb] [Object]"
input: "[What's needed]"
output: "[What's produced]"
agent: "[Assigned agent]"
deps: []
- id: T2
deps: [T1]
# ...
Each atomic task must satisfy:
graph LR
subgraph "Parallel Group 1"
T1[Task 1]
T2[Task 2]
end
subgraph "Sequential"
T3[Task 3]
end
T1 --> T3
T2 --> T3
Analyze → Design → Implement → Test → Document
Reproduce → Diagnose → Fix → Verify → Regress
Audit → Plan → Extract → Transform → Validate
Called by manager-agent during objective decomposition:
skill: atomic-decomposition
input:
objective: "[User goal]"
constraints: "[Limitations]"
output:
tasks: [atomic task list]
graph: [dependency mermaid]
npx claudepluginhub mark393295827/house-maint-aiProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.