用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill dependency-tracker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | dependency-tracker |
| description | > Use when this capability is needed. |
Track version drift across all OpenClaw dependencies. Detect updates, generate reports, notify Boss.
# 1. Scan — build/refresh the local manifest
python3 scripts/scan.py
# 2. Check — compare local vs remote versions
python3 scripts/check.py
# 3. Report — generate human-readable Markdown report
python3 scripts/report.py
All scripts are in the skill directory: ~/.openclaw/workspace/skills/dependency-tracker/scripts/
| Category | Source | Detection Method |
|---|---|---|
| Managed skills (GitHub) | .skill-lock.json | GitHub Contents API (git hash compare) |
| Managed skills (ClewHub) | _meta.json | ClewHub API (version compare) |
| Bundled skills | /app/skills/ | Tied to OpenClaw version |
| Workspace skills | workspace/skills/ | Local git (self-managed) |
| OpenClaw version | npm registry + GitHub | npm view / GitHub Releases API |
| npm dependencies | /app/node_modules/ | npm outdated |
| pip packages | system Python | pip3 list --outdated |
| CLI tools | PATH | Version commands |
When user asks to check dependencies:
scan.py to refresh the manifestcheck.py to compare against remote sourcesreport.py to generate the reportSet up a weekly cron job:
All runtime data lives in data/ (gitignored from backup):
data/
├── manifest.json # Full dependency inventory
├── check-results.json # Latest check results
└── reports/
└── YYYY-MM-DD-report.md # Generated reports
git hash-object locally vs GitHub Contents API SHA — exact match, no false positives..skill-lock.json (OpenClaw's managed skill registry) provides repo URLs and install metadata.Source: blessonism/openclaw-skills — distributed by TomeVault.