Github Release Analyzer
自动分析 GitHub 仓库发布内容并生成摘要,支持手动与定时任务模式。
下载 15
根据 GitHub URL 获取并分析代码库内容,支持自动提取仓库信息。
openclaw skills install @shiscofield12-beep/github-fetcher命令、参数、文件名以原文为准
当提供 GitHub URL 或仓库名称时,必须始终使用 curl 首先获取真实内容。切勿猜测或推断——先获取内容,再分析。
# 1. 列出根目录内容
curl -s "https://api.github.com/repos/OWNER/REPO/contents/"
# 2. 获取 README 文件
curl -s "https://raw.githubusercontent.com/OWNER/REPO/main/README.md"
# 3. 根据发现结果探索关键子目录
curl -s "https://api.github.com/repos/OWNER/REPO/contents/src"curl -s "https://raw.githubusercontent.com/OWNER/REPO/main/PATH/TO/FILE"main 分支返回 404,请尝试 master?ref=BRANCH 指定已收录 1 个 Skill