← Back to list

decompose
by mway
⭐ 4🍴 0📅 Jan 22, 2026
SKILL.md
name: decompose description: Break a problem into atomic, testable subproblems. Use when facing complex tasks, unclear requirements, or planning implementation strategy. allowed-tools: ["read_file", "update_plan"] metadata: short-description: Decompose problems systematically
Problem Decomposition
Read these references:
references/decomposition.md- Problem breakdown strategies~/.config/agent/core/task-management.md- Creating TODO lists from decomposition~/.config/agent/core/methodology.md- Integration with problem-solving framework
Instructions
Decompose problems into atomic, testable subproblems per references:
Decomposition Steps
-
Understand the whole problem
- Read all requirements and constraints
- Identify inputs, outputs, and transformations
- Note dependencies and assumptions
-
Identify natural boundaries
- Where can the problem be split?
- What are the logical units?
- Which parts are independent?
-
Break into subproblems
- Each subproblem should be:
- Atomic: Single, clear responsibility
- Testable: Can be verified independently
- Self-contained: Minimal external dependencies
- Name each subproblem clearly
- Each subproblem should be:
-
Map dependencies
- Which subproblems depend on others?
- What's the dependency graph?
- Which must be done sequentially?
-
Identify parallelization opportunities
- Which subproblems are independent?
- What can run concurrently?
- How can we maximize throughput?
Create TODO List
Per task-management.md, create a TODO list with:
- Each subproblem as an atomic task
- Dependencies clearly noted
- Parallelization opportunities marked
- Execution order specified
Example Output
TODO List for Problem X:
1. [pending] Subproblem A (no dependencies)
2. [pending] Subproblem B (no dependencies) [can parallelize with A]
3. [pending] Subproblem C (depends on A, B)
4. [pending] Subproblem D (depends on C)
Arguments
Problem to decompose: ${ARGUMENTS}
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon