Use when writing, rewriting, or improving technical docs (quickstarts, how-tos, tutorials, concept pages, or API references).
npx skills add https://github.com/prisma/web --skill docs-writer
Write documentation a developer can follow from start to finish without getting stuck or guessing. Every page answers three questions, in this order: what am I doing, why does it matter, and what do I do next.
If a rule here conflicts with house style, follow the house style and flag the conflict to the operator.
For a step-by-step example of writing each kind of page (how-to, concept, reference) and rewriting an existing one, see references/how-to-use.md.
For a Prisma Next docs page or section (anything under content/docs/orm/next/ or content/docs/(index)/next/), also read references/prisma-next.md: page location, redirect handling (commented out until the URL cutover), tested-example requirements, tab and diagram conventions, and naming rules.
These come from Prisma's positioning. They shape how docs frame the product, without turning a page into marketing.
Answer these four questions. If you can't, find the answer before drafting.
Use this structure for a how-to or quickstart. Drop any section that doesn't apply. Don't add sections for ceremony.
curl https://your-app.url returning {"status":"ok"} is.A numbered step must require the reader to do something: run a command, edit a file, click a button. If there's no action, it's a note, not a step. Put it inline as a short callout instead of numbering it.
A how-to gets the reader through a task. Two other types come up often. Same voice, same slop rules; different spine.
Concept page explains one idea so the reader can make decisions.
Reference page is for a reader who already knows what they want and needs exact details.
When the input is a page that already exists, triage before you rewrite.
Every step follows the same rhythm. Don't skip parts of it.
EADDRINUSE, another process is using the port; stop it or set PORT." This is what makes a doc feel hand-held instead of hopeful.Weak:
> Initialize Prisma
> Run npx prisma init.
Better:
> Initialize Prisma
> Set up Prisma in your project. This creates a prisma/ directory with your schema file and a .env file for your database connection string.
>
> `terminal
> npx prisma init
> `
>
> You now have prisma/schema.prisma and a .env file. Open .env and confirm DATABASE_URL is present.
DATABASE_URL automatically" needs a follow-up: "Run prisma compute env to confirm it's set."Open every concept with the plain-words version a newcomer can repeat, then a concrete everyday example, and only then the precise terms. Jargon may appear after the reader has the idea, never as the introduction to it.
Weak (jargon-first):
> Data modeling is the step where you describe the shape of your application's data: the entities it works with, the fields each entity carries, and how those entities connect. You author that description as a schema, and it compiles into a versioned contract that your code, migrations, and tooling all read from.
Better (idea first, example second, terms last):
> Data modeling is the process of describing the data your application needs and how that data is connected.
>
> For example, a blog has users, posts, and comments. A user has fields like an email and a name. These models also relate to each other: a user can write many posts, and a post can have many comments.
>
> In Prisma Next, you define this structure in a contract.prisma file. This file becomes the shared contract between your application code, database migrations, and developer tools.
The same rule applies inside sections: when a paragraph packs several decisions together, split it into short subsections, one decision each, and show a code block for every option you name. Guidance that lives only in inline code (Int @id @default(autoincrement()) mid-sentence) belongs in a fenced block with a sentence of its own.
Never lean on internal vocabulary ("runtime family", "lowering", "execution stack") without a one-line plain definition at first use.
For hands-on guides (anything that builds something), follow the house guide style used by /docs/guides/runtimes/bun and the middleware authoring guide: an Introduction stating what the reader builds, Prerequisites, short numbered step headings ("## 1. Create the middleware"), one action per step with the exact file path on every code block, the real expected output after the step that produces it, a likely-failure line where a step commonly breaks, and options or reference material only after the working result.
Delete these on sight. They add length, not clarity.
Before you finish, check:
Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Use when implementing any feature or bugfix, before writing implementation code
Use when you have a spec or requirements for a multi-step task, before touching code
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Use when writing or improving README files. Not all READMEs are the same — provides templates and guidance matched to your audience and project type.
| Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
Official Opentrons Protocol API for OT-2 and Flex robots. Use when writing protocols specifically for Opentrons hardware with full access to Protocol API v2 features. Best for production Opentrons protocols, official API compatibility. For multi-vendor automation or broader equipment control use pylabrobot.
Take prisma/docs-writer from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.