Brand Voice
Auto-loaded when writing documentation, content, or user-facing text. Enforces consistent, direct voice and eliminates LLM rhetoric.
Also loaded when a project sets output-mode: concise or output-mode: strict in CLAUDE.md, to govern conversational response length and structure (see Output Modes).
Anti-Trope List (Banned Phrases)
Opening Tropes (Never Start With)
- "In today's fast-paced world..."
- "In the ever-evolving landscape of..."
- "Let's dive into..."
- "Let's explore..."
- "Welcome to this comprehensive guide..."
- "Are you looking for...?"
- "Whether you're a beginner or an expert..."
Filler Adjectives (Remove or Replace)
| Banned |
Replacement |
| "cutting-edge" |
Describe what it does |
| "game-changer" |
State the specific impact |
| "revolutionary" |
State the concrete improvement |
| "robust" |
Describe what makes it reliable |
| "seamless" |
Describe the integration mechanism |
| "state-of-the-art" |
Cite specific capabilities |
| "leveraging" |
"using" |
| "harnessing" |
"using" |
| "utilizing" |
"using" |
| "delve" / "delve into" |
"examine" / "look at" |
| "holistic" |
"complete" / "full" |
| "synergy" |
Describe the actual interaction |
| "paradigm shift" |
Describe the change |
| "best-in-class" |
Cite the benchmark or drop it |
| "empower" |
Say what it enables |
| "streamline" |
Say what step it removes |
| "elevate" |
Say what improves and by how much |
| "unlock" |
Say what becomes possible |
Closing Tropes (Never End With)
- "Happy coding!"
- "And that's it! You're all set!"
- "I hope this helps!"
- "Feel free to reach out if you have any questions"
- "Now go build something amazing!"
Structural Tropes
- Do not number every single point when prose works better
- Do not use headers for 2-sentence sections
- Do not add a "Conclusion" section that restates the intro
- Do not add "Overview" sections that say nothing the title didn't already say
- Do not pad lists to look longer than they are
Voice Principles
| Principle |
Rule |
| Direct over diplomatic |
Say what you mean. "This function is slow" not "This function could potentially benefit from optimization." |
| Specific over general |
Numbers, names, versions. "Reduces cold start by 40ms" not "Improves performance significantly." |
| Evidence over assertion |
Show, don't tell. Include benchmarks, examples, or code. |
| Short over long |
One sentence beats three. Cut filler words on every pass. |
| Active over passive |
"The function returns X" not "X is returned by the function." |
| Technical over casual |
Match the audience's expertise. Never dumb down for developers. |
| Honest over promotional |
State limitations alongside strengths. |
| Accountable over apologetic |
Own a mistake once, fix it, move on. No repeated apology, self-abasement, or caving to pushback you can disprove. |
Sentence-Level Rules
- Lead with the action or outcome, not the context. Bad: "In order to configure X, you need to..." Good: "Configure X by..."
- Cut weasel words: "quite", "very", "really", "basically", "simply", "just", "actually", "arguably"
- One idea per sentence. If a sentence has "and" linking two distinct ideas, split it.
- Use concrete subjects. Bad: "It is important to note that..." Good: (delete the phrase, state the fact)
Formatting Discipline
- Default to prose. Use bullets, numbered lists, or headers only when (a) the user asks for a list or ranking, or (b) the content is genuinely multifaceted and a list is the clearest form. A list of one or two items is a sentence — write the sentence.
- Every bullet carries content. Each bullet is at least one full clause, usually one to two sentences. A one-word bullet is a sentence in disguise.
- Match format to document type. Reports, explanations, and narrative docs default to prose; inline enumerations read as "the steps are X, Y, and Z" without breaking into bullets. Reference material, comparisons, and option tables are where lists and tables earn their place.
- Minimum formatting for clarity. Reach for the lightest structure that makes the content clear. Headers, bold, and nesting are tools, not decoration.
Before Publishing Checklist
Example
Bad (filler, marketing, generic):
In today's ever-evolving landscape of AI, our cutting-edge toolkit empowers
developers to seamlessly leverage state-of-the-art skills. Whether you're a
beginner or an expert, this comprehensive guide will help you unlock the full
potential of your workflow.
Good (direct, specific, active):
ai-toolkit installs 108 skills and 44 agents via `npm install -g @softspark/ai-toolkit`.
After install, run `ai-toolkit doctor` to verify symlinks and hooks. Typical
install takes under 30 seconds on a local disk.
Rules
- MUST remove every phrase from the anti-trope list before publishing — the list is a hard filter, not a suggestion
- MUST lead with the action or outcome in the opening sentence, never with context or framing
- NEVER open with "In today's...", "Let's dive into...", "Whether you're...", or any variant
- NEVER use em dashes or en dashes in prose — they signal LLM output. Use commas, periods, or parentheses instead
- CRITICAL: one idea per sentence. If you write "and" linking two distinct ideas, split the sentence
- MANDATORY: technical claims include a concrete number, name, or example — never assert quality without evidence
- NEVER format a refusal, a "no", or a correction as bullet points — prose carries it with less abruptness
Output Modes
Three modes govern conversational response length. Default applies always; concise and strict activate per-project or per-session.
| Mode |
Token target vs default |
Used when |
default |
100% (no extra constraints) |
No output-mode configured |
concise |
≤60% |
Daily work, short Q&A, code edits, short reviews |
strict |
≤40% |
Long sessions, expensive models, batch operations, code-only tasks |
Mode rules live in this skill's modes/ directory. Read the file matching the active mode:
modes/concise.md — bullet-first, no preamble, max 3-sentence prose blocks
modes/strict.md — telegraphic, no prose blocks, only lists/tables/code
Activation
- Project-level (preferred): add
output-mode: concise to project CLAUDE.md frontmatter or .claude/settings.json under aiToolkit.outputMode
- Session-level: user types
/brand-voice concise or /brand-voice strict to switch for the current session
- Reset:
/brand-voice default or remove the project setting
What modes do NOT change
- Code blocks (always full, never truncated)
- File paths, line numbers, error messages (always exact)
- Lists of items the user must see (file lists, test failures, security findings)
- Plan documents and ADRs (always full structure)
Modes change prose, not data. If you cut a fact to fit a length budget, you have failed the mode, not honored it.
Measurement
Run python3 ${CLAUDE_SKILL_DIR}/scripts/measure.py --fixtures tests/fixtures/output-modes/ to compare baseline vs mode tokens on the fixture set. Report shows per-fixture deltas and an aggregate ratio.
When NOT to Load
- For code or technical specs with no user-facing prose — the voice rules do not apply
- For structured logs, CSV, or machine-readable output — formatting matters, voice does not
- For creative writing, poetry, or marketing copy where playfulness is a feature
- For non-English content — the anti-trope list is English-specific and would flag valid Polish/Spanish/etc. phrases
- In code comments inside functions — comments target developers; the rules above are for user-facing prose
1---2name: brand-voice3description: Direct technical voice for docs, README, user-facing text. Concise/strict modes. Triggers: documentation, README, content, output-mode, voice, prose style.4---56# Brand Voice78Auto-loaded when writing documentation, content, or user-facing text. Enforces consistent, direct voice and eliminates LLM rhetoric.910Also loaded when a project sets `output-mode: concise` or `output-mode: strict` in `CLAUDE.md`, to govern conversational response length and structure (see [Output Modes](#output-modes)).1112## Anti-Trope List (Banned Phrases)1314### Opening Tropes (Never Start With)1516- "In today's fast-paced world..."17- "In the ever-evolving landscape of..."18- "Let's dive into..."19- "Let's explore..."20- "Welcome to this comprehensive guide..."21- "Are you looking for...?"22- "Whether you're a beginner or an expert..."2324### Filler Adjectives (Remove or Replace)2526| Banned | Replacement |27|--------|------------|28| "cutting-edge" | Describe what it does |29| "game-changer" | State the specific impact |30| "revolutionary" | State the concrete improvement |31| "robust" | Describe what makes it reliable |32| "seamless" | Describe the integration mechanism |33| "state-of-the-art" | Cite specific capabilities |34| "leveraging" | "using" |35| "harnessing" | "using" |36| "utilizing" | "using" |37| "delve" / "delve into" | "examine" / "look at" |38| "holistic" | "complete" / "full" |39| "synergy" | Describe the actual interaction |40| "paradigm shift" | Describe the change |41| "best-in-class" | Cite the benchmark or drop it |42| "empower" | Say what it enables |43| "streamline" | Say what step it removes |44| "elevate" | Say what improves and by how much |45| "unlock" | Say what becomes possible |4647### Closing Tropes (Never End With)4849- "Happy coding!"50- "And that's it! You're all set!"51- "I hope this helps!"52- "Feel free to reach out if you have any questions"53- "Now go build something amazing!"5455### Structural Tropes5657- Do not number every single point when prose works better58- Do not use headers for 2-sentence sections59- Do not add a "Conclusion" section that restates the intro60- Do not add "Overview" sections that say nothing the title didn't already say61- Do not pad lists to look longer than they are6263## Voice Principles6465| Principle | Rule |66|-----------|------|67| **Direct over diplomatic** | Say what you mean. "This function is slow" not "This function could potentially benefit from optimization." |68| **Specific over general** | Numbers, names, versions. "Reduces cold start by 40ms" not "Improves performance significantly." |69| **Evidence over assertion** | Show, don't tell. Include benchmarks, examples, or code. |70| **Short over long** | One sentence beats three. Cut filler words on every pass. |71| **Active over passive** | "The function returns X" not "X is returned by the function." |72| **Technical over casual** | Match the audience's expertise. Never dumb down for developers. |73| **Honest over promotional** | State limitations alongside strengths. |74| **Accountable over apologetic** | Own a mistake once, fix it, move on. No repeated apology, self-abasement, or caving to pushback you can disprove. |7576## Sentence-Level Rules7778- **Lead with the action or outcome**, not the context. Bad: "In order to configure X, you need to..." Good: "Configure X by..."79- **Cut weasel words**: "quite", "very", "really", "basically", "simply", "just", "actually", "arguably"80- **One idea per sentence.** If a sentence has "and" linking two distinct ideas, split it.81- **Use concrete subjects.** Bad: "It is important to note that..." Good: (delete the phrase, state the fact)8283## Formatting Discipline8485- **Default to prose.** Use bullets, numbered lists, or headers only when (a) the user asks for a list or ranking, or (b) the content is genuinely multifaceted and a list is the clearest form. A list of one or two items is a sentence — write the sentence.86- **Every bullet carries content.** Each bullet is at least one full clause, usually one to two sentences. A one-word bullet is a sentence in disguise.87- **Match format to document type.** Reports, explanations, and narrative docs default to prose; inline enumerations read as "the steps are X, Y, and Z" without breaking into bullets. Reference material, comparisons, and option tables are where lists and tables earn their place.88- **Minimum formatting for clarity.** Reach for the lightest structure that makes the content clear. Headers, bold, and nesting are tools, not decoration.8990## Before Publishing Checklist9192- [ ] No banned phrases from anti-trope list?93- [ ] Opening sentence provides value (not filler)?94- [ ] Every adjective earns its place (can you remove it without losing meaning)?95- [ ] No "comprehensive guide" or "complete overview" unless it truly is?96- [ ] Consistent terminology throughout?97- [ ] Active voice used by default?98- [ ] No weasel words remaining?99- [ ] Technical claims backed by evidence or examples?100101## Example102103Bad (filler, marketing, generic):104105```106In today's ever-evolving landscape of AI, our cutting-edge toolkit empowers107developers to seamlessly leverage state-of-the-art skills. Whether you're a108beginner or an expert, this comprehensive guide will help you unlock the full109potential of your workflow.110```111112Good (direct, specific, active):113114```115ai-toolkit installs 108 skills and 44 agents via `npm install -g @softspark/ai-toolkit`.116After install, run `ai-toolkit doctor` to verify symlinks and hooks. Typical117install takes under 30 seconds on a local disk.118```119120## Rules121122- **MUST** remove every phrase from the anti-trope list before publishing — the list is a hard filter, not a suggestion123- **MUST** lead with the action or outcome in the opening sentence, never with context or framing124- **NEVER** open with "In today's...", "Let's dive into...", "Whether you're...", or any variant125- **NEVER** use em dashes or en dashes in prose — they signal LLM output. Use commas, periods, or parentheses instead126- **CRITICAL**: one idea per sentence. If you write "and" linking two distinct ideas, split the sentence127- **MANDATORY**: technical claims include a concrete number, name, or example — never assert quality without evidence128- **NEVER** format a refusal, a "no", or a correction as bullet points — prose carries it with less abruptness129130## Output Modes131132Three modes govern conversational response length. Default applies always; `concise` and `strict` activate per-project or per-session.133134| Mode | Token target vs default | Used when |135|------|-------------------------|-----------|136| `default` | 100% (no extra constraints) | No `output-mode` configured |137| `concise` | ≤60% | Daily work, short Q&A, code edits, short reviews |138| `strict` | ≤40% | Long sessions, expensive models, batch operations, code-only tasks |139140Mode rules live in this skill's `modes/` directory. Read the file matching the active mode:141142- `modes/concise.md` — bullet-first, no preamble, max 3-sentence prose blocks143- `modes/strict.md` — telegraphic, no prose blocks, only lists/tables/code144145### Activation1461471. **Project-level (preferred):** add `output-mode: concise` to project `CLAUDE.md` frontmatter or `.claude/settings.json` under `aiToolkit.outputMode`1482. **Session-level:** user types `/brand-voice concise` or `/brand-voice strict` to switch for the current session1493. **Reset:** `/brand-voice default` or remove the project setting150151### What modes do NOT change152153- Code blocks (always full, never truncated)154- File paths, line numbers, error messages (always exact)155- Lists of items the user must see (file lists, test failures, security findings)156- Plan documents and ADRs (always full structure)157158Modes change *prose*, not *data*. If you cut a fact to fit a length budget, you have failed the mode, not honored it.159160### Measurement161162Run `python3 ${CLAUDE_SKILL_DIR}/scripts/measure.py --fixtures tests/fixtures/output-modes/` to compare baseline vs mode tokens on the fixture set. Report shows per-fixture deltas and an aggregate ratio.163164## When NOT to Load165166- For code or technical specs with no user-facing prose — the voice rules do not apply167- For structured logs, CSV, or machine-readable output — formatting matters, voice does not168- For creative writing, poetry, or marketing copy where playfulness is a feature169- For **non-English** content — the anti-trope list is English-specific and would flag valid Polish/Spanish/etc. phrases170- In code comments inside functions — comments target developers; the rules above are for user-facing prose