design-it-twice

📁 codybrom/clairvoyance 📅 1 day ago
4
总安装量
3
周安装量
#48377
全站排名
安装命令
npx skills add https://github.com/codybrom/clairvoyance --skill design-it-twice

Agent 安装分布

opencode 3
gemini-cli 3
claude-code 3
github-copilot 3
codex 3
kimi-cli 3

Skill 文档

Design It Twice

When invoked with $ARGUMENTS, treat the argument as the design problem to explore. Do not assume a solution. Start from the problem statement and generate at least two fundamentally different approaches independently. If a design already exists in the conversation or codebase, do not anchor to it. Produce a clean, blind second attempt, then compare all approaches on concrete criteria.

This skill has two modes. Before a design exists, use it to generate and compare alternatives. After a design exists, use it to produce an independent second attempt that isn’t anchored to the first. Either way, the first idea is unlikely to produce the best design, not because the designer isn’t smart, but because the problems are genuinely hard.

When to Apply

  • Before committing to a class, module, or API design
  • When choosing between architectural approaches
  • When an interface feels awkward but “good enough”
  • When writing a design document or RFC
  • When you catch yourself thinking “this is obviously the right way”

When NOT to Apply

  • Trivial decisions with negligible consequences
  • Well-established patterns where the design space is explored
  • Bug fixes that don’t change the interface
  • Cost of the exercise should be proportional to cost of getting the design wrong

The Procedure

  1. Generate at least two fundamentally different approaches, not variations on one idea. If both share an interface shape, they’re variations. Push until the second makes you uncomfortable.

  2. Compare on concrete criteria:

    “The most important consideration for an interface is ease of use for higher level software.” — John Ousterhout, A Philosophy of Software Design

    • Caller ease-of-use: Which requires less work from callers? (primary criterion)
    • Interface simplicity: How many concepts must a caller learn?
    • Generality: Which handles more use cases without special-casing?
    • Implementation complexity: Which is easier to get right?
    • Performance characteristics: Meaningful differences?
  3. Choose or synthesize: Comparing two weak designs may reveal a shared weakness that points at a third, stronger design neither suggested directly. When no alternative is attractive, use the problems you identified to drive a new design. If both alternatives force callers to do extra work, that’s a signal the abstraction level is wrong.

Applies at Multiple Levels

Use for interfaces first, then again for implementation (where simplicity and performance matter most), and again at system level (module decomposition, feature design). Different levels, different criteria, but always more than one option.

Why It Works

When you only have one design, its strengths are invisible and its weaknesses look like inherent constraints. A second design breaks that illusion by making trade-offs visible. Documenting the alternatives you considered also prevents future maintainers from revisiting rejected or failed approaches.

The Smart People Trap

Smart engineers resist this because early success taught them their first idea is good enough. But as problems get harder, that habit becomes a ceiling.

“It isn’t that you aren’t smart; it’s that the problems are really hard!” — John Ousterhout, A Philosophy of Software Design

Forcing technique: “Suppose you may not implement your first idea. What would be your second approach?” The second idea, when forced, is consistently better.

Isolation Mode

When a design already exists in the conversation or codebase, the second alternative should be generated in a clean-room context. Use the clean-room-alternative agent to produce the second design in isolation.

Dispatch the agent with

  1. The problem statement from $ARGUMENTS
  2. Relevant file paths the agent should read for context

The agent receives

  • The problem statement
  • Access to the codebase via Read, Grep, Glob

The agent should NOT receive

  • The first design
  • Conversation history containing the first design
  • Any indication of what approaches to avoid

After the agent returns its design, compare both approaches using the criteria in “The Procedure” above. The value is in the comparison, not in either design alone.

Fallback (No Agent Available)

If your runtime does not support agents, use the design pre-mortem technique from references/pre-mortem-fallback.md to force a structurally different alternative without clean-room isolation.

Team-Level Application

In design documents and RFCs, requiring an “alternatives considered” section forces the same discipline organizationally. Writing down why you wouldn’t take an alternative clarifies the reasoning behind the choice you did make.

Time Cost

For a class-level decision: an hour or two. Days or weeks will be spent implementing. 2-5% of implementation cost with disproportionate return.

Review Process

  1. Check for alternatives: Was more than one genuinely different design considered? Was the reasoning for rejecting alternatives documented?
  2. Evaluate comparison quality: Concrete criteria used, or gut feel?
  3. Look for shared weaknesses: Do alternatives share a flaw pointing at a better design?
  4. Assess proportionality: Depth of exploration proportional to decision’s impact?
  5. Check for synthesis: Could the best elements be combined?

Red flag signals for design comparison are cataloged in red-flags (No Alternatives Considered).