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

docs-automation文档自动化

Agent Skill

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

总安装

309

周安装

13

GitHub Stars

7,910

下载量

108
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/basedhardware/omi --skill docs-automation

简介

自动检测代码变更并触发文档更新。

  • 监控 API 端点和架构结构调整。
  • 生成函数级文档和维护指南。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 支持 breaking changes 通知机制。
  • docs-automation 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Documentation Automation Skill

Automate documentation updates to keep docs in sync with code changes.

When to Use

Use this skill when:

  • API endpoints are added, modified, or removed
  • Functions or classes are significantly changed
  • Architecture changes occur
  • New features are implemented
  • Breaking changes are introduced

Capabilities

1. Detect Code Changes

Automatically detect changes that require documentation updates:

  • Monitor backend/routers/**/*.py for API endpoint changes
  • Monitor backend/utils/**/*.py for function/class changes
  • Monitor architecture files for structural changes
  • Use git diff to identify what changed

2. Generate API Reference

Automatically generate API reference documentation:

  • Extract endpoint information from FastAPI routers
  • Parse route decorators (@router.get, @router.post, etc.)
  • Extract function docstrings for endpoint descriptions
  • Parse request/response models from type hints
  • Extract query parameters, path parameters, and request bodies
  • Generate MDX documentation files with examples
  • Update .cursor/API_REFERENCE.md
  • Update docs/api-reference/endpoint/*.mdx
  • Update docs/doc/developer/api/*.mdx

Process:

  1. Scan backend/routers/**/*.py for route decorators
  2. Extract endpoint metadata:

- HTTP method (GET, POST, etc.) - Path pattern - Function name and docstring - Parameters (path, query, body) - Response model - Tags

  1. Parse FastAPI models for request/response schemas
  2. Generate MDX file with:

- Endpoint description from docstring - Request/response examples - Parameter documentation - Error codes

  1. Update API reference index

Example:

@router.post("/v1/conversations", response_model=CreateConversationResponse, tags=['conversations'])
def process_in_progress_conversation(
    request: ProcessConversationRequest = None,
    uid: str = Depends(auth.get_current_user_uid)
):
    """
    Process an in-progress conversation after recording is complete.
    ...
    """

Generates:

### Process In-Progress Conversation

`POST /v1/conversations`

Process an in-progress conversation after recording is complete.

**Request Body**: ProcessConversationRequest (optional)

**Response**: CreateConversationResponse

3. Update Architecture Diagrams

Generate and update architecture diagrams:

  • Analyze code structure to generate Mermaid diagrams
  • Update .cursor/ARCHITECTURE.md with new components
  • Update .cursor/DATA_FLOW.md if data flows change
  • Update component documentation files

4. Sync Documentation

Keep documentation synchronized:

  • Sync between .cursor/ internal docs and docs/ external docs
  • Ensure consistency across documentation locations
  • Update cross-references and links
  • Validate documentation structure

Workflow

  1. Detect Changes: Analyze git diff or file changes
  2. Identify Impact: Determine which documentation needs updating
  3. Generate Updates: Create or update relevant documentation files
  4. Validate: Check documentation for completeness and accuracy
  5. Sync: Ensure all documentation locations are in sync

Usage Examples

Automatic API Documentation

When a new endpoint is added to backend/routers/conversations.py:

  1. Detect the new route decorator using AST parsing
  2. Extract endpoint details:

- Method from decorator (@router.post → POST) - Path from decorator argument - Function docstring for description - Parameters from function signature - Response model from response_model argument

  1. Parse request/response models:

- Extract field names and types - Generate JSON examples - Document required vs optional fields

  1. Generate MDX documentation file:

- Create docs/api-reference/endpoint/{endpoint_name}.mdx - Include description, parameters, examples - Add to API reference index

  1. Update .cursor/API_REFERENCE.md with new endpoint
  2. Validate documentation format and links

Parsing FastAPI Routers

Implementation approach:

import ast
from typing import List, Dict

def parse_fastapi_router(file_path: str) -> List[Dict]:
    """Parse FastAPI router file and extract endpoint information."""
    with open(file_path) as f:
        tree = ast.parse(f.read())

    endpoints = []
    for node in ast.walk(tree):
        if isinstance(node, ast.FunctionDef):
            # Check for route decorators
            for decorator in node.decorator_list:
                if isinstance(decorator, ast.Call):
                    # Extract @router.post("/path", ...)
                    method = get_decorator_method(decorator)
                    path = get_decorator_path(decorator)
                    response_model = get_response_model(decorator)

                    endpoints.append({
                        'method': method,
                        'path': path,
                        'function_name': node.name,
                        'docstring': ast.get_docstring(node),
                        'parameters': parse_parameters(node),
                        'response_model': response_model,
                    })
    return endpoints

Architecture Update

When a new module is added:

  1. Detect new module structure
  2. Update architecture documentation
  3. Generate/update Mermaid diagrams
  4. Update component references

Related Resources

Rules

  • .cursor/rules/documentation-standards.mdc - Documentation standards
  • .cursor/rules/auto-documentation.mdc - Auto-documentation rules
  • .cursor/rules/backend-api-patterns.mdc - API patterns

Subagents

  • .cursor/agents/docs-generator.md - Documentation generation subagent

Commands

  • /auto-docs - Trigger automatic documentation update
  • /update-api-docs - Update API reference documentation from FastAPI routers
  • /docs - Generate or update documentation

Implementation Notes

FastAPI Router Parsing

To auto-generate API docs:

  1. Parse Router Files: Use AST to parse Python files and extract route decorators
  2. Extract Metadata: Get method, path, parameters, response models from decorators
  3. Parse Docstrings: Extract endpoint descriptions from function docstrings
  4. Generate Examples: Create request/response examples from Pydantic models
  5. Generate MDX: Create MDX files following documentation standards
  6. Update Index: Add new endpoints to API reference index

Tools and Libraries

  • AST: Python's Abstract Syntax Tree for parsing Python code
  • Pydantic: Extract model schemas for request/response examples
  • FastAPI: Use FastAPI's OpenAPI schema generation capabilities
  • MDX: Generate MDX files with proper frontmatter and formatting

Automation Triggers

  • Git Hooks: Run on commit if router files changed
  • CI/CD: Run in CI pipeline to validate docs are up to date
  • Manual: Use /update-api-docs command when needed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.52%
按下载量换算42

Claude

27.83%
按下载量换算30

Cursor

21.28%
按下载量换算23

Gemini CLI

8.81%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills