Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

technical-writing技术写作

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

309

周安装

13

GitHub Stars

67

下载量

108
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:technical-writing(技术写作)
来源仓库:https://github.com/seb1n/awesome-ai-agent-skills
仓库路径:skills/technical-writing
安装命令:
npx skills add https://github.com/seb1n/awesome-ai-agent-skills --skill technical-writing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/seb1n/awesome-ai-agent-skills --skill technical-writing

简介

用于辅助技术文档、README 和说明文的整理与改写,提升专业性。

  • 适合提炼结构、统一术语或检查链接有效性。
  • 通过 npx skills add 命令安装指定 GitHub 仓库中的技能模块。
  • 使用时应保留项目已有事实,避免过度营销或夸大能力描述。
  • technical-writing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Technical Writing

This skill enables an AI agent to produce high-quality technical documentation across a range of formats — API references, user guides, getting-started tutorials, changelogs, architecture decision records, and more. The agent analyzes the target audience, structures information logically, applies consistent formatting standards, and ensures every document is accurate, scannable, and actionable.

Workflow

  1. Identify Document Type and Audience Determine which type of document is needed (API reference, tutorial, user guide, changelog, architecture doc) and who will read it (beginner developers, experienced engineers, end users, stakeholders). Adjust vocabulary, depth, and assumed prerequisites accordingly. A tutorial for beginners should explain every step; an API reference for senior engineers should be terse and precise.
  2. Gather Source Material Collect all relevant inputs: source code, existing documentation, design documents, user stories, API schemas (OpenAPI/Swagger), commit histories, or stakeholder interviews. Identify the authoritative source for each piece of information to ensure accuracy. Note any gaps that need clarification.
  3. Design the Document Structure Create an outline following the conventions of the document type. API references use a consistent per-endpoint template. Tutorials follow a step-by-step progression. Architecture docs follow a decision-record format (context, decision, consequences). Plan where code examples, tables, and callout boxes will appear.
  4. Write the Content Draft the document using clear, direct language. Prefer active voice and short sentences. Lead each section with the most important information. Include complete, runnable code examples that readers can copy and execute. Use consistent terminology and define acronyms on first use. Format according to the chosen standard (Markdown, reStructuredText, AsciiDoc).
  5. Add Navigation and Cross-References Insert a table of contents for long documents, anchor links between related sections, and links to prerequisite or follow-up documentation. Add "Next steps" sections at the end of tutorials.
  6. Review for Accuracy and Completeness Verify all code examples compile or run correctly. Confirm API endpoint paths, parameters, and response schemas match the actual implementation. Check that every tutorial step produces the described result. No placeholder text or TODO items should remain.

Usage

Provide the agent with:

  • Document type — API reference, tutorial, user guide, changelog, architecture decision record, README
  • Subject — the feature, API, tool, or system to document
  • Audience — skill level and role of the intended readers
  • Source material — code files, schemas, design docs, or a description of the feature
  • Format — Markdown, reStructuredText, AsciiDoc, or HTML

Example prompt: "Write an API reference for the /users endpoint. The audience is third-party developers. Here is the OpenAPI spec: [attached file]."

Examples

Example 1: API Endpoint Reference

Input: "Document the POST /api/v1/webhooks endpoint. Creates a webhook subscription. Requires Bearer token auth. Body: url (string, required), events (string[], required), secret (string, optional). Returns 201 or 422."

Output:

## POST /api/v1/webhooks Creates a new webhook subscription. Requires a Bearer token in the Authorization header. | Field | Type | Required | Description | | --- | --- | --- | --- | | url | string | Yes | HTTPS endpoint URL to receive payloads. | | events | string[] | Yes | Event types to subscribe to (e.g., ["order.created"]). | | secret | string | No | HMAC-SHA256 signing secret. Auto-generated if omitted. | ``bash curl -X POST https://api.example.com/api/v1/webhooks \ -H "Authorization: Bearer sk_live_abc123" \ -H "Content-Type: application/json" \ -d '{"url":"https://myapp.com/hooks","events":["order.created"]}' ` **201 Created:** {"id":"wh_9a8b7c6d","url":"https://myapp.com/hooks","events":["order.created"],"active":true} **422 Error:** {"error":{"code":"validation_error","details":[{"field":"url","message":"URL must use HTTPS."}]}}`

Example 2: Getting-Started Tutorial

Input: "Write a getting-started tutorial for our Python SDK (acme-sdk). Install, authenticate, and list projects."

Output:

# Getting Started with the Acme Python SDK ## Prerequisites - Python 3.9+ and an Acme API key (found at Settings > API Keys) ## Step 1: Install the SDK ``bash pip install acme-sdk ` ## Step 2: Set Your API Key `bash export ACME_API_KEY="sk_live_your_key_here" ` ## Step 3: List Your Projects `python import os from acme_sdk import AcmeClient client = AcmeClient(api_key=os.environ["ACME_API_KEY"]) for project in client.projects.list(): print(f"{project.id}: {project.name}") ` Expected output: ` proj_abc123: My First Project proj_def456: Marketing Site `` ## Next Steps - Create a project programmatically - Set up webhooks for real-time events

Best Practices

  • Lead with the action. Start each section with what the reader needs to do, not background context. Put explanations after the instruction.
  • Provide complete, runnable code. Every code example should work as-is when copied. Include imports, variable declarations, and expected output.
  • Use consistent templates. API references should follow the same structure for every endpoint. Tutorials should follow the same step format throughout.
  • Write scannable content. Use headings, tables, bullet points, and code blocks so readers can find information quickly without reading every paragraph.
  • Version your documentation. Tie docs to specific software versions. Clearly indicate which version introduced a feature or deprecated an API.
  • Test your instructions. Walk through every step in a tutorial to confirm it produces the described result.

Edge Cases

  • Undocumented behavior: If source code reveals behavior not described in any spec, document it as "current behavior" and flag it for the engineering team to confirm as intentional.
  • Multiple audiences for one document: Use a layered approach — put essentials first with expandable "Advanced" sections or links to deeper docs.
  • Rapidly changing APIs: Note the version or date prominently and include a disclaimer that the interface may change.
  • Missing source material: Explicitly list what information is missing and request it rather than guessing.
  • Non-English documentation: Follow the technical writing conventions of that language's developer community rather than translating English conventions literally.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.54%
按下载量换算38

Claude

28.22%
按下载量换算30

Cursor

18.87%
按下载量换算20

Gemini CLI

8.68%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills