Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计通过

update-docs更新文档

Agent Skill

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

总安装

494

周安装

20

GitHub Stars

585

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/peteonrails/voxtype --skill update-docs

简介

用于辅助文档、README、Markdown 等内容的整理与改写,适合提炼结构、补齐章节或统一术语。

  • 适用于需要快速梳理零散材料、生成可读文档或检查链接的场景。
  • 通过 GitHub 安装,集成于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 使用时需保留项目已有事实和路径,避免将未确认信息写成确定结论;对外文案应控制语气,防止过度营销。
  • update-docs 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Update Documentation

Guide for updating voxtype documentation across all locations.

Documentation Locations

DocumentLocationWhen to Update
User Manualdocs/USER_MANUAL.mdNew features, usage changes
Configuration Guidedocs/CONFIGURATION.mdNew config options
Troubleshootingdocs/TROUBLESHOOTING.mdNew error conditions, fixes
FAQdocs/FAQ.mdCommon questions
READMEREADME.mdMajor features, installation changes
Website Newswebsite/news/index.htmlEvery release
GitHub ReleaseGitHub ReleasesEvery release
Obsidian Vault~/Documents/markdown-notes/Voxtype/Session notes, decisions

Writing Style

Avoid AI writing patterns:

  • No em-dashes (—) - use colons or separate sentences
  • No "delve", "leverage", "utilize", "streamline", "robust", "seamless"
  • No excessive hedging ("It's worth noting...", "Interestingly...")
  • No punchy one-liners ("And that's the point.", "Simple as that.")
  • No sentence fragments for effect ("The result? Faster builds.")
  • Write plainly and directly

User Manual Updates

Location: docs/USER_MANUAL.md

When adding a feature:

  1. Add to table of contents if significant
  2. Create new section with clear heading
  3. Include usage examples with code blocks
  4. Explain the "why" not just the "how"

Configuration Guide Updates

Location: docs/CONFIGURATION.md

For new config options:

  1. Add to the relevant section
  2. Show the TOML syntax
  3. Document the default value
  4. Explain what it does and when to use it
### new_option

Enable the new feature.

[section] new_option = true # default: false


When enabled, this does X which is useful for Y.

Troubleshooting Updates

Location: docs/TROUBLESHOOTING.md

Format for new issues:

### Error: The specific error message

**Cause:** Why this happens

**Solution:**
1. Step one
2. Step two

**Example:**

command to fix

Website News Articles

Location: website/news/index.html

Every GitHub release needs a matching news article. Follow v0.4.10/v0.4.11 as examples.

Structure:

<article class="news-article" id="v0415">
    <div class="article-meta">
        <time datetime="2026-01-20">January 20, 2026</time>
        <span class="article-tag">Release</span>
    </div>
    <h2>v0.4.15: Feature Summary</h2>
    <div class="article-body">
        <p>Intro paragraph...</p>

        <h3>Feature Name</h3>
        <p>Description.</p>
        <p><strong>Why use it:</strong> User benefit.</p>

        <div class="code-block">
            <div class="code-header"><span>config.toml</span></div>
            <pre><code>[section]
option = "value"</code></pre>
        </div>
    </div>
</article>

Add new articles at the TOP of the articles list.

GitHub Release Notes

Format:

  • Title: v0.4.15: Feature Summary
  • Brief intro paragraph
  • ### sections for each feature
  • **Why use it:** callouts
  • Bug fixes as bullet list
  • Downloads table with checksums

Obsidian Vault Notes

Use the /obsidian skill to save session context.

Location: ~/Documents/markdown-notes/Voxtype/

Include:

  • Summary of work completed
  • Key decisions and rationale
  • Links to PRs/issues
  • Next steps

Crediting Contributors

In Commits

Add co-authors to commit messages:

Co-authored-by: Name <email@example.com>

In Cargo.toml

Add to the authors array:

authors = [
    "Peter Jackson <pete@peteonrails.com>",
    "Contributor Name <contributor@example.com>",
]

In README

Add to Contributors section with GitHub profile link.

On Website

Add to the website's contributors or about page if significant contribution.

Release Documentation Checklist

  • Update docs/USER_MANUAL.md for new features
  • Update docs/CONFIGURATION.md for new options
  • Update docs/TROUBLESHOOTING.md for new error conditions
  • Add news article to website/news/index.html
  • Create GitHub release with notes
  • Update packaging/arch-bin/voxtype-bin.install post_upgrade message
  • Credit contributors in Cargo.toml and README
  • Save session notes to Obsidian vault

CLI Help Text

When adding new CLI options, update the clap attributes in src/cli.rs:

/// Clear description of what this option does
#[arg(long, short = 'x')]
pub new_option: bool,

The --help output IS documentation. Make it clear and complete.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.6%
按下载量换算43

windsurf

22.83%
按下载量换算35

trae

15.6%
按下载量换算24

OpenCode

12.45%
按下载量换算19

Codex

7.52%
按下载量换算12

Antigravity

3.02%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills