technical-writing
GitHub用于编写、编辑和审查 eve 项目的用户文档。要求基于源码和测试验证准确性,遵循特定工作流与风格规范,确保内容清晰、自然且符合开发者及 AI 代理的阅读习惯。
Trigger Scenarios
Install
npx skills add vercel/eve --skill technical-writing -g -y
SKILL.md
Frontmatter
{
"name": "technical-writing",
"description": "Write, edit, review, or audit user-facing documentation for the eve repository. Use for changes under docs\/, documentation tied to eve APIs or CLI behavior, docs work based on Slack or support feedback, and requests to make eve docs clearer, more natural, or less AI-patterned while verifying claims against current source, tests, CLI help, public releases, and repository conventions."
}
Technical writing
Write accurate, task-focused documentation for eve. Treat developers and AI agents as readers: make each section easy to scan, retrieve, and act on without relying on unstated context.
Choose a workflow
- For a new page or full rewrite, read references/writing-workflow.md.
- For targeted or structural changes to existing pages, read references/editing-workflow.md.
- Before finalizing any change, read references/review-framework.md.
- For formatting and terminology, read references/style-rules.md.
- For wording, voice, or AI-pattern concerns, read references/prose-quality.md.
- For page structure, read references/content-types.md when the content type is unclear or changing.
Verify before writing
Do not rely on training data for eve behavior. Use this source hierarchy:
- Current source, public types, and tests in
packages/eve - Current CLI help and setup implementation
- Existing pages under
docs/ - Merged pull requests, changelogs, and release notes
- Research plans under
research/as proposed intent, not shipped behavior - Support evidence such as Slack threads or issues
Use support evidence to identify the reader's problem, not to establish product behavior. Verify commands, flags, API names, defaults, limitations, and examples against the current repository. For a docs-only change, also compare the implementation with the latest public release so the docs do not announce branch-only behavior. When docs accompany product code in the same change, state that dependency during review. If a claim cannot be verified, omit it or report the missing owner or source. Never leave [VERIFY] markers in a completed docs change.
Follow eve conventions
- Write
evelowercase, including headings and sentence starts when practical. - Use exact public names such as
defineAgent,eve dev, andeve add channel/slack. - Distinguish the root agent, the built-in
agenttool, declared subagents, and remote agents. They have different inheritance and execution semantics. - Distinguish eve connections from Vercel Connect, the model-facing
Workflowtool from authored Vercel Workflows, and durable session state from sandbox filesystem or attachment storage. - Name diagnostic surfaces precisely: Vercel runtime logs, Agent Runs, OpenTelemetry,
eve logs, andeve tracesare not interchangeable. - Treat
docs/**as published documentation. Updatedocs/meta.jsonwhen navigation changes. - Keep
.mdfiles framework-agnostic. Use MDX components only in.mdxfiles and only when nearby pages establish the convention. - Preserve published routes and heading anchors when possible. When moving a page, update authored links and add permanent redirects for old HTML and Markdown URLs.
- Prefer TypeScript examples. Include imports and language labels, and verify examples against current exports.
- Show only supported commands and flags. Check CLI help or the command implementation before documenting them.
- Link to related pages with descriptive text. Include the critical fact locally because retrieved sections may be read without their links.
- Do not document proposed behavior as shipped. Describe unsupported boundaries directly when they affect a user task.
Write for the task
- Lead each page and section with the answer or outcome.
- Address the reader as
you; use imperative verbs for steps. - Prefer active voice, present tense, concrete nouns, and consistent terms.
- Preserve the author's supported meaning, nuance, and uncertainty. Make the minimum effective edit and leave strong prose alone.
- Keep one page focused on one primary job. Add a section to an existing page when it already owns the task.
- Put the happy path before alternatives and failure modes.
- Add troubleshooting where observed failures cluster around a workflow. Use symptoms, verified causes, and concrete next checks.
- Write self-contained sections. Repeat the full noun in key statements instead of relying on ambiguous pronouns.
- Use specific limits and behavior only when the repository or an authoritative platform source supports them.
Avoid common failures
- Do not invent flags, registry entries, connectors, workarounds, or platform guarantees.
- Do not turn one product request into a new page. First decide whether the gap belongs to docs, product, or both.
- Do not duplicate broad guides when a focused section or cross-link resolves the problem.
- Do not rewrite clear prose merely to match a personal preference.
- Do not manufacture examples, opinions, reactions, or specificity to make prose sound more human.
- Do not use promotional language, rhetorical questions, filler, or claims that a task is easy, simple, or quick.
- Do not use
weunless describing a deliberate Vercel or eve team action.
Finish the change
- Re-read every changed page in full.
- Verify each new technical claim against its source.
- Search for contradictory statements and affected cross-links.
- Run the review workflow.
- Check changed prose against the prose-quality reference when wording changed materially.
- Run
pnpm docs:checkwhen preparing to push, unless the user requests earlier validation.
Version History
- 5cc74a6 Current 2026-08-12 13:15


