skills/write-copy/SKILL.md
Style rules for writing human-sounding copy. Apply whenever producing user-facing text (READMEs, landing pages, docs, marketing, tweets, UI microcopy, PR descriptions, release notes). The core goal is to avoid the tells that make writing look AI-generated.
npx skillsauth add RonanCodes/ronan-skills write-copyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Reference skill Claude should load whenever writing copy a human will read. Purpose: strip out the tells that make writing look AI-generated.
Do not use — (U+2014) or – (U+2013, en-dash). Em-dashes are the single strongest AI tell in 2025 prose because LLMs overuse them as a catch-all connector.
Replace with:
| Original intent | Use instead |
|---|---|
| Aside / parenthetical | Comma, or parentheses: (like this) |
| Sharp break before a clause | Full stop. Start a new sentence. |
| Definition / expansion | Colon: Term: explanation |
| Range | to or through (8:30 to 18:00, not 8:30–18:00) |
| List item label | Colon: **Label**: description |
Bad: TanStack Start — full-stack React with file-based server routes.
Good: TanStack Start: full-stack React with file-based server routes.
Bad: It worked fine — until the database grew.
Good: It worked fine. Then the database grew.
Use - (hyphen, U+002D) only for compound words (runtime-injected, sub-10ms), never as punctuation.
Phrases like "it's not just X — it's Y", "not only A, but also B", and "more than just a tool, it's a..." are AI stock phrases. Cut them. State the Y directly.
These words are statistically over-represented in LLM output. Swap or delete:
delve into → look at, dig into, or just lookleverage → userobust → specific quality (fast, battle-tested, covers edge cases)seamless / seamlessly → just say what happensintricate / nuanced → complicated, detailed, or cutnavigate (metaphorical) → handle, work throughin the realm of → intapestry, landscape, ecosystem (as filler) → name the specific thingcrucial, essential, vital → usually cuttable; if not, say whytestament to → cutgame-changer, paradigm shift → cutwhether you're a X or a Y → name one audienceDon't pad sentences with rule-of-three lists when two items or one would do. "It's fast, reliable, and scalable" is a tell. "It's fast" plus a concrete reason is better.
Observability is enhanced by the runtime-injection pattern.Runtime injection means you can rotate keys without rebuilding.One hedge is fine, two is bureaucratic: "may potentially possibly", "somewhat relatively". Pick one or drop.
Openers to delete:
It's worth noting that...Broadly speaking...At the end of the day...In today's fast-paced world...When it comes to X...Ultimately... (usually)Bad: leverages modern tooling
Good: uses Vite 7 + TanStack Start
Bad: improves performance significantly
Good: cuts p95 from 340ms to 95ms
One emoji per doc, maybe. No exclamation marks unless the context genuinely warrants one. LLMs over-produce both.
If a sentence sounds like a CEO presenting at a conference, rewrite it as a sentence you'd say to a colleague.
Search the draft for each of these. Every hit is a candidate for deletion or replacement.
— – · delve leverage robust seamless tapestry landscape
crucial essential vital testament game-changer paradigm
"not only" "it's not just" "more than just" "in today's"
"at the end of the day" "when it comes to"
A quick command:
rg -n '—|–|\bdelve\b|\bleverage\b|\brobust\b|\bseamless\b|\btapestry\b|\blandscape\b|\bnot only\b|\bit'\''s not just\b' <file>
Models to emulate, not boilerplate to copy verbatim.
Are you ever stumped by Connections because you don't know a word's meaning? Then check out this app I made called Connections Helper: https://lnkd.in/eTjTe4Ev
You can: • Check the definitions of all of today's words from a range of dictionaries (Merriam-Webster, Urban Dictionary, etc) • Get clues to help you solve • Go back to any date for more definitions and clues
Give it a go the next time you play Connections!
#NYTConnections #Connections #ConnectionsHelper
Why it works:
The template, abstracted:
[question hook naming the pain in the first 7 words]
[soft transition to "this thing I made"]
You can:
• [value prop 1, with a concrete example]
• [value prop 2, with a concrete example]
• [value prop 3, with a concrete example]
[casual imperative CTA]
[hashtags, LinkedIn only]
Use for @ronancodes build-in-public launches and any "here's my new app" post. Skip the question hook on the second-tier platforms if it doesn't translate (Bluesky tends to want a flatter opener).
coding-principles)write-a-prd, which governs structure; this skill governs voice)Load this skill at the start of any task that involves writing copy a human will read: README, landing page, marketing blurb, tweet, LinkedIn post, release notes, changelog entry, docs page, UI microcopy, email, PR description, commit message body, blog post. If Claude is only writing code, this skill is not needed.
development
--- name: worktree description: Coordinate multiple agents on one repo via a worktree-lock pool, so two agents never clobber each other's working tree. Acquire the first free slot (main, then beta/gamma… worktrees, created on demand), work there on your own branch, release when you've pushed. Use before modifying any repo that might be in use by another agent (factory, dataforce, etc.), or whenever you're told a repo is being worked on. Backed by `ro worktree`. category: development argument-hin
testing
--- name: ship description: Ship a feature branch the local-CI-first way — run the full local gate, push, open a PR, squash-merge, then deploy, without waiting on GitHub Actions. Use when a branch is ready for main and you want it merged and deployed now. Reads CI policy from `ro ci` (default skips remote CI because GitHub Actions billing keeps hitting limits). Sibling to /ro:gh-ship (waits on GitHub checks) and /ro:cf-ship (the deploy half). Triggers on "ship it", "ship this", "merge and deploy
testing
--- name: setup-logging description: Set up (or audit) the observability stack in a TanStack Start + Cloudflare Workers app so it is "diagnosable by default" — structured logging (logtape) with a request context carrying trace_id + userId + tenant/orgId, a trace_id propagated FE→BE→logs→Sentry→PostHog, Cloudflare Workers observability enabled, and Sentry + PostHog wired. Two modes: `setup` (wire it into an app) and `audit` (check an existing app + report gaps). Use when scaffolding a new app, wh
development
Manage credentials INSIDE the active ~/.claude/.env file — read which token/account to use for a given app (Simplicity vs Dataforce vs Ronan-personal), add or update a secret WITHOUT it passing through the chat (an interactive Terminal window prompts for it), and track secrets that were exposed in a transcript so they get rotated. Sibling to /ro:context (which switches WHICH env file is active). Use when the user wants to add an API key/token/secret, asks "which credential do I use for X", needs the env organized/labelled, or a secret was pasted into the chat and should be rotated.