name: draft_docs description: Draft new Warp documentation pages or update existing ones using established style conventions, with optional source code context from warp-internal and warp-server.
Draft Docs
This skill guides the process of drafting new documentation pages or updating existing ones for Warp's documentation (referred to as "docs"), which lives at https://docs.warp.dev. All style rules, content type structures, formatting standards, and terminology live in AGENTS.md at the docs repo root. That file is the single source of truth and must be read before drafting new docs.
How to use
Invoke this skill with any context that describes what you want to document:
- PRDs or feature specs
- Slack threads or meeting notes
- Existing documentation that needs updating
- A description of a feature or concept
- AEO, SEO, Peec, or answer-engine source data that should inform a draft
Example: "Use the draft_docs skill to write docs for [feature name] based on this PRD: [context]"
Workflow
When this skill is invoked, follow these steps in order:
1. Gather context
Review all provided context (PRD, spec, existing doc, etc.). Identify:
- What feature or topic is being documented
- Key user benefits and capabilities
- Technical details that need explaining
1.5. Create an AEO brief when source data drives the request
If the request mentions AEO, SEO, Peec, answer-engine visibility, search-query vocabulary, content gaps, or whether to create a new page versus update an existing page, read .agents/skills/aeo_brief/SKILL.md and create the brief before drafting. Use the brief to decide:
- Which page or section should change
- Which user/search vocabulary belongs in the draft
- Which product terms or UI surfaces need precise naming
- Which topics to avoid because they duplicate existing docs or create a junk-drawer page
- Which questions require human review before publishing
2. Clarify placement
Ask the user where the doc should live. The docs are organized into sections, with navigation configured in src/sidebar.ts:
src/content/docs/- Warp Terminal and IDE →docs.warp.dev/src/content/docs/agent-platform/- Agent Platform →docs.warp.dev/agent-platform/src/content/docs/reference/- Technical reference (CLI, API & SDK) →docs.warp.dev/reference/src/content/docs/support-and-community/- Support →docs.warp.dev/support-and-community/src/content/docs/enterprise/- Enterprise →docs.warp.dev/enterprise/src/content/docs/changelog/- Changelog →docs.warp.dev/changelog/
Also clarify: Is this a new page or an update to an existing page?
3. Read the style guide
Read AGENTS.md in the docs repo root. This is required — it contains all voice/tone rules, formatting standards, content type structures, terminology, and the quality checklist. Do not draft without reading it first.
4. Identify the content type and template
Using the "Drafting by content type" section in AGENTS.md, determine which content type the page is:
| Content type | Use when | Template | Skill |
|---|---|---|---|
| Conceptual | Explains what/why, no procedures | .agents/templates/conceptual.md |
draft_conceptual |
| Procedural | Step-by-step task instructions | .agents/templates/procedural.md |
draft_procedural |
| Quickstart | Fast path to a working result | .agents/templates/quickstart.md |
draft_quickstart |
| Reference | Structured information for lookup | .agents/templates/reference.md |
draft_reference |
| Troubleshooting | Problem → cause → solution | .agents/templates/troubleshooting.md |
draft_troubleshooting |
| FAQ | Question-and-answer format | .agents/templates/faq.md |
draft_faq |
| Guide | Task-oriented walkthrough (Guides section) | .agents/templates/guide-page.md |
draft_guide |
| Feature documentation | Combined conceptual + procedural (most common) | .agents/templates/feature-doc.md |
draft_feature_doc |
Once the content type is identified:
- Use the corresponding template as the starting scaffold for the page.
- If a type-specific skill exists (listed above), read it for additional rules and examples specific to that content type.
- Follow the structure and rules for the identified type in
AGENTS.md.
5. Research existing patterns
Read 2-3 strong examples in the target section to match existing patterns and conventions.
6. Research source code (if needed)
For technical accuracy, optionally look in Warp's source repositories:
- warp-internal - Client-side code (Rust, Swift, etc.)
- warp-server - Server-side code (Go)
To find these repos, search for directories named warp-internal and warp-server on the user's machine. If not found, ask the user where the repos are located.
Use source code to verify technical behavior, understand feature implementation, and find accurate terminology.
6.5. Critical formatting rules
These rules are frequently violated by agents. Apply them carefully during drafting:
- Sentence case for all headings (H1–H4) — Capitalize only the first word and proper feature names. ✅
## How it works❌## How It Works - Bold + dash format for list items —
* **Term** - Description, not* Term: Description - Bold for UI elements — Use
**Save**not`Save`after action verbs like "click" - Bold per-segment for Settings paths — Use
**Settings** > **AI** > **Knowledge**not`Settings > AI > Knowledge`
7. Draft the doc
Create the documentation using the appropriate template from .agents/templates/. Follow the structure for the identified content type and all rules in AGENTS.md. Each template includes visible bracketed instructions explaining what to put in each section.
8. Run style lint
Run python3 .agents/skills/style_lint/style_lint.py --changed on the drafted file to catch formatting and terminology issues before presenting to the user.
If this skill is running as a cloud agent producing an agent-authored PR, capture a violation summary for the self-improvement loop after the PR is created:
- Re-run with
--output /tmp/style_lint_out.jsonto get machine-readable output. - Aggregate the
issuesarray bycheckfield to get violation counts per check name. - Print the following structured marker to stdout so the
improve-drafting-skillscollector can retrieve it from the Oz run output:[SIGNAL:style-lint] {"date":"YYYY-MM-DD","pr":"NNN","branch":"BRANCH_NAME","authored_by":"agent","skill_used":"SKILL_NAME","files_scanned":N,"violations":{"check_name":count}}
The improve-drafting-skills outer loop reads this signal from Oz run artifacts via oz run get. No git operations are required.
Skip steps 1–3 in local/interactive sessions.
9. Review against checklist
Before presenting the draft, verify against the quality checklist in AGENTS.md:
- Frontmatter includes clear description written as a standalone summary
- Content follows the structure for its content type
- Terminology matches the glossary (
.agents/references/terminology.md) - Headers use sentence case (with proper feature name capitalization)
- Lists use bold term + dash + explanation format
- Cross-references to related features are included
- Instructions include expected outcomes
- Procedures are scannable: dense sections are split into numbered steps, short bullets, or concise subsections
- UI surfaces and product terms use canonical names from
.agents/references/terminology.md - If AEO-driven, the draft follows the AEO brief, uses source vocabulary naturally, and avoids duplicative or junk-drawer coverage
- Images have descriptive alt text
10. Update navigation and redirects
If this is a new page, remind the user to:
- Add it to the relevant section in
src/sidebar.ts.
If this page replaces, renames, or moves an existing page, remind the user to add a redirect:
- Same-space redirect: Add an entry to the space's
vercel.json (redirects)file underredirects:. - Cross-space redirect: Add the redirect through the Astro Starlight UI (cross-space redirects cannot be managed via
vercel.json (redirects)).
Always check the current list of redirects before adding a new one to avoid duplicates.
Output
Present the drafted documentation as a complete markdown file that can be saved directly to the appropriate location in docs/.