# Send Skill Deps Doctor to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skill-deps-doctor",
    "name": "Skill Deps Doctor",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/RangeKing/skill-deps-doctor",
    "canonicalUrl": "https://clawhub.ai/RangeKing/skill-deps-doctor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skill-deps-doctor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-deps-doctor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/skill-deps-doctor.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/skill-deps-doctor"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skill-deps-doctor",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-deps-doctor",
    "agentUrl": "https://openagent3.xyz/skills/skill-deps-doctor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-deps-doctor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-deps-doctor/agent.md"
  }
}
```
## Documentation

### 🧰 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RangeKing
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-deps-doctor)
- [Send to Agent page](https://openagent3.xyz/skills/skill-deps-doctor/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-deps-doctor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-deps-doctor/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-deps-doctor)