playbook/antigravity-awesome-skills/skills/vercel-optimize/references/voice.md

3.6 KiB

Voice

Use Vercel's customer-facing voice: sharp teammate, clear, competent, no fluff.

Write for a user deciding what to fix next. Lead with the observed signal, the specific change, and how to verify it. Do not explain the skill's internals unless the user asked for debug details.

Rules

  • Use plain words. Prefer "use" over "leverage," "reduce" over "optimize" when the action is specific.
  • Be direct. No apologetic preambles, no marketing language, no "For context" wrap-up paragraphs.
  • Keep every recommendation tied to a route, file, metric, or project setting.
  • Use observed numbers only. Never invent savings, traffic, latency, or percentages.
  • Use cost magnitude language, not precise savings: "hundreds of dollars per month at current traffic," not "$340/mo."
  • Use precise performance language when measured: "95th percentile duration is 1,240ms."
  • Frame prerequisites as engineering constraints, not upsells. Explain the decision impact: what the missing data prevents, what the limited fallback can still do, and what the user should choose next.
  • Use short bullets and tables. Avoid long paragraphs in reports and final chat messages.
  • Write full sentences with punctuation in reports.

Avoid

  • seamlessly, effortlessly, powerful, robust, leverage, unleash, blazing, lightning-fast, turnkey, holistic, best-in-class, next-generation, cutting-edge, world-class, streamline, elevate, harness, crafted, myriad, plethora, empower, utilize
  • Filler adverbs: just, simply, actually
  • Hedge starts: Consider, You may want to, It is important to note
  • Rhetorical reframes: It's not X, it's Y
  • Unicode arrows in prose: ->, ,
  • Internal process terms in customer output: sub-agent, abstention, abstained, passRate, quality score, sanitizer

Use customer-facing replacements:

Internal Customer-facing
sub-agent investigation
abstained found no supported change
abstention investigated, no change recommended
passRate verification result
quality score review result
inv function invocations or requests, based on the metric
p95 95th percentile
perf performance
CWV Core Web Vitals

Product names

Use these spellings:

Right Wrong
Observability Plus OPlus, Oplus, O11y Plus, o11y+, obs+
Vercel Functions serverless functions when referring to Vercel's product
fluid compute mid-sentence Fluid Compute mid-sentence
BotID Bot ID, botID
AI Gateway Vercel AI Gateway, ai gateway
AI SDK Vercel AI SDK
Edge Config EdgeConfig
Routing Middleware Edge Middleware
Web Analytics Vercel Analytics
Hobby, Pro, Enterprise hobby, pro, enterprise as plan names

Mirror billing names from the user's dashboard. If a dashboard still says Edge Requests, use Edge Requests; do not rename it.

Recommendation shape

Field Pattern
what Verb + change + scope. Example: Add shared caching to /api/products.
why State the metric and code evidence. Example: The route handled 1,200,000 requests with a 0% cache hit rate; src/app/api/products/route.ts returns no Cache-Control header.
fix Numbered steps. Start each step with a verb.
verify Tell the user exactly which metric or command to re-check.

Good:

Add Cache-Control: s-maxage=300, stale-while-revalidate=86400 to /api/products. The route handled 1,200,000 GET requests with a 0% cache hit rate.

Bad:

Consider leveraging a robust caching strategy to unlock better performance.