Trusted — Risk Score 0/100
Last scan:2 days ago Rescan
0 /100
github-growth-tracker
Track GitHub repository growth metrics (stars, forks, issues, commits, subscribers) over time and generate periodic digests with trend analysis.
GitHub增长追踪工具,功能完整、声明清晰、代码行为与文档完全一致,无越权操作。
Skill Namegithub-growth-tracker
Duration22.2s
Enginepi
Safe to install
可安全使用。代码仅使用标准库 urllib 与 GitHub API 交互,所有数据存储在声明路径下。
ResourceDeclaredInferredStatusEvidence
Filesystem WRITE WRITE ✓ Aligned scripts/github_tracker.py:67-71 存储凭证到 ~/.openclaw/credentials/;scripts/github_tr…
Network READ READ ✓ Aligned scripts/github_tracker.py:34-43 仅访问 api.github.com,无外部IP请求
Shell NONE NONE scripts/github_tracker.py 无任何 subprocess/os.system 调用
Environment READ READ ✓ Aligned scripts/github_tracker.py:51 仅读取 GITHUB_TOKEN 用于认证

File Tree

2 files · 22.4 KB · 615 lines
Python 1f · 433L Markdown 1f · 182L
├─ 📁 scripts
│ └─ 🐍 github_tracker.py Python 433L · 15.1 KB
└─ 📝 SKILL.md Markdown 182L · 7.4 KB

Dependencies 1 items

PackageVersionSourceKnown VulnsNotes
Python标准库 内置 stdlib No 仅使用 urllib.request、json、os、datetime、argparse

Security Positives

✓ 仅使用 Python 标准库(urllib、json、os、datetime、argparse),无第三方依赖
✓ 网络请求仅限 GitHub API (api.github.com),有明确的 User-Agent 头
✓ 凭证存储在声明的 ~/.openclaw/credentials/github.json,与 workspace 隔离
✓ 数据存储在声明的 ~/.openclaw/workspace/data/github-tracker/,历史自动裁剪至90天
✓ SKILL.md 文档完整,涵盖所有命令、输出格式、安全说明
✓ 无 shell 执行、无 base64/eval 解码、无敏感路径遍历
✓ 代码结构清晰,每个函数功能单一且有文档字符串