Use Case: Writing

Writing is engineering with words. The running example here is the launch post for ASE — outlined, challenged, named, quoted, tightened to a target length, and finally proofread.

  1. 1

    Outline

    Brainstorm the Angle

    Possible angles are widened and then narrowed to a ranked shortlist, which becomes the outline of the post.

    Claude Code
    /ase-meta-brainstorm --min-ideas 15 --max-shortlist 3 angles for the ASE launch post
  2. 2

    Both Sides

    Stress-Test the Thesis

    The central claim of the chosen angle is first strengthened and then relentlessly challenged, which keeps the post honest.

    Claude Code
    /ase-meta-steelman --rounds 2 Agentic AI Coding needs classic Software Engineering to scale
    /ase-meta-diaboli --count 4 Agentic AI Coding needs classic Software Engineering to scale
  3. 3

    Naming

    Mint the Product Name

    With the thesis settled, a handful of product name candidates are derived from it, so the product gets a catchy name.

    Claude Code
    /ase-meta-mint --type name --count 5 tool about agentic software engineering
  4. 4

    Seasoning

    Find Fitting Quotes

    Quotes on the topic are collected and sorted into their 2x2 matrix, grounded in web facts so the attributions hold.

    Claude Code
    /ase-meta-quotes --ground --count 3 software engineering, automation
  5. 5

    Length

    Shorten to Target

    The whole text is cut down to its target length in stages — tightened first, then stripped of low-value content, then compressed — each stage entered only while needed.

    Claude Code
    /ase-docs-shorten --words 800 @docs/blog-launch.md
  6. 6

    Polish

    Refine the Wording

    The remaining text gets its sentence structure and style tightened, while content, numbers, and technical terms stay exactly as they are.

    Claude Code
    /ase-docs-refine --auto @docs/blog-launch.md
  7. 7

    Final Gate

    Proofread It

    The last pass catches spelling, capitalization, punctuation, and grammar defects before the post leaves the repository.

    Claude Code
    /ase-docs-proofread --auto @docs/blog-launch.md
npm install -g @rse/ase && ase setup install