Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

authoring-user-docs创作用户文档

Agent Skill

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

总安装

524

周安装

21

GitHub Stars

5

下载量

170
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wizeline/sdlc-agents --skill authoring-user-docs

简介

产出教程、操作指南与入职引导文档,覆盖学习导向与任务导向需求。

  • 根据受众经验水平选择合适类型,提供结构化模板与写作准则。
  • 适用于产品手册、培训材料与开发者入门指南编写。
  • 安装需通过 npx skills add 添加 sdlc-agents 仓库中的 authoring-user-docs 技能。
  • 必须先加载 authoring-technical-docs 获取通用文档标准与评审流程。

SKILL.md

Authoring User Docs Action

Produces tutorials, how-to guides, user guides and onboarding guides — the learning-oriented and task-oriented quadrants of the Diátaxis framework.

Load authoring-technical-docs first for the multi-pass workflow, style rules, and quality framework. This action provides the templates and user-doc-specific rules. Then, follow the creation of referenced documents in ´Templates´ section.


Choosing the right type

TutorialHow-To GuideUser GuideOnboarding Guide
AudienceBeginnersUsers who know the basicsAll experience levelsNew team members or developers joining a project
StructureLinear journeyTask-focusedChapter-style, comprehensiveSequential, milestone-based
Goal"I learned how this works""I accomplished my task""I understand the whole product""I'm ready to contribute to the project"

Best Practices for Writing Tutorials

1. Know and Address Your Audience Write in approachable, conversational "you" language rather than formal passive voice. Meet the reader where they are, and don't bury context they need to feel oriented.

2. Get to a Win Early (The "Hello World" Rule) Give users a small, tangible success as soon as possible. Don't front-load pages of theory before the first runnable command — early momentum keeps learners engaged.

3. Explain the "Why" Tutorials are action-heavy by nature, but provide enough context at each step so users understand the logic behind what they're doing, not just the mechanics.

4. Use Consistent Formatting

  • Use bold for clickable UI elements (buttons, menus).
  • Use code-style for strings, file names, and inline commands.
  • Use fenced code blocks with syntax highlighting (e.g., ``` `python ```) for all multi-line code.
  • Separate Command (what the user types) from Output (what they should see).
  • Never use screenshots for code — users can't copy-paste from images.

5. Write Idempotent Steps Where possible, write steps that can be safely re-run without breaking anything. For example, prefer mkdir -p over mkdir so repeated runs don't throw errors. This is especially important for onboarding and setup flows.

6. Define Done with a Validation Step Every tutorial must include a clear check so users know whether they succeeded. If a learner can't verify their own outcome, the tutorial is incomplete.

7. Reduce Setup Friction If the initial setup is tedious, provide a shell script or a link to a completed GitHub repository so learners can get unblocked quickly and focus on the learning objective.

8. Add Troubleshooting Tips Call out common pitfalls briefly at the end of relevant steps. A single sentence like *"If you see X error, check Y"* can save a learner hours of frustration.

Best Practices for Writing User Guides

1. Write for Your Audience Use clear, non-technical language suited to end-users. Never assume prior context — the first paragraph should orient anyone arriving cold, such as from a search engine.

2. Structure Around Tasks, Not UI Organize content by what users want to *achieve*, not by how the interface is laid out. This keeps the guide goal-oriented and easier to navigate.

3. Start with Prerequisites Present prerequisites as a checklist so users can verify they're ready before beginning. This prevents frustration mid-procedure.

4. One Action Per Step Don't chain multiple actions in a single step. Each step should be discrete, actionable, and written in plain language.

5. Show Expected Results After every significant step, tell the reader what they should see. This builds confidence and helps users catch errors early.

6. Progressive Disclosure Lead with the most common path. Move edge cases, advanced options, and variations into clearly labeled sections so they don't overwhelm the primary flow.

7. Use Visual Aids Purposefully Include screenshots or diagrams wherever they clarify a major action or reduce ambiguity. Visuals should support the text, not replace it — every image should have a corresponding written step.

8. Test Every Procedure Follow your own instructions before publishing. If you can't complete a step as written, flag it as a gap and fix it.

9. End with Next Steps Always give the reader somewhere to go. A brief "What's next?" section or links to related guides prevents dead ends and encourages continued learning.

Best Practices for Writing How-to Guides

1. Lead with the Action ("Do, then Explain") Give the instruction first, then explain why if necessary. Don't front-load theory before the command — readers came to accomplish something, not to read background context.

  • Avoid: *Because the server needs to listen on a specific channel, you should configure the port.*
  • Prefer: *Set the port listener. This allows the server to accept incoming requests.*

2. Use Imperative Mood and Active Voice Write direct, commanding sentences throughout. "Open the file" is clearer than "The file should be opened." "The system generates a log" is clearer than "A log is generated by the system." These two principles work together to keep every instruction unambiguous and scannable.

3. Be Language- and Tool-Agnostic Where Possible When a guide covers a general workflow, describe the *logic* before the *implementation*. If multi-language examples are needed, present the conceptual step first, then offer language-specific tabs or snippets. Only tie the guide to a specific language or tool when an example is genuinely required for clarity.

4. Format Code and UI Elements Consistently

  • Bold for UI elements: Click Save, select File > Open.
  • Code blocks for file names, paths, and inline commands — always in a copy-pasteable format.
  • Mark placeholders clearly so users know what to substitute: <YOUR_API_KEY>, or *italics* for inline placeholders like user_id = <your_id>.

5. Use Inclusive Language Use gender-neutral terms throughout and avoid culturally specific idioms or stereotypes. Accessibility in language broadens your audience and reflects good authorship.

Best Practices for Writing Onboarding guides

  • Structure content around SDLC phases (requirements → design → dev → test → deploy → maintenance)
  • Tailor guides per role (developer, QA, DevOps, PM) with distinct onboarding paths
  • Use progressive disclosure — start with essentials, layer in process depth over time
  • Document toolchain setup explicitly (IDE, Git workflow, CI/CD, issue tracker, comms tools)
  • Embed the *why* behind conventions (branching strategy, PR rules, commit standards)
  • Include visual aids — pipeline diagrams, branching models, org charts
  • Provide end-to-end worked examples (ticket → branch → PR → staging → production)
  • Define "done" criteria clearly at each SDLC phase
  • Maintain a glossary of org-specific terms and acronyms
  • Add checklists/checkpoints after key milestones (first PR, first deploy)
  • Reference a human DRI or buddy for each phase
  • Store in version control (Confluence, Notion, GitHub Wiki) with an assigned owner
  • Collect feedback at 30/60/90-day intervals to keep content accurate

Templates

Follow these templates:

User DocAsset
User GuideRead ./assets/user_guide_template.md
TutorialRead ./assets/tutorial_template.md
How-to guideRead ./assets/how_to_guide_template.md
Onboarding GuideRead ./assets/onboarding_guide_template.md

Save tutorials to docs/guides/tutorial-*.md. Save how-to guides to docs/guides/how-to-*.md. Save user guides to docs/guides/guide-*.md. Save onboarding guides to docs/guides/onboarding-*.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.17%
按下载量换算61

Claude

29%
按下载量换算49

Cursor

18.43%
按下载量换算31

Gemini CLI

9.84%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/wizeline/sdlc-agents --skill authoring-user-docs 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills