Tier-1 strategy-consultant frameworks (MECE, Issue Trees, Hypothesis-Driven, Pareto, So What?) packaged as Claude Skills + LLM-agnostic prompts. Drop in any LLM and get whiteboard-style structured analysis. Adapted from Analyst Academy on YouTube.
Strategy Consultant โ 5 Consulting Frameworks
Repo: Strategy-Consultant-5-Consulting-Frameworks
Turn any LLM into a Tier-1 strategy consultant who breaks down complex business problems on a whiteboard โ MECE, issue trees, hypothesis tests, the Pareto principle, and the "So What?" test, in sequence, every time.
The idea: most LLMs answer business questions in flowing prose that sounds smart but doesn't actually structure your thinking. This repo gives Claude (or any LLM) a strict visual contract: every business problem produces exactly five sections โ a MECE breakdown, an ASCII issue tree, a hypothesis-test table, a Pareto blockquote, and a Process/Result/Insight closer. Whiteboard-style, every time. The frameworks aren't new โ they're standard McKinsey/BCG/Bain practice โ but baking them into a deterministic skill format means you stop getting fluffy answers and start getting consultant-grade ones.
The repo ships several flavors. A sequential master that works in any LLM (Claude.ai, ChatGPT, Gemini, anywhere you can paste a system prompt). A sub-agent master for Claude Code or Cowork environments that support parallel agent delegation. A 7-framework variant that adds 5 Whys and Pyramid Principle on top of the canonical five for high-stakes work. And three industry packs (SaaS, retail, healthcare) with industry-aware vocabulary and root-cause priors. See the Master Variants table below for which to pick.
What you give it, what it gives back
You give it: "Our SaaS churn jumped 4 points last quarter and nobody knows why."
It gives you back, in one response:
- MECE breakdown โ every plausible churn driver, organized so nothing overlaps and nothing is missed
- Issue Tree โ an ASCII tree decomposing churn into testable root causes
- Hypothesis Test โ a table comparing what you'd expect to see if your hypothesis is true vs. what the data actually shows (with at least one control row designed to invalidate the hypothesis)
- Pareto Focus โ the 20% of drivers responsible for 80% of the churn, called out in a blockquote, with the deprioritized 80% explicitly named
- So What? โ Process / Result / Insight, with an action specific enough to assign to a person with a deadline
examples/showcase/ for 10 real outputs across industries โ every one produced by an agent reading a SKILL.md and applying it to a fresh business problem. Or read the canonical end-to-end walk-through: examples/example-analysis.md.
Quick start
Claude Code / Cowork on macOS or Linux
git clone https://github.com/ConrayGambit/Strategy-Consultant-5-Consulting-Frameworks.git
cd Strategy-Consultant-5-Consulting-Frameworks
mkdir -p ~/.claude/skills
cp -r skills/* ~/.claude/skills/
Restart Claude Code. Try /strategy-consultant and paste in a business problem.
Claude Code / Cowork on Windows (PowerShell)
git clone https://github.com/ConrayGambit/Strategy-Consultant-5-Consulting-Frameworks.git
cd Strategy-Consultant-5-Consulting-Frameworks
$skillsPath = "$env:USERPROFILE\.claude\skills"
if (-not (Test-Path $skillsPath)) { New-Item -ItemType Directory -Path $skillsPath -Force | Out-Null }
Copy-Item -Path .\skills\* -Destination $skillsPath -Recurse -Force
Anywhere else (Claude.ai, ChatGPT, Gemini, local models)
Open prompts/strategy-consultant.md, copy the whole file, paste into your LLM as a system prompt or first message, then ask your business question.
For Custom GPTs and Claude Projects, paste it into the "Instructions" field.
Full per-platform install (including Cowork on Windows, ChatGPT Custom GPT setup, etc.) is in INSTALLATION.md.
After installing, verify everything works using TESTING.md โ it includes a canonical test prompt and pass criteria for each install path.
Repository layout
Strategy-Consultant-5-Consulting-Frameworks/
โโโ skills/ # Anthropic Skills format (SKILL.md + frontmatter)
โ โโโ strategy-consultant/ # Master โ 5 frameworks, sequential
โ โโโ strategy-consultant-agents/ # Master โ 5 frameworks, parallel sub-agents
โ โโโ strategy-consultant-7/ # Master โ 7 frameworks (adds 5 Whys + Pyramid Principle)
โ โโโ mece-framework/ # Sub-skill: MECE
โ โโโ issue-trees/ # Sub-skill: Issue Trees
โ โโโ hypothesis-driven/ # Sub-skill: Hypothesis-Driven
โ โโโ pareto-principle/ # Sub-skill: Pareto / 80-20
โ โโโ so-what-test/ # Sub-skill: So What?
โ โโโ five-whys/ # Sub-skill: 5 Whys
โ โโโ pyramid-principle/ # Sub-skill: Pyramid Principle
โโโ industry-packs/ # Industry-tailored master variants
โ โโโ saas/SKILL.md # sc-saas
โ โโโ retail/SKILL.md # sc-retail
โ โโโ healthcare/SKILL.md # sc-healthcare
โโโ prompts/ # LLM-agnostic plain prompts (one per skill)
โโโ examples/
โ โโโ example-analysis.md # Featured walk-through
โ โโโ full-runs/ # 5 industries: retail, nonprofit, manufacturing, government, logistics
โ โโโ single-frameworks/ # 5 standalone-skill demos in different industries
โ โโโ showcase/ # 10 real outputs from end-to-end skill testing
โโโ evals/ # Automated structural scorer + manual rubric
โ โโโ score.py # Python scorer (no dependencies)
โ โโโ RUBRIC.md # Manual content-quality rubric
โ โโโ fixtures/ # Known-bad samples for regression testing
โโโ INSTALLATION.md # Per-platform install guide
โโโ TESTING.md # Canonical test prompt + per-platform pass criteria
โโโ CONTRIBUTING.md # How to add frameworks, examples, industry packs
โโโ GITHUB-SETUP.md # Notes for forkers
โโโ LICENSE # MIT
โโโ README.md
How it works
The repo only really has three things that matter:
skills/<skill-name>/SKILL.mdโ Anthropic Skills format with YAML frontmatter (name, description) and the actual instructions in markdown. Claude Code and Cowork load these automatically.prompts/<skill-name>.mdโ A condensed, paste-ready version of each skill: it keeps the full output contract (exact section headers, formats, defaults, the control-row rule) but drops the frontmatter, worked examples, and meta sections. For pasting into ChatGPT, Claude.ai, Gemini, custom GPTs, etc.examples/โ Real input/output pairs you can read to calibrate what good output looks like.
strategy-consultant, strategy-consultant-agents, and strategy-consultant-7) are self-contained โ they walk through all five (or all seven) frameworks in one response. The seven sub-skills (mece-framework, issue-trees, hypothesis-driven, pareto-principle, so-what-test, five-whys, pyramid-principle) are alternatives for when you only want one framework. The industry packs (sc-saas, sc-retail, sc-healthcare) are alternative masters with industry-aware MECE defaults and vocabulary. Each also ships a paste-ready prompt in prompts/.
Master variants
The repo ships several master skills. Pick the one that fits your need:
| Variant | Frameworks | When to use | |---|---|---| | strategy-consultant (sequential) | 5 โ MECE, Issue Tree, Hypothesis, Pareto, So What? | Default. Works in any LLM. One pass, single response. | | strategy-consultant-agents (sub-agents) | 5 โ same | Claude Code / Cowork only. Delegates each framework to a parallel sub-agent. Best for high-stakes complex problems. | | strategy-consultant-7 | 7 โ adds 5 Whys + Pyramid Principle | High-stakes work that needs both deeper root-cause drilling AND executive-ready communication structure. | | sc-saas (details) | 5 โ same | SaaS-specific problems. Industry-aware MECE defaults (NRR, churn, pipeline), native vocabulary, common root-cause priors. | | sc-retail (details) | 5 โ same | Retail / hospitality / multi-unit problems. Comp store, foot traffic, basket, mix. | | sc-healthcare (details) | 5 โ same | Hospital ops / clinical operations. Readmissions, ALOS, throughput, access. | | sc-fintech (details) | 5 โ same | Fintech: payments / lending / fraud / regulatory. Approval/decline, chargeback, delinquency, KYC. | | sc-manufacturing (details) | 5 โ same | Manufacturing / industrial ops. OEE, defect rate, yield, changeover, throughput. | | sc-nonprofit (details) | 5 โ same | Nonprofit: fundraising, donor retention, gift mix, program effectiveness. | | sc-government (details) | 5 โ same | Public sector / civic ops. Backlogs, cycle time, citizen satisfaction, procurement. | | sc-edtech (details) | 5 โ same | Edtech / online learning. Activation, completion, learning outcomes, monetization. |
All variants produce the same output structure (visual contract). They differ in (a) depth of analysis, (b) industry vocabulary, and (c) common root-cause priors.
Note: the industry packs (sc-saas,sc-retail,sc-healthcare) live inindustry-packs/, notskills/. The Quick-startcp -r skills/*does not install them โ seeindustry-packs/README.mdfor one-line install commands.
The five frameworks
| # | Framework | What it does | Visual format | |---|---|---|---| | 1 | MECE | Categorize factors with no overlap, no gaps | Nested bullet points | | 2 | Issue Trees | Decompose the problem into root causes | ASCII tree | | 3 | Hypothesis-Driven | State a falsifiable hypothesis, design the test | Markdown table (Expected vs. Actual) | | 4 | Pareto Principle | Isolate the 20% of inputs driving 80% of results | Blockquote + deprioritized list | | 5 | "So What?" Test | Translate findings into an actionable insight | Process / Result / Insight |
Each framework is also a standalone skill โ invoke /mece-framework on its own when that's all you need. The 7-framework variant adds 5 Whys (drilled root cause) and Pyramid Principle (executive-ready communication) as additional standalone sub-skills.
Who is this for?
- Founders & operators prepping for board meetings or investor updates who need to think like a consultant without hiring one.
- PMs and analysts structuring messy investigations (churn spikes, conversion drops, support backlogs) before they become slide decks.
- Strategy & consulting professionals using it as scaffolding for client deliverables โ apply the frameworks fast, then layer in real research.
- Engineering managers and TPMs running incident retros or capacity reviews where loose thinking is the enemy.
- MBA students & interview candidates โ mastering these five frameworks is literally the case-interview job.
- Customer success leaders doing churn analysis or QBR prep.
- Sales leaders running pipeline reviews โ the hypothesis test is especially good for "why are deals stalling?"
Design choices
A few decisions worth surfacing โ in case you're forking and wondering why things are the way they are:
- Visual structure is non-negotiable. Every framework has a strict output format (nested bullets, ASCII tree, table, blockquote, three labeled sections). Prose-only answers are a failure mode. This is the entire value of the skill.
- Five frameworks, applied in order. MECE โ Issue Tree โ Hypothesis โ Pareto โ So What is the canonical sequence. Skipping or reordering breaks the logic chain. The 7-framework variant adds 5 Whys (between Issue Tree and Hypothesis) and Pyramid Principle (after So What) โ also applied in strict order.
- Defaults are flexible, MECE is not. Sub-skills say "3โ6 categories" or "4โ7 variables" โ but tell the model to flex with judgment. The one rule that doesn't flex: categories must be Mutually Exclusive and Collectively Exhaustive. That's the foundation; everything else is style.
- Three masters, not one. Sequential works everywhere. Sub-agent works only in agent-capable environments. The 7-framework variant is for high-stakes work. Shipping all three lets users pick without losing reach.
- Dual format (skills + plain prompts). Anthropic Skills format works in Claude Code/Cowork. Plain prompts work in everything else. Same content, two distributions.
- Reframe-the-question is built in. Sometimes the user's stated problem isn't the real problem. The masters ask one reframe question max before applying the frameworks โ pushing back is part of the consultant role.
Roadmap
Shipped in v1.x (initial release):
- [x] 5-framework master (sequential + sub-agent) โ
- [x] 7 sub-skills, each invokable standalone (5 canonical + 5 Whys + Pyramid Principle) โ
- [x] 7-framework variant โ adds 5 Whys (between Issue Tree and Hypothesis) and Pyramid Principle (after So What?) for high-stakes work. See
skills/strategy-consultant-7/. โ - [x] Industry packs โ
sc-saas,sc-retail,sc-healthcarewith industry-specific MECE defaults, vocabulary, and root-cause priors. โ - [x] Eval suite โ automated structural scorer + content rubric in
evals/. Runpython evals/score.py < output.txt. โ - [x] Hero illustration at the top of the README. โ
- [x] Industry-pack paste prompts โ
prompts/sc-saas.md,prompts/sc-retail.md,prompts/sc-healthcare.md(LLM-agnostic versions of each pack). โ - [x]
strategy-consultant-7fully self-contained โ inlines all seven framework specs; works with no sub-skills installed. โ - [x] Eval suite: 7-framework scoring + fixtures + pytest harness โ
evals/score.py --mode 7andevals/test_scorer.py. โ - [x] Inter-framework data flow โ each section feeds the next (MECE โ Tree โ Hypothesis โ Pareto โ So What); propagated to industry packs too. โ
- [x] Sub-skill formatting standardization โ consistent skeleton across the seven sub-skills. โ
- [x] Follow-up & multi-problem handling in the masters (focused-section follow-ups; multiple-problem disambiguation). โ
- [x] CI workflow โ GitHub Action running the scorer + link-checker on every push/PR. โ
- [x] Slack-formatted output mode โ request "Slack mode" / plain-text (or name Slack/Teams/email as the destination) and the skill renders indented-dash trees instead of box-drawing chars. โ
- [x] LLM-as-judge eval mode โ
evals/judge.pyemits a rubric-based judging prompt for any LLM and grades the JSON reply (content quality 1โ5). Dependency-free, no API key. โ - [x] More industry packs โ fintech, manufacturing, nonprofit, government, edtech โ shipped as
sc-fintech,sc-manufacturing,sc-nonprofit,sc-government,sc-edtech. โ - [x] More example industries โ biotech, gaming, sports, agriculture (added to
examples/full-runs/); the repo now ships 25 example files in total. โ - [x] CI scores real output samples โ the pytest harness scores showcase masters/packs (5-mode), the 7-fw showcase (7-mode), and every file in
examples/full-runs/on every PR. โ
- [ ] Video walkthrough on the ConrayGambit YouTube channel.
@ConrayGambit.
Contributing
PRs welcome. The frameworks themselves are well-established consulting practice โ the value of this repo is in the strict formatting contracts. If you propose changes, please preserve the visual output structure.
To add a new framework:
- Create
skills/<your-framework>/SKILL.mdwith frontmatter - Create
prompts/<your-framework>.mdas a condensed paste-ready version โ output contract only (drop the worked example and meta sections) - Update the master skills to include the new step
- Add an entry to the framework table above
- Pick an industry not yet represented (see
examples/README.mdfor what's there). - Drop a file into
examples/full-runs/orexamples/single-frameworks/with the input/output structure used by the existing examples. - Update
examples/README.mdto link to it.
License
MIT โ see LICENSE. Use freely, modify freely, ship freely.
Credits & Acknowledgment
Acknowledgment: The core frameworks and structural concepts in this skill are directly adapted from the teachings of Analyst Academy on YouTube.>
Source reference: 5 Consulting Frameworks to Solve Any Problem
The five frameworks themselves (MECE, Issue Trees, Hypothesis-Driven Problem Solving, Pareto Principle, "So What?" test) are classic management consulting practice (McKinsey, BCG, Bain). Analyst Academy's video crystallized the visual output contract โ the idea that each framework should produce a specific, repeatable visual artifact (nested bullets, ASCII tree, comparison table, blockquote, three labeled sections). This repo packages that contract as Claude Skills + LLM-agnostic prompts.
The two additional frameworks in the 7-framework variant โ 5 Whys (Sakichi Toyoda / Toyota Production System) and Pyramid Principle (Barbara Minto / McKinsey) โ are also well-established practice, packaged with the same visual-contract treatment.
About the packager
Built and packaged by Nathaniel Bricknell (@ConrayGambit on GitHub).
For walkthroughs, demos, and more AI/LLM tooling, check out the ConrayGambit YouTube channel โ including a video walking through this repo and giving full credit to Analyst Academy for the original framework framing.
If this saved you time
โญ Star this repo โ it helps others find it. ๐บ Subscribe to ConrayGambit on YouTube โ for more AI/LLM tools, walkthroughs, and prompt-engineering tutorials. ๐ Share it with the next person you see drowning in unstructured analysis.