Use Case: Research

Every non-trivial decision starts with a question whose answer is not yet at hand. The running example here is one such question: Which option-parsing library fits a TypeScript CLI? — carried from the first web search to a distilled, citable result.

  1. 1

    Cast the Net

    Ask the Whole Web At Once

    One query is dispatched to every search backend in parallel and the answers are consolidated, so no backend's blind spot decides the outcome.

    Claude Code
    /ase-meta-search --services=all option parsing libraries for TypeScript CLIs
  2. 2

    Plain Language

    Explain It Like I'm 5

    The first results come back full of jargon, so the term at their center is re-told in child-friendly words — grounded in web facts to keep it true.

    Claude Code
    /ase-meta-eli5 -g difference between Unix-style long and short options
  3. 3

    Map the Terrain

    Explore the Neighborhood

    With the vocabulary clear, the topic is placed into its conceptual surroundings — parent, sibling, and child topics — so adjacent options surface before the search narrows.

    Claude Code
    /ase-meta-proximity --ground --loop command-line option parsing
  4. 4

    Second Opinion

    Ask a Foreign Model

    A single foreign LLM is queried directly, which is the cheapest way to check whether the picture so far is model-specific.

    Claude Code
    /ase-meta-chat gemini Which option parser do you recommend for a TypeScript CLI in 2026?
  5. 5

    Broad Consensus

    Collect a Quorum

    Several AIs answer the same question in parallel and their answers are synthesized into one consensus answer with a consensus rating.

    Claude Code
    /ase-meta-quorum --models chatgpt,gemini,grok Which option parsing library fits a TypeScript CLI best?
  6. 6

    Get to the Root

    Drill Down Five Whys

    Where the research uncovers a symptom rather than a cause, the Five-Whys chain is walked until the actual root cause shows up.

    Claude Code
    /ase-meta-why --depth 5 --width 2 Our CLI option handling diverges between commands
  7. 7

    Boil It Down

    Distill the Findings

    The notes accumulated so far are reduced to an importance-ranked list of key points, each with its rationale and a line-cited evidence snippet.

    Claude Code
    /ase-docs-distill --top 5 @docs/research-option-parsing.md
npm install -g @rse/ase && ase setup install