🦀 ClawHub
Auto Doc AI
by @antonia-sz
基于 AST 和 LLM 自动生成 Python 代码文档(Google Style docstring)。 自动分析代码结构,生成符合 Google Style 的 docstring。
TERMINAL
clawhub install auto-doc-ai📖 About This Skill
name: auto-doc-ai displayName: Auto Doc AI — 智能代码文档生成器 description: > 基于 AST 和 LLM 自动生成 Python 代码文档(Google Style docstring)。 自动分析代码结构,生成符合 Google Style 的 docstring。 author: antonia-sz version: 1.0.0 tags: [python, documentation, codegen, developer-tools, ai]
Auto Doc AI — 智能代码文档生成器
自动分析 Python 代码结构,生成符合 Google Style 的 docstring 文档。
功能特性
使用方法
为单个文件生成文档
/generate-docs /path/to/your_script.py
为整个目录生成文档
/generate-docs /path/to/src/ --recursive
强制更新已有文档
/generate-docs /path/to/src/ --overwrite
预览模式(不写入文件)
/generate-docs /path/to/your_script.py --dry-run
生成的文档格式示例
def process_data(data, threshold=0.5):
"""处理输入数据并返回过滤后的结果。 Args:
data (list): 输入数据列表。
threshold (float, optional): 过滤阈值,默认为 0.5。
Returns:
list: 过滤后的数据列表。
Raises:
ValueError: 如果数据格式无效。
"""
pass
注意事项
--dry-run 预览生成的文档--overwrite 会替换所有现有 docstring