npx skills add ...
npx skills add warpdotdev/common-skills --skill write-feature-docs
Draft a complete documentation page for a new Warp feature from its PRODUCT.md and/or TECH.md spec. Use when an engineer has written a spec and needs to produce a first-pass MDX draft for the warpdotdev/docs repo. Also handles features without specs by researching the codebase first. Invoke this skill whenever an engineer mentions writing docs for a feature, drafting a docs page, creating feature documentation, starting the eng-docs workflow, or converting a spec into documentation. Requires an interactive session with the engineer present - it confirms a content design plan, then an outline, before drafting, and cannot run unattended. For automated, release-triggered docs, use the missing_docs skill in warpdotdev/docs instead. Works from warp-internal or warp-server.
npx skills add warpdotdev/common-skills --skill write-feature-docs
Draft a complete documentation page for a new Warp feature. You read the feature's spec, verify technical claims by researching the codebase yourself, confirm the content design plan and then the outline with the engineer, and only then produce a complete MDX draft and open a draft PR in warpdotdev/docs — tagging the docs team for review.
The engineer's job is to confirm what you couldn't verify from the spec and code — not to do a full accuracy review, not to polish prose, not to know docs conventions.
warpdotdev/docs and tag the docs teamSteps 3 and 4 are two separate confirmations, in that order. The outline is derived from the plan — the plan picks the content type, and the content type determines what sections the outline has. Presenting them together would show the engineer an outline built on an audience they have not agreed to yet, and they would anchor on the concrete outline instead of reconsidering the question above it. Settle who the page is for, then decide what goes in it.
Ask the engineer for the spec ID if they haven't provided it. The spec ID is one of:
APP-1234, REMOTE-1234, QUALITY-408gh-): gh-4567vertical-tabs-hover-sidecarLook for the spec files at:
specs/<id>/PRODUCT.md — primary source: user-facing behavior, what and whyspecs/<id>/TECH.md — secondary source: implementation, data modelRead both files if both exist. PRODUCT.md is the primary driver for the docs content.
When reading TECH.md: Before incorporating anything from it, identify content that looks like internal implementation detail — database schema, internal service names, private API endpoints, confidential server architecture. Present these flagged items to the engineer and ask them to confirm what's safe to include in public docs and what should stay internal. Do not include anything marked confidential in the draft.
This confirmation is why the skill requires a present engineer. There is no unattended path: without someone to say what is safe to publish, TECH.md content cannot be drafted at all.
If neither file exists, skip to No-spec fallback.
Before presenting the plan or the outline, use the GitHub CLI to verify as much technical content as possible yourself — reducing what the engineer needs to confirm to only what you genuinely cannot determine from the code.
Things to verify from code:
^[A-Za-z0-9][A-Za-z0-9_-]*$ and skip the shell search if you cannot produce one safely; then run FEATURE_TOKEN="<validated-token>" && gh search code "${FEATURE_TOKEN}" --repo warpdotdev/warp-internal.**Settings** > **AI** > **Knowledge**)gh api user --jq .login to get the handle of the person currently running the skill — use this only when the skill is being invoked directly by the spec engineer. If a docs team member or non-author is running the skill, use the discovery steps below instead.^[A-Za-z0-9][A-Za-z0-9-]*$). If the spec ID contains any other characters, skip the lookup entirely and use [TODO: tag spec author] as a placeholder. If the spec ID is valid, assign it to SPEC_ID and work through these steps in order, stopping as soon as a handle is found:
Co-authored-by: trailers in the commit message — in repos that mirror from a private source (like warp-internal), the sync bot is the commit author but the real author appears in a Co-authored-by: trailer. Extract the first non-bot entry:
<userid>+<username>@users.noreply.github.com, extract the handle directly: echo "$EMAIL" | grep -oP '\+\K[^@]+'. If it's a real email, resolve it via gh api "search/users?q=${EMAIL}+in:email" --jq '.items[0].login'.Synced from warp: https://github.com/warpdotdev/warp/pull/11901). Extract it and fetch the PR author:
[bot].[bot]:
${EMAIL} is non-empty and bot-free, resolve it to a handle via gh api "search/users?q=${EMAIL}+in:email" --jq '.items[0].login'.[TODO: tag spec author] as a placeholder in the PR body.For each claim you verify from code, mark it confirmed. For claims you can't verify (UI behavior not in code, product intent, behavior of unreleased features), flag them as [UNVERIFIED] in the outline — those are the only things the engineer needs to focus on.
This is the first of two confirmations, and it comes before the outline. Settle who the page is for before deciding what goes in it.
Fill in .agents/templates/content-design-plan.md from the docs repo, using .agents/references/content-design-plan.md for what each field is asking: audience and JTBD, problem, goals, purpose and value, content type, skill and template, and high-impact scenarios with explicit exclusions.
Print it to the terminal, then say:
"Before I outline the page, please confirm this is the right reader and the right job. Correct anything that's off, or say 'looks good' and I'll draft the outline."
Wait for the engineer's reply. Do not produce the outline in the same message. The plan decides the content type, and the content type decides what sections the outline has — an outline shown alongside an unconfirmed plan invites the engineer to anchor on the concrete sections in front of them rather than question the audience above them.
If they change the audience, the content type, or the scope, revise the plan and re-confirm before moving on. Carry the confirmed plan into the PR body in Step 6.
Generate a concise outline — no prose — built on the confirmed plan from Step 3. The outline shows what you've confirmed from research and exactly what still needs engineer input.
Print the outline to the terminal in this format:
The sections above are defaults. Adapt the outline to the feature: omit
## How it worksif the feature needs no conceptual explanation, add multiple usage sections if the feature has distinct workflows, and collapse## Key featuresinto the opening paragraph if the feature is simple enough.
After printing the outline, say:
"I've verified what I could from the codebase. Please check the items marked ⚠️ above and reply with any corrections, or say 'looks good' to proceed."
Wait for the engineer's reply before continuing. Incorporate their feedback, then draft.
If their feedback contradicts the plan confirmed in Step 3 — a different reader, a different content type — revise the plan too rather than letting the two drift apart. The plan travels into the PR body, so a stale one misleads the reviewer.
Generate a complete .mdx file based on the confirmed outline. The output is ready to drop directly into warpdotdev/docs.
Use the canonical template for the content type the plan chose, from .agents/templates/ in the docs repo — feature-doc.md, conceptual.md, procedural.md, reference.md, troubleshooting.md, quickstart.md, or guide-page.md. Those are the source of truth and they carry their own field-by-field guidance. The sketch below shows the shape of the most common one, feature documentation, so you know what to expect; it is not a substitute for reading the real template.
Two rules the templates enforce that are easy to get wrong from memory: the page title goes in frontmatter, not a body H1 (Starlight renders the frontmatter title as the H1, so a body H1 duplicates it), and every bracketed instruction must be deleted before the page ships.
These conventions come from the Warp docs style guide and must be followed:
Headings
## How it works — ❌ ## How It Works## Agent Mode settings — ❌ ## Agent mode settingsLists
* **Term** - Description* **Term**: DescriptionUI elements and paths
Click **Save**, not Click `Save`> plain: **Settings** > **AI** > **Knowledge**Voice and tone
Frontmatter description
Environments ensure your cloud agents run with a consistent toolchain. Learn when to use environments and how to configure them.This page describes environments.Callout syntax (Astro Starlight)
:::note — supplemental context, tips:::caution — caveats, limitations:::danger — destructive or irreversible actions:::tip — helpful hints and best practicesWhat to leave as [TODO: docs reviewer — ...] placeholders
After generating the draft, attempt to capture screenshots for any [TODO: docs reviewer — screenshot needed] placeholders using computer use. This step is optional — only run it if the computer_use tool is available. If computer use is unavailable, leave all placeholders as-is.
Only attempt screenshots where all of the following are true:
Skip screenshots that require account-specific state, specific data, or content that would expose sensitive information.
Before taking any screenshot:
warp-internal-computer-use skill for launch guidance)This is a structured self-verification loop. Do not skip it — it's the primary guard against wrong-state, wrong-crop, and wrong-framing captures.
Step 1: State the expectation before capturing
Before taking any screenshot, write out what you expect to see:
Step 2: Capture
Take the screenshot.
Step 3: View and verify against the expectation
Use computer use to view the captured image, then check it against the expectation:
If all pass → proceed to the quality gate.
If any fail → attempt once more: re-navigate to the UI state, wait longer for the UI to settle, then re-capture and re-verify.
If the second attempt also fails → discard the screenshot and leave the [TODO: docs reviewer — screenshot] placeholder. Do not include a screenshot you can't verify.
Step 4: Quality gate — final check before including
If any item fails, discard the screenshot and leave the [TODO: docs reviewer — screenshot] placeholder.
Maximum attempts per screenshot: 2. If both fail, move on.
Crop unnecessary empty space before sizing. Keep sequences of screenshots in the same section at the same width.
Insert each screenshot:
Do not add a screenshot for every step in a procedure. Only add one where the visual genuinely aids comprehension.
Alt text rules:
alt="Agent permissions settings with 'Always allow' selected for file reads"alt="screenshot" or alt=""Caption rules:
<figcaption>The Environments page in the Oz web app.</figcaption><figcaption>Click the toast to jump to the agent’s session.</figcaption> (procedural — put this in body text)File naming: lowercase, hyphens, descriptive — e.g. agent-mode-permissions-panel.png
File location: Save PNGs to src/assets/<section>/ in warpdotdev/docs (Astro optimizes them automatically).
Before opening the PR, confirm the docs repo's own requirements are met. warpdotdev/docs gates incoming pages on two things, and a PR that skips them will be sent back:
Gate 0 of .agents/references/docs-worthiness-criteria.md in the docs repo: is the feature shipped and GA, on a public surface? If not, do not open a PR — tell the engineer why and stop. This is worth checking even though the engineer asked for the page, because drafting for something that has not shipped yet is the most common failure, and an engineer close to the work can easily be a release ahead of their users.
The remaining gates in that reference are judgment calls about whether a change warrants docs. They govern the automated pipeline, not you — an engineer asking for docs on their own shipped feature has context the gate cannot see. Do not decline on those grounds.
The content design plan the engineer confirmed in Step 3, included in the PR body as a ## Content design plan section.
Prefer updating an existing page over creating a new one whenever a page already covers the surface.
After generating the draft, submit it to warpdotdev/docs:
Clone warpdotdev/docs to a temp directory (or use the local clone if available)
Write the MDX file to src/content/docs/<proposed-section>/<filename>.mdx
Add a placeholder entry to src/sidebar.ts under the appropriate section. Example:
Commit and push on a new branch named docs/<spec-id>-feature-draft
Write the PR body to a temp file, then open a draft PR with --body-file. The PR description must include:
[UNVERIFIED] and [TODO] items in the draft for reviewer attentionWrite the body to /tmp/pr-body.md using whatever file-writing method is available (a file-creation tool, a Python open() call, or a shell cat with a quoted heredoc), then pass it to gh:
Never pass the PR body inline (via --body "...", echo, or printf piped directly to gh). Shell string interpolation expands backticks, $vars, and [ ] glob patterns before the string reaches gh, corrupting any markdown that contains those characters. Writing to a file first avoids all shell interpretation of the content.
In the "Docs outline" section of the PR body, use plain bullet points (-) for agent-verified items, not - [x] checkboxes. Reserve - [ ] checkboxes only for the "Items needing review" section so reviewers know exactly which items require their action.
In the PR body, notify the spec author using the handle from Step 2:
/cc @<engineer-handle>[TODO: tag spec author] — do not wrap it in /cc @, as that would produce a malformed mention
Request review from @rachaelrenk and @hongyi-chen.If specs/<id>/PRODUCT.md and specs/<id>/TECH.md don't exist, research the codebase first before interviewing the engineer.
Research steps:
warpdotdev/warp-internal (or warp-server depending on context) for the feature name and related terms: gh search code "<feature-name>" --repo warpdotdev/warp-internalgh api repos/warpdotdev/warp-internal/contents/specsgh pr list --search "<feature-name>" --state merged --repo warpdotdev/warp-internal --limit 10After research, build as complete a picture as possible, then use ask_user_question only for specific gaps you couldn't fill from the code — not as a broad interview. Frame the questions concretely: "I found the feature in app/src/ai/. Based on the code, here's what I understand: [summary]. I couldn't determine these two things: [specific questions]."
Build the plan and outline from your research and the engineer's targeted answers, then work through Step 3 (plan confirmation) and Step 4 (outline confirmation) before drafting.
This skill previously had an "ambient mode" that let scan-new-specs drive it headlessly, skipping the confirmations in Steps 3 and 4 and embedding the outline in the PR description as a checklist instead. That mode is removed, and scan-new-specs is retired.
It produced draft PRs for features that had not shipped, because a merged spec is not a shipped feature and no unattended run could tell the difference. Skipping outline confirmation also removed the one checkpoint where a human could redirect the draft before the prose was written.
Do not re-add an unattended path here:
missing_docs in the warpdotdev/docs repo. It gates every candidate on .agents/references/docs-worthiness-criteria.md before drafting and only runs when a new stable release has shipped.TECH.md boundary.If you are running without an interactive session, stop and report that this skill requires one, rather than drafting anyway.
write-product-spec — produces the PRODUCT.md this skill readswrite-tech-spec — produces the TECH.md this skill readsmissing_docs (in warpdotdev/docs) — the release-triggered, worthiness-gated pipeline for docs on newly shipped featuresscan-new-specs — retired; see its deprecation notice