Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

skill-chain技能链

Agent Skill

skill-chain 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,320

周安装

305

GitHub Stars

2

下载量

2,440
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-chain(技能链)
来源仓库:https://github.com/hyx-cn/skill-chain
安装命令:
openclaw skills install skill-chain
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skill-chain

简介

skill-chain 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 适用于分析 OpenClaw 技能生态系统,了解工具和包依赖关系。
  • 可发现技能冲突和供应链风险,优化本地技能配置。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
skill-chain
description
Supply chain intelligence for OpenClaw skills. Use when analyzing the local skill ecosystem, understanding tool and package dependencies, discovering skill categories, mapping relationships between skills, checking security posture, auditing skill health, detecting overlaps, or generating an ecosystem health report. Trigger on "analyze my skills", "skill supply chain", "what tools do my skills use", "skill dependencies", "skill inventory", "ecosystem report", "which skills use X package", "skill categories", "popular skills", "skill security", "skill health", "skill completeness", "overlapping skills".

SkillChain

Supply chain intelligence and ecosystem analysis for OpenClaw skills. Operates offline-first against locally installed skills; optionally enriches with live clawhub metadata (stars, downloads, moderation verdicts) when network is available.

When to Use

TriggerAction
"Analyze my skills" / "skill inventory"ingest analyze-all (one-shot)
"What tools / packages do my skills use?"analyze packages
"Show dependencies for skill X"analyze supply-chain --skill <slug>
"Which skills share package X?"analyze find-users --package <name>
"Skill categories / ecosystem breakdown"analyze categories
"How complete / healthy are my skills?"analyze health
"Do any skills overlap or duplicate?"analyze overlaps
"Sync online popularity / security data"ingest enrich
"Full ecosystem report with insights"analyze report
"Rebuild graph from scratch"ingest reset && ingest scan

Workflow

One-shot (recommended)

# Reset, scan, health check, overlap analysis, full report — all in one command
python3 scripts/ingest.py analyze-all

# With custom directories
python3 scripts/ingest.py analyze-all --dirs ~/.cursor/skills-cursor ~/.openclaw/skills ~/Downloads/skills-main/skills

Step 1 — Ingest (build the graph from local skills)

# Auto-discover skills under default paths
python3 scripts/ingest.py scan

# Specify directories explicitly
python3 scripts/ingest.py scan --dirs ~/Downloads/skills-main/skills ~/.codex/skills ~/Downloads/ontology

# Online enrichment: adds stars, downloads, moderation verdict from clawhub
# Skipped automatically if network is unavailable
python3 scripts/ingest.py enrich

# Check what's currently in the graph
python3 scripts/ingest.py status

# Reset and rebuild
python3 scripts/ingest.py reset
python3 scripts/ingest.py scan

Step 2 — Analyze

# Ecosystem overview (counts, categories, top packages)
python3 scripts/analyze.py stats

# Category distribution
python3 scripts/analyze.py categories

# Skill completeness health scores (0-100 per skill, with specific issues)
python3 scripts/analyze.py health

# Detect overlapping or complementary skill pairs
python3 scripts/analyze.py overlaps

# Top N skills by a metric
python3 scripts/analyze.py top --by stars --limit 10
python3 scripts/analyze.py top --by downloads --limit 10

# Skill profile card (dependencies, tools, bins, invocation pattern, online metrics)
python3 scripts/analyze.py profile --skill ontology

# Full supply chain for a skill (invoked_via → requires_bin → tools → packages → skill deps)
python3 scripts/analyze.py supply-chain --skill agent-browser

# Find all skills that use a specific package
python3 scripts/analyze.py find-users --package playwright

# Most-used packages across all skills
python3 scripts/analyze.py packages --top 20

# Full markdown report with Key Insights section
python3 scripts/analyze.py report

Data Sources

SourceWhat it providesRequired?
SKILL.md frontmattername, description, license, allowed-tools, metadata.requires.bins, read_whenYes
requirements.txtDeclared Python package deps (pypi)When present
pyproject.tomlPython deps: PEP 621, Poetry, optional-depsWhen present
PipfilePython deps (Pipfile format)When present
package.jsonnpm deps: dependencies / devDeps / peerDepsWhen present
scripts/*.py AST scanImplicit Python imports (non-stdlib only)When present
_meta.json / .clawhub/origin.jsonslug, version, registryWhen present
clawhub API (online)stars, downloads, moderation verdict, ownerOptional

Graph Relations

RelationMeaning
belongs_to_categoryskill belongs to a functional category
requires_packageskill depends on a pypi / npm package
uses_toolskill uses a detected tool (heuristic)
requires_toolskill requires a system binary (metadata.requires.bins)
invoked_viaskill is called through a tool channel (allowed-tools)
depends_on_skillskill references another skill in its description

Default Scan Paths

The ingest script checks these locations by default:

  • ~/.openclaw/skills
  • ~/.openclaw/extensions (extensions exposing their own skills via <plugin>/skills/*)
  • /Applications/OpenClaw.app/Contents/Resources/skills (macOS app bundle, when installed)

In addition, ingest scan augments the user-provided or default --dirs arguments with:

  • <project_root>/skills — project-local skills folder when this skill lives

inside a repository

  • $(npm root -g)/openclaw/skills — globally installed OpenClaw skills from

a Node.js / npm environment

Any directory containing a SKILL.md file is treated as a skill.

Ontology Contract

ontology:
  reads: [Skill, SkillCategory, Tool, SoftwarePackage]
  writes: [Skill, SkillCategory, Tool, SoftwarePackage]
  storage: memory/skillchain/graph.jsonl
  schema: schema/skillchain.yaml
  preconditions:
    - "At least one local skill directory is accessible"
  postconditions:
    - "Every discovered skill has a Skill entity"
    - "Skills with requirements.txt have SoftwarePackage entities and requires_package relations"

Storage

Graph data is written to memory/skillchain/graph.jsonl using the same append-only JSONL format as the ontology skill. Reuse scripts/ontology.py from the ontology skill for low-level graph operations.

References

  • references/model.md — Full ontology model (types, relations, constraints)
  • schema/skillchain.yaml — Machine-readable schema for validation

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.05%
按下载量换算2,100

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills