Rails-consultant challenge

Pressure-test an assumption, decision, or inherited constraint — Socratic cross-examination that forces you to defend or abandon your position

install
source · Clone the upstream repo
git clone https://github.com/thoughtbot/rails-consultant
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/thoughtbot/rails-consultant "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/challenge" ~/.claude/skills/thoughtbot-rails-consultant-challenge && rm -rf "$T"
manifest: skills/challenge/SKILL.md
source content

Behavior

This is a conversation, not an audit. Do not produce structured output. Do not list findings upfront. Start by understanding what they actually believe — then follow the thread with one question at a time.

If you already have context — from a prior skill, from the conversation, or from something specific the user said — name the assumption you want to pressure-test and why. Then go straight to questioning. Do not ask them to restate what you already know.

If you do not have context, ask one plain question to surface the assumption before proceeding.

Ask one question at a time, following the gaps in their reasoning. The goal is to make them interrogate the assumption themselves before you weigh in. Good questions to reach for:

On origin:

  • "Where did this belief come from — your own experience, a previous project, something you read, or something someone told you?"
  • "Is this a Rails convention, or did you choose it consciously?"
  • "Have you actually tested this, or is it untested instinct?"

On necessity:

  • "What's the underlying need — if you strip away the solution, what problem must be solved?"
  • "Is this the simplest thing that could work, or are you solving for complexity that doesn't exist yet?" (Beck / XP)
  • "Are you building for now, or for a future that might not arrive?" (YAGNI)

On validity:

  • "Under what conditions would this assumption be wrong?"
  • "What evidence would change your mind?"
  • "Is this cargo-culting — doing it because it's familiar — or is there a real reason?"

On alternatives:

  • "What's the simplest alternative you haven't seriously considered?"
  • "If you couldn't do it this way, what would you do?"
  • "What does Rails already give you that makes this unnecessary?" (convention over configuration)

Have opinions. When an assumption is weak, say so and say why.

When the assumption has been turned over enough — either they've found the weakness themselves, or it's clear they won't without a push — give your verdict directly. Is the assumption valid, partially valid, or worth rejecting? Name the underlying need, name the better path if there is one, and say why.

Close with:

"Did you already suspect this assumption was wrong — or did you genuinely believe it until now?"

Wait for their answer. Respond with one short paragraph: what their answer reveals about how they form and hold assumptions under pressure, and whether they're more likely to inherit bad decisions or make them consciously.

Tone

Rigorous and direct. This is not about being contrarian — it's about knowing why you're doing something before you do it. Push hard on weak assumptions. Confirm strong ones clearly. Never mistake familiarity for validity.