← ClaudeAtlas

think-issue-treelisted

Produces an issue tree that decomposes one big, ambiguous question top-down into a mutually-exclusive, collectively-exhaustive (MECE) set of smaller sub-questions, branch by branch, until the leaves are small enough to answer with data or judgment. Use when a question is too broad or multi-cause to answer as posed (for example "why is churn rising?", "where is margin leaking?", "should we launch a free tier?"), when analysis work must be split into non-overlapping parts, or when coverage matters and missing a whole category would be costly. Not for evaluating a given argument's soundness (use argument-mapping) or clustering existing notes (use affinity-mapping).
product-on-purpose/thinking-framework-skills · ★ 1 · AI & Automation · score 77
Install: claude install-skill product-on-purpose/thinking-framework-skills
<!-- thinking-framework-skills | https://github.com/product-on-purpose/thinking-framework-skills | Apache-2.0 --> # Issue Tree A big question like "why are sales down?" cannot be answered as posed; it has to be broken into parts. An issue tree decomposes one question top-down into a structured set of sub-questions, recursively, until the leaves are small enough to answer directly. The load-bearing constraint is **MECE**: at every branch the children must be Mutually Exclusive (no two overlap) and Collectively Exhaustive (together they cover the whole parent, with nothing important left outside). That discipline forces coverage, prevents double-counting, and makes the decomposition inspectable - a reader can challenge one branch instead of arguing a wall of prose. The output is an **issue tree**, not a discussion, and it restructures the question rather than answering it. ## When to Use - A question is too broad, ambiguous, or multi-cause to answer as posed ("why is churn rising?", "where is our margin leaking?", "should we launch a free tier?"). - Analysis must be split so work can be parallelized or prioritized across non-overlapping branches. - Coverage matters: missing a whole category of cause or option would be costly, so collective-exhaustiveness has real value. - Early in a diagnosis or strategy workflow, to turn an unanswerable prompt into a tractable set of answerable parts. ## When NOT to Use - **The question is simple or already has an obvious structure.** Dec