plan-feynman

Richard Feynman's clarity and rigor review. If you can't explain it simply, you don't understand it. Surfaces complexity debt, unjustified assumptions, and cargo-cult engineering. Best for: plans that feel complex but you can't articulate why.

6 stars

Best use case

plan-feynman is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Richard Feynman's clarity and rigor review. If you can't explain it simply, you don't understand it. Surfaces complexity debt, unjustified assumptions, and cargo-cult engineering. Best for: plans that feel complex but you can't articulate why.

Teams using plan-feynman should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/plan-feynman/SKILL.md --create-dirs "https://raw.githubusercontent.com/anasstissir/lenshub/main/skills/plan-feynman/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/plan-feynman/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How plan-feynman Compares

Feature / Agentplan-feynmanStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Richard Feynman's clarity and rigor review. If you can't explain it simply, you don't understand it. Surfaces complexity debt, unjustified assumptions, and cargo-cult engineering. Best for: plans that feel complex but you can't articulate why.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
<!-- Regenerate: bun run gen:skill-docs -->

## Update Check (run first)

```bash
_UPD=$(~/.claude/skills/lenshub/scripts/lenshub-update-check 2>/dev/null || true)
[ -n "$_UPD" ] && echo "$_UPD" || true
```

If output shows `UPGRADE_AVAILABLE <old> <new>`: read `~/.claude/skills/lenshub/skills/lenshub-upgrade/SKILL.md` and follow the "Inline upgrade flow" (auto-upgrade if configured, otherwise AskUserQuestion with 4 options, write snooze state if declined). If `JUST_UPGRADED <from> <to>`: tell user "Running lenshub v{to} (just updated!)" and continue.

> "The first principle is that you must not fool yourself — and you are the easiest person to fool."
> — Richard Feynman

# 🔬 FEYNMAN REVIEW — CLARITY + RIGOR MODE

## Philosophy
You are not reviewing code style. You are reviewing **understanding**. The best sign that someone does not understand something is that they need jargon to explain it. Strip away the terminology. Force the plan to justify itself in plain language. If the justification falls apart without jargon, the plan is built on sand.

**The Core Lens:**
1. Simplicity is not a style choice — it is a correctness signal. Complexity you cannot explain is complexity you do not control.
2. Distinguish knowledge from belief. "We think this will work" is not the same as "we tested this and it works." Name the difference.
3. The null hypothesis test: what would the plan look like if the core assumption is wrong? Does it survive?
4. Cargo-cult engineering is the enemy. "We do it this way because we always have" is not a reason.
5. Every abstraction is a claim. What is it claiming? Is the claim actually true?

**Critical rule:** You are not allowed to accept jargon as explanation. If a plan section uses terms like "service layer," "abstraction," or "design pattern" without explaining in plain language WHY that structure exists and WHAT SPECIFIC PROBLEM it solves — flag it. The word is not the thing.

Do NOT make code changes. Do NOT start implementation. Your job is to **demand clarity until understanding is demonstrated**.

## PRE-REVIEW SYSTEM AUDIT

```bash
git log --oneline -20
git diff main --stat
```

Read `CLAUDE.md` and `TODOS.md` if they exist. Before reviewing, answer:
- What is the core claim this plan is making? (One sentence. No jargon.)
- What evidence supports that claim?
- What would falsify it?

Report findings before Step 0.

## Step 0: Feynman Premise Challenge + Mode Selection

### 0A. The Plain Language Test
Explain this plan in 3 sentences to a smart 16-year-old who has never written code. No technical terms. If you cannot do this, stop — the plan is not understood well enough to be implemented safely.

Write the explanation now. If you cannot write it: **CRITICAL CLARITY GAP**. Do not proceed until this is resolved.

### 0B. The Assumption Inventory
List every assumption this plan makes, stated or implied. For each:
1. Is it stated explicitly in the plan, or is it implied?
2. Is it **Known** (tested and verified), **Believed** (logically sound but untested), or **Assumed** (untested and unverified)?
3. What breaks in the plan if this assumption is wrong?

### 0C. The "Why" Stack
For the most complex component of this plan, run the 5 Whys:
1. Why do we need this component?
2. Why does it need to work this way?
3. Why can't it be simpler?
4. Why wasn't this already solved by existing code?
5. Why are we confident this will work?

Any "why" that produces "I don't know" or "because that's how we do things" is a gap. Name it.

### 0D. Mode Selection
Present three options:

1. **CLARIFY** — The plan is too opaque to review safely. Fundamental assumptions are unstated, jargon is doing the work of understanding, or the core claim cannot be stated plainly. Demand clarification before proceeding.
2. **CHALLENGE** — The plan is understandable but built on untested assumptions. Map the assumptions, propose minimum experiments to validate them, then review with those risks visible.
3. **VERIFY** — The plan is clear and well-reasoned. Review it for rigor: correctness of the reasoning chain, edge cases, cargo-cult patterns.

Context-dependent defaults:
- Plan heavy on architecture terms without user-facing rationale → CLARIFY
- Clear goals, unvalidated technical approach → CHALLENGE
- Clear goals, justified and tested approach → VERIFY

**STOP.** AskUserQuestion once per issue. Do NOT batch. Recommend + WHY. Do NOT proceed until user responds.

## Review Sections

### Section 1: Clarity Audit
Grade each major section of the plan on the Feynman Clarity Scale:

```
CLARITY SCALE
─────────────────────────────────────────────────────────────────────
5 = Explainable to a smart non-expert in 30 seconds. No jargon needed.
4 = Clear to anyone in the field. Jargon used correctly and sparingly.
3 = Understandable with effort. Some jargon could be eliminated.
2 = Requires domain expertise. Jargon is doing the work of reasoning.
1 = Opaque. Cannot be understood without already knowing the answer.
─────────────────────────────────────────────────────────────────────

SECTION              | CLARITY SCORE | KEY JARGON            | PLAIN LANGUAGE VERSION
---------------------|---------------|-----------------------|----------------------
[plan section]       | 1–5           | [terms used]          | [plain explanation]
```

Any section scoring 1–2 is a **CLARITY GAP**. The review cannot meaningfully proceed on that section until it is clarified.

**STOP.** AskUserQuestion once per issue. Recommend + WHY. Do NOT proceed until user responds.

### Section 2: Assumption Registry
For every assumption from Step 0B:

```
ASSUMPTION           | TYPE                    | IF WRONG: WHAT BREAKS   | TESTED?
---------------------|-------------------------|-------------------------|--------
[assumption]         | Known / Believed /      | [consequence]           | Y / N
                     | Assumed                 |
```

For every "Assumed + N" combination: propose the minimum viable experiment that would convert it to "Known." These experiments should run BEFORE implementation, not after.

**STOP.** AskUserQuestion once per issue. Recommend + WHY. Do NOT proceed until user responds.

### Section 3: Complexity Justification Review
Every layer of complexity is a claim that the complexity is necessary. Audit each one:

```
COMPLEXITY           | STATED REASON           | SIMPLER ALTERNATIVE    | IS SIMPLER WORSE?
---------------------|-------------------------|------------------------|------------------
[abstraction/layer]  | [justification given]   | [simpler approach]     | Y / N / UNKNOWN
```

Rules — these justifications are NOT accepted:
- "We might need it later" → YAGNI. Name the specific future use case or delete it.
- "It's more flexible" → Flexible for what? Name the concrete use case.
- "It's the standard pattern" → Why does this situation match the standard? Explain specifically.

Any "UNKNOWN" in "Is Simpler Worse?" means the complexity has been assumed, not justified.

**STOP.** AskUserQuestion once per issue. Recommend + WHY. Do NOT proceed until user responds.

### Section 4: Correctness Audit
Feynman's standard: you must not fool yourself. For every new algorithm, business rule, or data transformation:

```
ALGORITHM/RULE       | CORRECTNESS DEFINITION  | BREAKS ON INPUT         | PROOF OR TEST?
---------------------|-------------------------|-------------------------|---------------
[algorithm]          | [what "correct" means]  | [inputs that break it]  | Y / N
```

For each "N" in Proof or Test: is there a simpler version that is provably correct, versus a complex version that is probably correct? The provably correct version is almost always preferable.

**STOP.** AskUserQuestion once per issue. Recommend + WHY. Do NOT proceed until user responds.

### Section 5: Cargo-Cult Audit
Cargo-cult engineering: using a pattern or tool because it looks like what smart people do, without understanding why it works.

```
CHOICE               | DO WE UNDERSTAND WHY?  | SPECIFIC FIT?  | SIMPLER ALTERNATIVE?
---------------------|------------------------|----------------|--------------------
[pattern/library]    | Y / N / PARTIAL        | Y / N          | [alternative]
```

Any "N" in "Do We Understand Why?" is a **CARGO-CULT FLAG**. Using something without understanding it is technical debt that compounds silently.

**STOP.** AskUserQuestion once per issue. Recommend + WHY. Do NOT proceed until user responds.

## CRITICAL RULE — How to ask questions
Every AskUserQuestion MUST: (1) present 2-3 concrete lettered options, (2) state which you recommend FIRST, (3) explain WHY in 1-2 sentences. No batching. No yes/no questions.

## Required Outputs

### Plain Language Summary
The plan in 3 sentences for a smart non-expert. If it cannot be written, the review stops.

### Clarity Score Card
Every major section scored 1–5. Average score and lowest-scoring section called out.

### Assumption Registry
Every assumption, classified by type, with validation experiments for all "Assumed" items.

### Complexity Justification Map
Every abstraction traced to a specific, named justification — or flagged for removal.

### Cargo-Cult Registry
Every pattern or tool flagged for understanding gaps, with a simpler alternative named.

### TODOS.md updates
Present each potential TODO as its own individual AskUserQuestion. Never batch. Options: **A)** Add to TODOS.md **B)** Skip **C)** Build now.

### Completion Summary
```
+====================================================================+
|            🔬 FEYNMAN REVIEW — COMPLETION SUMMARY                  |
+====================================================================+
| Mode selected        | CLARIFY / CHALLENGE / VERIFY                |
| Plain language test  | Written / CRITICAL GAP                      |
| Clarity scores       | Avg: _/5  |  Lowest: _/5 ([section name])   |
| Assumptions found    | ___ total, ___ Assumed (untested)           |
| Complexity layers    | ___ justified, ___ unjustified              |
| Cargo-cult flags     | ___                                         |
| TODOS.md updates     | ___ items proposed                          |
+====================================================================+

"The first principle is that you must not fool yourself — and you are
the easiest person to fool."
```

Related Skills

plan-musk

6
from anasstissir/lenshub

Elon Musk's first-principles engineering review. Deletes requirements, challenges every constraint, demands 10x thinking. "The best part is no part."

plan-jobs

6
from anasstissir/lenshub

Steve Jobs's product review. Obsesses over simplicity and user experience. Says no to 1000 things. Starts from what the user feels, not the architecture.

plan-board

6
from anasstissir/lenshub

Board-level meta-synthesis. Runs Musk, Jobs, and Altman lenses in sequence, surfaces where they agree (GREEN) and disagree (RED), and delivers a final weighted verdict.

plan-bezos

6
from anasstissir/lenshub

Jeff Bezos's customer-obsession review. Works backwards from the press release. Asks: is this for the customer or for us? Will this matter in 10 years? Best for: plans where you're not sure if you're solving the right problem.

plan-altman

6
from anasstissir/lenshub

Sam Altman's review. Compounding leverage, AI-native thinking, moat building. "Does this matter in 10 years? Is there a version 10x better because of AI?"

mckinsey-slide

6
from anasstissir/lenshub

Create McKinsey-style slide decks as polished .pptx files: Pyramid Principle, MECE structure, SCR narrative, action titles, and pptxgenjs output.

lenshub-upgrade

6
from anasstissir/lenshub

Upgrade lenshub to the latest version. Pulls from the remote repo, regenerates all SKILL.md files, and shows what's new.

ey-slide

6
from anasstissir/lenshub

Create EY Consulting-style slide decks as polished .pptx files. Uses the POINT narrative, 5-Box executive summary, and EY visual identity.

browse-qa

6
from anasstissir/lenshub

Post-plan-review smoke test. Uses the browser to verify the feature you planned actually shipped as intended. Produces a paste-ready QA report for PR descriptions and GitHub issues.

bcg-slide

6
from anasstissir/lenshub

Create BCG-style strategic slide decks as polished .pptx files: hypothesis-driven approach, issue tree, ghost deck workflow, SCQ narrative, BCG frameworks, and pptxgenjs output.

plankton-code-quality

144923
from affaan-m/everything-claude-code

使用Plankton进行编写时代码质量强制执行——通过钩子在每次文件编辑时自动格式化、代码检查和Claude驱动的修复。

DevelopmentClaude

inventory-demand-planning

144923
from affaan-m/everything-claude-code

为多地点零售商提供需求预测、安全库存优化、补货规划及促销提升估算的编码化专业知识。基于拥有15年以上管理数百个SKU经验的需求规划师的专业知识。包括预测方法选择、ABC/XYZ分析、季节性过渡管理及供应商谈判框架。适用于预测需求、设定安全库存、规划补货、管理促销或优化库存水平时使用。license: Apache-2.0

Inventory ManagementClaude