{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/skill-deps-doctor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-deps-doctor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/skill-deps-doctor.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/skill-deps-doctor",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "🧰 Skill Deps Doctor",
        "body": "Complementary to openclaw doctor — doctor checks gateway/config/services;\nthis skill checks skill runtime dependencies (bins, versions, libs, fonts).\n\nUse this skill to detect missing or broken dependencies before a skill fails at runtime."
      },
      {
        "title": "What it checks",
        "body": "🔎 Binary presence — scans skills/*/SKILL.md declared requires.bins against $PATH\n📌 Version constraints — node>=18, python3>=3.10 syntax with actual version probing\n🧩 Shared libraries — Playwright/Chromium native deps via ldconfig (Linux)\n🔤 CJK fonts — prevents PDF tofu (□) via fc-list\n🔗 Transitive native deps — e.g. playwright → 13 .so libraries\n📦 Project presets via --check-dir:\n\nNode (package.json), Python (pyproject.toml / requirements.txt), Docker (Dockerfile)\nCross-references npm/pip packages against system-dep hints\n\n\n🎚️ Playwright probes — Node + Python detection + Chromium headless launch smoke test\n📦 Dependency profiles — --profile slidev, --profile whisper, --profile pdf-export\n🔌 Plugin system — third-party checkers via Python entry points"
      },
      {
        "title": "Install",
        "body": "pip install skill-deps-doctor\n\nLegacy command skill-deps-doctor remains supported for compatibility."
      },
      {
        "title": "Basic check",
        "body": "skill-deps-doctor --skills-dir /path/to/workspace/skills"
      },
      {
        "title": "Scan a project directory (with probes)",
        "body": "skill-deps-doctor --skills-dir ./skills --check-dir ./project --probe"
      },
      {
        "title": "Monorepo recursive scan",
        "body": "skill-deps-doctor --skills-dir ./skills --check-dir ./monorepo --recursive"
      },
      {
        "title": "Dependency profiles",
        "body": "skill-deps-doctor --skills-dir ./skills --profile slidev --profile pdf-export\nskill-deps-doctor --skills-dir ./skills --list-profiles"
      },
      {
        "title": "Generate fix script",
        "body": "skill-deps-doctor --skills-dir ./skills --fix > fix.sh"
      },
      {
        "title": "Dependency graph",
        "body": "skill-deps-doctor --skills-dir ./skills --graph tree\nskill-deps-doctor --skills-dir ./skills --graph dot | dot -Tsvg -o deps.svg"
      },
      {
        "title": "Cross-platform fix matrix",
        "body": "skill-deps-doctor --skills-dir ./skills --platform-matrix"
      },
      {
        "title": "JSON output (CI)",
        "body": "skill-deps-doctor --skills-dir ./skills --json"
      },
      {
        "title": "Environment snapshot + baseline regression gating",
        "body": "# Save baseline\nskill-deps-doctor --skills-dir ./skills --snapshot baseline.json\n\n# Gate on new issues\nskill-deps-doctor --skills-dir ./skills --baseline baseline.json --fail-on-new\n# Exit: 0 = pass, 2 = errors, 3 = new findings vs baseline"
      },
      {
        "title": "Validate hints schema & plugin contracts",
        "body": "skill-deps-doctor --skills-dir ./skills --validate-hints\nskill-deps-doctor --skills-dir ./skills --validate-plugins"
      },
      {
        "title": "Custom hints override",
        "body": "skill-deps-doctor --skills-dir ./skills --hints-file my-hints.yaml"
      },
      {
        "title": "Verbosity",
        "body": "skill-deps-doctor --skills-dir ./skills -v        # Show all (including info)\nskill-deps-doctor --skills-dir ./skills -q        # Errors only\nskill-deps-doctor --skills-dir ./skills --no-plugins  # Skip third-party plugins"
      },
      {
        "title": "Fallback wrapper (repo/dev layout)",
        "body": "python {baseDir}/scripts/skill-deps-doctor.py --skills-dir ./skills"
      },
      {
        "title": "Notes",
        "body": "Linux: shared-lib checks via ldconfig; font checks via fc-list; auto-adapts apt hints to host package manager (dnf / yum / apk / pacman).\nmacOS / Windows: binary + version + font checks work; Playwright checks rely on probes (--probe).\nCI integration: use --json for machine-readable output, --snapshot + --baseline --fail-on-new for regression gating."
      }
    ],
    "body": "🧰 Skill Deps Doctor\n\nComplementary to openclaw doctor — doctor checks gateway/config/services; this skill checks skill runtime dependencies (bins, versions, libs, fonts).\n\nUse this skill to detect missing or broken dependencies before a skill fails at runtime.\n\nWhat it checks\n🔎 Binary presence — scans skills/*/SKILL.md declared requires.bins against $PATH\n📌 Version constraints — node>=18, python3>=3.10 syntax with actual version probing\n🧩 Shared libraries — Playwright/Chromium native deps via ldconfig (Linux)\n🔤 CJK fonts — prevents PDF tofu (□) via fc-list\n🔗 Transitive native deps — e.g. playwright → 13 .so libraries\n📦 Project presets via --check-dir:\nNode (package.json), Python (pyproject.toml / requirements.txt), Docker (Dockerfile)\nCross-references npm/pip packages against system-dep hints\n🎚️ Playwright probes — Node + Python detection + Chromium headless launch smoke test\n📦 Dependency profiles — --profile slidev, --profile whisper, --profile pdf-export\n🔌 Plugin system — third-party checkers via Python entry points\nInstall\npip install skill-deps-doctor\n\n\nLegacy command skill-deps-doctor remains supported for compatibility.\n\nUsage\nBasic check\nskill-deps-doctor --skills-dir /path/to/workspace/skills\n\nScan a project directory (with probes)\nskill-deps-doctor --skills-dir ./skills --check-dir ./project --probe\n\nMonorepo recursive scan\nskill-deps-doctor --skills-dir ./skills --check-dir ./monorepo --recursive\n\nDependency profiles\nskill-deps-doctor --skills-dir ./skills --profile slidev --profile pdf-export\nskill-deps-doctor --skills-dir ./skills --list-profiles\n\nGenerate fix script\nskill-deps-doctor --skills-dir ./skills --fix > fix.sh\n\nDependency graph\nskill-deps-doctor --skills-dir ./skills --graph tree\nskill-deps-doctor --skills-dir ./skills --graph dot | dot -Tsvg -o deps.svg\n\nCross-platform fix matrix\nskill-deps-doctor --skills-dir ./skills --platform-matrix\n\nJSON output (CI)\nskill-deps-doctor --skills-dir ./skills --json\n\nEnvironment snapshot + baseline regression gating\n# Save baseline\nskill-deps-doctor --skills-dir ./skills --snapshot baseline.json\n\n# Gate on new issues\nskill-deps-doctor --skills-dir ./skills --baseline baseline.json --fail-on-new\n# Exit: 0 = pass, 2 = errors, 3 = new findings vs baseline\n\nValidate hints schema & plugin contracts\nskill-deps-doctor --skills-dir ./skills --validate-hints\nskill-deps-doctor --skills-dir ./skills --validate-plugins\n\nCustom hints override\nskill-deps-doctor --skills-dir ./skills --hints-file my-hints.yaml\n\nVerbosity\nskill-deps-doctor --skills-dir ./skills -v        # Show all (including info)\nskill-deps-doctor --skills-dir ./skills -q        # Errors only\nskill-deps-doctor --skills-dir ./skills --no-plugins  # Skip third-party plugins\n\nFallback wrapper (repo/dev layout)\npython {baseDir}/scripts/skill-deps-doctor.py --skills-dir ./skills\n\nNotes\nLinux: shared-lib checks via ldconfig; font checks via fc-list; auto-adapts apt hints to host package manager (dnf / yum / apk / pacman).\nmacOS / Windows: binary + version + font checks work; Playwright checks rely on probes (--probe).\nCI integration: use --json for machine-readable output, --snapshot + --baseline --fail-on-new for regression gating."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/RangeKing/skill-deps-doctor",
    "publisherUrl": "https://clawhub.ai/RangeKing/skill-deps-doctor",
    "owner": "RangeKing",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}