Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问clear审计通过

howto-docs操作方法文档

Agent Skill

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

总安装

1,623

周安装

69

GitHub Stars

54

下载量

569
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/existential-birds/beagle --skill howto-docs

简介

用于辅助文档、README 和 Markdown 内容的整理与改写。

  • 适合提炼结构、补齐章节、统一术语或检查链接有效性。
  • 使用时应保留项目已有事实,不将未确认信息写成确定结论。
  • 涉及对外文案时需控制语气,避免过度营销或夸大能力。
  • 可结合项目路径和命令进一步核验具体实现方式。howto-docs 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

How-To Documentation Skill

This skill provides patterns for writing effective How-To guides in documentation. How-To guides are task-oriented content for users who have a specific goal in mind.

Purpose & Audience

Target readers:

  • Users with a specific goal they want to accomplish
  • Assumes some familiarity with the product (not complete beginners)
  • Looking for practical, actionable steps
  • Want to get things done, not learn concepts

How-To guides are NOT:

  • Tutorials (which teach through exploration)
  • Explanations (which provide understanding)
  • Reference docs (which describe the system)

How-To Guide Template

Use this structure for all how-to guides:

---
title: "How to [achieve specific goal]"
description: "Learn how to [goal] using [product/feature]"
---

# How to [Goal]

Brief intro (1-2 sentences): what you'll accomplish and why it's useful.

## Prerequisites

- [What user needs before starting]
- [Required access, tools, or setup]
- [Any prior knowledge assumed]

## Steps

### 1. [Action verb] the [thing]

[Clear instruction with expected outcome]

<Note>
[Optional tip or important context]
</Note>

### 2. [Next action]

[Continue with clear, single-action steps]

Example command or code if needed


### 3. [Continue numbering]

[Each step should be one discrete action]

## Verify it worked

[How to confirm success - what should user see/experience?]

## Troubleshooting

## Next steps

- [Related how-to guide 1]
- [Related how-to guide 2]
- [Deeper dive reference doc]

Writing Principles

Title Conventions

  • Always start with "How to" - makes the goal immediately clear
  • Use active verbs: "How to configure...", "How to deploy...", "How to migrate..."
  • Be specific: "How to add SSO authentication" not "How to set up auth"

Step Structure

  1. One action per step - if you write "and", consider splitting
  2. Start with action verbs: Click, Navigate, Enter, Select, Run, Create
  3. Show expected outcomes after key steps:
   ### 3. Save the configuration

   Click **Save**. You should see a success message: "Configuration updated."

Minimize Context

  • Don't explain why things work - just show how to do them
  • Link to explanations for users who want deeper understanding
  • Keep each step focused on the immediate action

User Perspective

Write from the user's perspective, not the product's:

Avoid (product-centric)Prefer (user-centric)
"The API accepts...""Send a request to..."
"The system will...""You'll see..."
"This feature allows...""You can now..."

Prerequisites Section

Be explicit about what's needed:

## Prerequisites

- An active account with admin permissions
- API key generated from Settings > API
- Node.js v18 or later installed
- Completed the [initial setup guide](/getting-started)

Components for How-To Guides

Steps Component

For numbered procedures, use a Steps component:

<Steps>
  <Step title="Create a new project">
    Navigate to the dashboard and click **New Project**.
  </Step>
  <Step title="Configure settings">
    Enter your project name and select a region.
  </Step>
  <Step title="Deploy">
    Click **Deploy** to launch your project.
  </Step>
</Steps>

Code Groups for Multiple Options

When showing different approaches:

<CodeGroup>

npm install @company/sdk

yarn add @company/sdk

pnpm add @company/sdk


### Callouts for Important Information

<Warning> This action cannot be undone. Make sure to backup your data first. </Warning>

<Note> This step may take 2-3 minutes to complete. </Note>

<Tip> You can also use keyboard shortcut Cmd+K for faster navigation. </Tip>


### Expandable Sections

For optional details that shouldn't interrupt flow:

<Expandable title="Advanced options"> If you need custom configuration, you can also set: - timeout: Request timeout in milliseconds - retries: Number of retry attempts </Expandable>


## Example How-To Guide

title: "How to set up webhook notifications" description: "Learn how to configure webhooks to receive real-time event notifications"


How to Set Up Webhook Notifications

Configure webhooks to receive instant notifications when events occur in your account. This enables real-time integrations with your existing tools.

Prerequisites

  • Admin access to your account
  • A publicly accessible HTTPS endpoint to receive webhooks
  • Completed the authentication setup

Steps

<Steps> <Step title="Navigate to webhook settings"> Go to Settings > Integrations > Webhooks. </Step>

<Step title="Add a new webhook endpoint"> Click Add Endpoint and enter your webhook URL:

    https://your-domain.com/webhooks/receiver

<Note> Your endpoint must use HTTPS and be publicly accessible. </Note> </Step>

<Step title="Select events to subscribe"> Choose which events should trigger notifications:

- user.created - New user sign up - payment.completed - Successful payment - subscription.cancelled - Subscription ended

Select at least one event to continue. </Step>

<Step title="Save and get your signing secret"> Click Create Webhook. Copy the signing secret shown - you'll need this to verify webhook authenticity.

<Warning> Store the signing secret securely. It won't be shown again. </Warning> </Step> </Steps>

Verify it worked

Send a test event by clicking Send Test next to your webhook. You should receive a POST request at your endpoint with this structure:

{
  "event": "test.webhook",
  "timestamp": "2024-01-15T10:30:00Z",
  "data": {}
}

Check your endpoint logs to confirm receipt.

Troubleshooting

Next steps

## Checklist for How-To Guides

Before publishing, verify:

- [ ] Title starts with "How to" and describes a specific goal
- [ ] Prerequisites section lists all requirements
- [ ] Each step is a single, clear action
- [ ] Action verbs start each step (Click, Enter, Select, Run)
- [ ] Expected outcomes shown after key steps
- [ ] Verification section explains how to confirm success
- [ ] Troubleshooting covers common issues
- [ ] Next steps link to related content
- [ ] No unnecessary explanations - links to concepts instead
- [ ] Written from user perspective, not product perspective

## When to Use How-To vs Other Doc Types

| User's mindset | Doc type | Example |
|---------------|----------|---------|
| "I want to learn" | Tutorial | "Getting started with our API" |
| "I want to do X" | How-To | "How to configure SSO" |
| "I want to understand" | Explanation | "How our caching works" |
| "I need to look up Y" | Reference | "API endpoint reference" |

## Related Skills

- **docs-style**: Core writing conventions and components
- **tutorial-docs**: Tutorial patterns for learning-oriented content
- **reference-docs**: Reference documentation patterns
- **explanation-docs**: Conceptual documentation patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.19%
按下载量换算166

Antigravity

20.33%
按下载量换算116

OpenCode

16.84%
按下载量换算96

Gemini CLI

11.43%
按下载量换算65

windsurf

6.82%
按下载量换算39

Cursor

3.43%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills