Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

technical-writing技术写作

Agent Skill

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

总安装

729

周安装

31

GitHub Stars

公开资料未说明

下载量

255
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add rsmdt/the-startup --skill "technical-writing"

简介

发现并安装AI代理的技能,用于技术文档生成与内容整理。

  • 适用于Codex、Claude等宿主中辅助README编写和内容优化。
  • 通过npx skills add rsmdt/the-startup --skill "technical-writing"安装。
  • 需控制语气避免过度营销,保留事实准确性。
  • 不建议直接对外发布未经复核的文案内容。

SKILL.md

name
technical-writing
description
Create architectural decision records (ADRs), system documentation, API documentation, and operational runbooks. Use when capturing design decisions, documenting system architecture, creating API references, or writing operational procedures.

Documentation Creation

A development skill for creating and maintaining technical documentation that preserves knowledge, enables informed decision-making, and supports system operations. This skill provides templates and patterns for common documentation needs.

When to Use

  • Recording architectural or design decisions with context and rationale
  • Documenting system architecture for new team members or stakeholders
  • Creating API documentation for internal or external consumers
  • Writing runbooks for operational procedures and incident response
  • Capturing tribal knowledge before it's lost to team changes

Core Documentation Types

Architecture Decision Records (ADRs)

ADRs capture the context, options considered, and rationale behind significant architectural decisions. They serve as a historical record that helps future developers understand why the system is built a certain way.

When to create an ADR:

  • Choosing between different technologies, frameworks, or approaches
  • Making decisions that are difficult or expensive to reverse
  • Establishing patterns that will be followed across the codebase
  • Deprecating existing approaches in favor of new ones
  • Any decision that a future developer might question

See: templates/adr-template.md

System Documentation

System documentation provides a comprehensive view of how a system works, its components, and their relationships. It helps new team members onboard and serves as a reference for operations.

Key elements:

  • System overview and purpose
  • Architecture diagrams showing component relationships
  • Data flows and integration points
  • Deployment architecture
  • Operational requirements

See: templates/system-doc-template.md

API Documentation

API documentation describes how to interact with a service, including endpoints, request/response formats, authentication, and error handling.

Key elements:

  • Authentication and authorization
  • Endpoint reference with examples
  • Request and response schemas
  • Error codes and handling
  • Rate limits and quotas
  • Versioning strategy

Runbooks

Runbooks provide step-by-step procedures for operational tasks, from routine maintenance to incident response.

Key elements:

  • Pre-requisites and access requirements
  • Step-by-step procedures with expected outcomes
  • Troubleshooting common issues
  • Escalation paths
  • Recovery procedures

Documentation Patterns

Pattern 1: Decision Context First

Always document the context and constraints that led to a decision before stating the decision itself. Future readers need to understand the "why" before the "what."

## Context

We need to store user session data that must be:
- Available across multiple application instances
- Retrieved in under 10ms
- Retained for 24 hours after last activity

Our current database is PostgreSQL, which would require additional
infrastructure for session management.

## Decision

We will use Redis for session storage.

Pattern 2: Living Documentation

Documentation should be updated as part of the development process, not as an afterthought. Integrate documentation updates into your definition of done.

  • Update ADRs when decisions change (mark old ones as superseded)
  • Revise system docs when architecture evolves
  • Keep API docs in sync with implementation (prefer generated docs where possible)
  • Review runbooks after each incident for accuracy

Pattern 3: Audience-Appropriate Detail

Tailor documentation depth to its intended audience:

AudienceFocusDetail Level
New developersOnboarding, getting startedHigh-level concepts, step-by-step guides
Experienced teamReference, troubleshootingTechnical details, edge cases
OperationsDeployment, monitoringProcedures, commands, expected outputs
Business stakeholdersCapabilities, limitationsNon-technical summaries, diagrams

Pattern 4: Diagrams Over Prose

Use diagrams to communicate complex relationships. A well-designed diagram can replace pages of text and is easier to maintain.

Recommended diagram types:

  • System context: Shows system boundaries and external interactions
  • Container: Shows major components and their relationships
  • Sequence: Shows how components interact for specific flows
  • Data flow: Shows how data moves through the system

Pattern 5: Executable Documentation

Where possible, make documentation executable or verifiable:

  • API examples that can be run against a test environment
  • Code snippets that are extracted from actual tested code
  • Configuration examples that are validated in CI
  • Runbook steps that have been recently executed

ADR Lifecycle

ADRs follow a specific lifecycle:

  1. Proposed: Decision is being discussed, not yet accepted
  2. Accepted: Decision has been made and should be followed
  3. Deprecated: Decision is being phased out, new work should not follow it
  4. Superseded: Decision has been replaced by a newer ADR (link to new one)

When superseding an ADR:

  • Add "Superseded by ADR-XXX" to the old record
  • Add "Supersedes ADR-YYY" to the new record
  • Explain what changed and why in the new ADR's context

Best Practices

  • Write documentation close to the code it describes (prefer docs-as-code)
  • Use templates consistently to make documentation predictable
  • Include diagrams for architecture; text for procedures
  • Date all documents and note last review date
  • Keep ADRs immutable once accepted (create new ones to supersede)
  • Store documentation in version control alongside code
  • Review documentation accuracy during code reviews
  • Delete or archive documentation for removed features

Anti-Patterns to Avoid

  • Documentation Drift: Docs that no longer match reality are worse than no docs
  • Over-Documentation: Documenting obvious code reduces signal-to-noise
  • Wiki Sprawl: Documentation scattered across multiple systems becomes unfindable
  • Future Fiction: Documenting features that don't exist yet as if they do
  • Write-Only Docs: Creating docs that no one reads or maintains

References

  • templates/adr-template.md - Architecture Decision Record template
  • templates/system-doc-template.md - System documentation template

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

28.08%
按下载量换算72

windsurf

25.77%
按下载量换算66

OpenCode

16.49%
按下载量换算42

Gemini CLI

12.02%
按下载量换算31

trae

7.31%
按下载量换算19

Codex

3.27%
按下载量换算8

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills