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

help-docs-writer帮助文档编写者

Agent Skill

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

总安装

930

周安装

38

GitHub Stars

37

下载量

301
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/majesticlabs-dev/majestic-marketplace --skill help-docs-writer

简介

用于辅助文档编写和内容稿件整理,适合帮助文档和说明文撰写场景。

  • 适用于文档编写、内容整理和说明文创作相关任务场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需保留项目已有事实和路径信息。
  • 涉及对外文案时,应控制语气避免过度营销或夸大能力描述。
  • help-docs-writer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Help Documentation Writer

Create customer-facing help articles for product features. Bridges technical implementation with user-friendly documentation.

Inputs

Use AskUserQuestion to gather:

InputRequiredDescription
Feature nameYesWhat feature to document
Target audienceYesTechnical level (beginner/intermediate/advanced)
Output formatNomarkdown (default) or html
Help center platformNoZendesk, Intercom, Notion, GitBook, custom

Process

1. Feature Discovery

Search codebase for feature implementation:

# Find feature files
rg -l "feature_name" --type-add 'code:*.{rb,js,ts,py,jsx,tsx}'

# Find UI components
rg -l "FeatureName" src/ app/

# Find routes/endpoints
rg "feature" config/routes.rb app/controllers/

Extract:

  • What the feature does (core functionality)
  • User-facing entry points (buttons, menus, URLs)
  • Configuration options
  • Error states and edge cases

2. Structure the Article

Standard help article structure:

1. Title (action-oriented)
2. Overview (what + why, 2-3 sentences)
3. Prerequisites (if any)
4. Step-by-step instructions
5. Tips/best practices (optional)
6. Troubleshooting (common issues)
7. Related articles (links)

3. Write for Customers

  • Second person ("you"), present tense, active voice, no jargon
  • Numbered steps: one action per step, start with verb, include expected result after each action

Article Templates

Feature Walkthrough

# How to [Action] with [Feature]

[One sentence: what this helps you do]

## Before you start

- [Prerequisite 1]
- [Prerequisite 2]

## Steps

1. **[Action verb] [object]**

   [Where to find it / what to click]

   ![Screenshot placeholder: description]

2. **[Next action]**

   [Details]

3. **[Final action]**

   You'll see [confirmation message/result].

## Tips

- [Tip 1]
- [Tip 2]

## Troubleshooting

### [Problem statement as question]

[Solution in 1-2 sentences]

### [Another common issue]

[Solution]

## Related articles

- [Link to related feature]
- [Link to related feature]

Quick Reference

For simple features:

# [Feature Name]

[What it does in one sentence]

**To use [feature]:**

1. Go to **[Location]**
2. Click **[Button/Link]**
3. [Complete the action]

**Note:** [Important caveat if any]

Settings/Configuration Guide

# [Feature] settings

Customize how [feature] works for your account.

## Available settings

| Setting | Description | Default |
|---------|-------------|---------|
| [Name] | [What it controls] | [Value] |
| [Name] | [What it controls] | [Value] |

## How to change settings

1. Go to **Settings > [Section]**
2. Find **[Setting name]**
3. [Instructions to modify]
4. Click **Save**

Changes take effect [immediately/after X].

Writing Guidelines

Step Instructions

DoDon't
Click SaveClick on the Save button
Select your timezoneChoose the timezone you want
Enter your emailType in your email address

UI Element Formatting

  • Bold for clickable elements: buttons, links, menu items
  • Code for user input, URLs, or technical values
  • *Italics* for emphasis (sparingly)
  • "Quotes" for exact text the user should see

Screenshot Placeholders

Include placeholders for visual guidance:

![Screenshot: Settings page with Save button highlighted]

Format: ![Screenshot: [description of what to capture and highlight]]

Callouts

Use for important information:

> **Note:** [Important information]

> **Warning:** [Potential issue or destructive action]

> **Tip:** [Helpful suggestion]

Output Formats

Markdown (default)

Standard markdown with:

  • ATX headings (#, ##, ###)
  • Fenced code blocks
  • Tables
  • Blockquotes for callouts

HTML

Semantic HTML with:

  • <article> wrapper
  • <h1> through <h3> headings
  • <ol> for numbered steps
  • <table> for data
  • <aside> for callouts with class="note|warning|tip"
  • Inline styles stripped (CSS classes only)

HTML Template:

<article class="help-article">
  <h1>[Title]</h1>

  <p class="intro">[Overview]</p>

  <section class="prerequisites">
    <h2>Before you start</h2>
    <ul>
      <li>[Prerequisite]</li>
    </ul>
  </section>

  <section class="steps">
    <h2>Steps</h2>
    <ol>
      <li>
        <strong>[Action]</strong>
        <p>[Details]</p>
      </li>
    </ol>
  </section>

  <section class="troubleshooting">
    <h2>Troubleshooting</h2>
    <details>
      <summary>[Problem as question]</summary>
      <p>[Solution]</p>
    </details>
  </section>

  <aside class="note">
    <p>[Important note]</p>
  </aside>
</article>

Quality Checklist

Before delivery, verify:

  • Title starts with action verb or "How to"
  • Overview explains what AND why (benefit)
  • Prerequisites listed if any
  • Each step = one action
  • Steps start with verbs
  • UI elements in bold
  • No jargon or undefined acronyms
  • Troubleshooting covers common issues
  • Screenshot placeholders included
  • Related articles linked

Platform-Specific Notes

Zendesk

  • Use {{snippet}} for reusable content
  • Add article labels in metadata
  • Include search keywords

Intercom

  • Keep articles under 1000 words
  • Use their callout syntax: > 📌 Note:
  • Add reaction prompts at end

Notion

  • Use toggle blocks for troubleshooting
  • Add table of contents
  • Use callout blocks with icons

GitBook

  • Use hints syntax: {% hint style="info" %}
  • Add page descriptions
  • Use tabs for multi-platform instructions

What This Skill Does NOT Do

  • Generate screenshots (provides placeholders only)
  • Translate to other languages
  • Create video tutorials
  • Write API documentation (use docs-architect for technical docs)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.89%
按下载量换算105

Claude

32.3%
按下载量换算97

Cursor

18.88%
按下载量换算57

Gemini CLI

8.37%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills