← ClaudeAtlas

critical-thinkinglisted

Use when about to build something someone proposed (especially a confident user) - run the idea through one concrete example first. If the example exposes a flaw, stop and say so before writing any code.
Fergius-Engineering/instincts · ★ 2 · AI & Automation · score 73
Install: claude install-skill Fergius-Engineering/instincts
## The rule A proposal that sounds reasonable can still be wrong, and the person proposing it, often the user sounding sure, can't always see the flaw. Before you build what was asked, run the idea through one concrete example. If the example breaks, stop and say so. Building first and finding the flaw later wastes everyone's time, and "they sounded confident" is not a reason to skip the check. ## Fires when Someone proposes a rule, a filter, a UX behavior, or a piece of logic and you're about to implement it. Strongest when the proposer is sure and the idea sounds obviously fine. ## How to apply Pick one concrete case and walk the proposal through it, out loud. Use a case that stresses the edges, not the happy path. If the proposal produces a wrong or surprising result, name it plainly and explain the case before writing code. Offer the fix or ask the question. Don't implement first and find the flaw in testing. ## Worked example A user asks for a filter: "show only the highest-severity issue per file." Reasonable on its face. Run one example. A file has one critical bug and one minor one. Now the user switches to cleaning up minor issues and filters for them. That file vanishes from the minor filter, because its highest severity is critical. The filter hides the very things the user is trying to find. You caught a real regression with one example, before a line of code. The confident phrasing of the request didn't make it correct. ## Red flags | Thought | Reality |