โ† All skills
Tencent SkillHub ยท Developer Tools

Skill Dependencies

Track and manage dependencies between OpenClaw skills. Scan skills for dependencies, visualize skill trees, detect circular dependencies, and manage skill versioning. Use when analyzing skill relationships, checking which skills depend on others, or managing skill installations.

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

Track and manage dependencies between OpenClaw skills. Scan skills for dependencies, visualize skill trees, detect circular dependencies, and manage skill versioning. Use when analyzing skill relationships, checking which skills depend on others, or managing skill installations.

โฌ‡ 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/check-conflicts.sh, scripts/check-deps.sh, scripts/scan-skills.sh, scripts/skill-install.sh, scripts/skill-search.sh

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
1.0.0

Documentation

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

Skill Dependencies

Manage dependencies between OpenClaw skills โ€” like npm for skills.

Version Constraints

Supports semver-style version constraints: depends: - weather@>=1.0.0 # Version 1.0.0 or higher - calendar@^2.0.0 # Compatible with 2.x.x - browser@~1.2.0 # Approximately 1.2.x - coding-agent@* # Any version - github@1.5.0 # Exact version

Conflict Detection

Declare skills that cannot coexist: conflicts: - old-weather # Cannot use with old-weather - legacy-calendar

Declaring Dependencies

In a skill's SKILL.md frontmatter: --- name: my-skill description: Does something cool depends: - weather # Requires weather skill - coding-agent # Requires coding-agent skill optional: - github # Enhanced if github skill present ---

Dependency Types

depends โ€” Required skills (fail if missing) optional โ€” Enhanced functionality if present conflicts โ€” Cannot be used with these skills

Scan Skills

# Scan all installed skills for dependencies ./scripts/scan-skills.sh # Scan specific skill ./scripts/scan-skills.sh weather

Dependency Tree

# Show full dependency tree ./scripts/skill-tree.sh my-skill # Output: # my-skill # โ”œโ”€โ”€ weather (required) # โ”‚ โ””โ”€โ”€ (no dependencies) # โ””โ”€โ”€ coding-agent (required) # โ””โ”€โ”€ github (optional)

Check Missing

# Find skills with unmet dependencies ./scripts/check-deps.sh

Registry Format

Skills can declare their metadata in skill.json: { "name": "my-skill", "version": "1.0.0", "depends": { "weather": ">=1.0.0", "coding-agent": "*" }, "optional": { "github": ">=2.0.0" } }

Skill Locations

Scans these directories: /usr/lib/node_modules/openclaw/skills/ โ€” Built-in skills ~/.openclaw/workspace/skills/ โ€” User skills ./skills/ โ€” Project-local skills

ClawHub Registry Integration

Install skills from clawhub.com: # Install a skill (auto-resolves dependencies) ./scripts/skill-install.sh weather # Install with specific version ./scripts/skill-install.sh weather@1.2.0 # Search for skills ./scripts/skill-search.sh "calendar" # List installed vs available ./scripts/skill-list.sh --outdated

Auto-Resolution

When installing a skill with dependencies: $ ./scripts/skill-install.sh travel-planner ๐Ÿ“ฆ Resolving dependencies for travel-planner@1.0.0... โ”œโ”€โ”€ weather@>=1.0.0 โ†’ weather@1.2.3 โœ… โ”œโ”€โ”€ calendar@^2.0 โ†’ calendar@2.1.0 โœ… โ””โ”€โ”€ browser (optional) โ†’ browser@3.0.0 โœ… ๐Ÿ” Checking conflicts... โ””โ”€โ”€ No conflicts found โœ… ๐Ÿ“ฅ Installing 4 skills... โœ… weather@1.2.3 โœ… calendar@2.1.0 โœ… browser@3.0.0 โœ… travel-planner@1.0.0 Done! Installed 4 skills.

Commands Summary

CommandDescriptionscan-skills.shList all skills with their depsskill-tree.sh <name>Show dependency treecheck-deps.shFind missing dependenciesskill-install.sh <name>Install from ClawHubskill-search.sh <query>Search registrycheck-conflicts.shDetect conflicts

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
5 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/check-conflicts.sh Scripts
  • scripts/check-deps.sh Scripts
  • scripts/scan-skills.sh Scripts
  • scripts/skill-install.sh Scripts
  • scripts/skill-search.sh Scripts