← All skills
Tencent SkillHub · Developer Tools

Skill Deps Doctor

Cross-platform skill dependency doctor — preflight check for missing binaries, version mismatches, system libraries, CJK fonts, Playwright/Chromium runtime,...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Cross-platform skill dependency doctor — preflight check for missing binaries, version mismatches, system libraries, CJK fonts, Playwright/Chromium runtime,...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/skill-deps-doctor.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 17 sections Open source page

🧰 Skill Deps Doctor

Complementary to openclaw doctor — doctor checks gateway/config/services; this skill checks skill runtime dependencies (bins, versions, libs, fonts). Use this skill to detect missing or broken dependencies before a skill fails at runtime.

What it checks

🔎 Binary presence — scans skills/*/SKILL.md declared requires.bins against $PATH 📌 Version constraints — node>=18, python3>=3.10 syntax with actual version probing 🧩 Shared libraries — Playwright/Chromium native deps via ldconfig (Linux) 🔤 CJK fonts — prevents PDF tofu (□) via fc-list 🔗 Transitive native deps — e.g. playwright → 13 .so libraries 📦 Project presets via --check-dir: Node (package.json), Python (pyproject.toml / requirements.txt), Docker (Dockerfile) Cross-references npm/pip packages against system-dep hints 🎚️ Playwright probes — Node + Python detection + Chromium headless launch smoke test 📦 Dependency profiles — --profile slidev, --profile whisper, --profile pdf-export 🔌 Plugin system — third-party checkers via Python entry points

Install

pip install skill-deps-doctor Legacy command skill-deps-doctor remains supported for compatibility.

Basic check

skill-deps-doctor --skills-dir /path/to/workspace/skills

Scan a project directory (with probes)

skill-deps-doctor --skills-dir ./skills --check-dir ./project --probe

Monorepo recursive scan

skill-deps-doctor --skills-dir ./skills --check-dir ./monorepo --recursive

Dependency profiles

skill-deps-doctor --skills-dir ./skills --profile slidev --profile pdf-export skill-deps-doctor --skills-dir ./skills --list-profiles

Generate fix script

skill-deps-doctor --skills-dir ./skills --fix > fix.sh

Dependency graph

skill-deps-doctor --skills-dir ./skills --graph tree skill-deps-doctor --skills-dir ./skills --graph dot | dot -Tsvg -o deps.svg

Cross-platform fix matrix

skill-deps-doctor --skills-dir ./skills --platform-matrix

JSON output (CI)

skill-deps-doctor --skills-dir ./skills --json

Environment snapshot + baseline regression gating

# Save baseline skill-deps-doctor --skills-dir ./skills --snapshot baseline.json # Gate on new issues skill-deps-doctor --skills-dir ./skills --baseline baseline.json --fail-on-new # Exit: 0 = pass, 2 = errors, 3 = new findings vs baseline

Validate hints schema & plugin contracts

skill-deps-doctor --skills-dir ./skills --validate-hints skill-deps-doctor --skills-dir ./skills --validate-plugins

Custom hints override

skill-deps-doctor --skills-dir ./skills --hints-file my-hints.yaml

Verbosity

skill-deps-doctor --skills-dir ./skills -v # Show all (including info) skill-deps-doctor --skills-dir ./skills -q # Errors only skill-deps-doctor --skills-dir ./skills --no-plugins # Skip third-party plugins

Fallback wrapper (repo/dev layout)

python {baseDir}/scripts/skill-deps-doctor.py --skills-dir ./skills

Notes

Linux: shared-lib checks via ldconfig; font checks via fc-list; auto-adapts apt hints to host package manager (dnf / yum / apk / pacman). macOS / Windows: binary + version + font checks work; Playwright checks rely on probes (--probe). CI integration: use --json for machine-readable output, --snapshot + --baseline --fail-on-new for regression gating.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/skill-deps-doctor.py Scripts