CHAINLOGICShows each reasoning step explicitly so you can verify the logic, not just the conclusion.
Category: Thinking & Reasoning
Before / After
Walk me through your reasoning.
CHAINLOGIC Why is this query slow?
What changes in Claude's response
Each conclusion gets numbered: 1) The query has no index on user_id. 2) Postgres is doing a sequential scan, confirmed by the EXPLAIN output. 3) The table has 4M rows. 4) Sequential scan of 4M rows takes ~800ms. Therefore: add an index on user_id. You can spot-check each step instead of trusting the final answer.
When NOT to use CHAINLOGIC
Skip when you trust the conclusion and just want the answer. CHAINLOGIC is verification overhead — useful when you're going to act on the answer in production, wasteful when you're just curious.
Codes that stack with CHAINLOGIC
CHAINLOGIC is one of 120 tested prompt prefixes. The full cheat sheet has before/after examples, warnings, combos, and 10 workflow playbooks.
See the full cheat sheet — from $5More Thinking & Reasoning codes
L99Pushes Claude to maximum reasoning depth. Less hedging, more opinion, longer answers.
/deepthinkForces Claude to reason through every layer before answering. Shows the work.
OODAObserve → Orient → Decide → Act. Best for time-pressured operational decisions.
/blindspotsAsks Claude to find what you're missing or assuming, not what you're asking.
OVERTHINKDeliberately over-analyzes to surface details you'd normally skip past.