Skill Loader
Description
Universal skill adapter for OpenClaw - load Claude Code, Codex, and Gemini CLI skills
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Skill Loader
Universal skill adapter for OpenClaw - load Claude Code, Codex, and Gemini CLI skills seamlessly
[](https://opensource.org/licenses/MIT) [](https://github.com/ythx-101/skill-loader)
**打通 AI Agent 生态 - 让不同平台的 skills 无缝互通**
🎯 问题
Claude Code、Codex、Gemini CLI 的 skills 格式不同,不能直接在 OpenClaw 里用:
| 差异 | Claude Code | OpenClaw |
|---|---|---|
| 文件结构 | .claude-plugin/SKILL.md |
skills/name/SKILL.md |
| 工具调用 | create_file() |
write() |
| 加载方式 | 启动时扫描 | 运行时按需 |
✨ 解决方案
四步自动适配:**检测 → 解析 → 映射 → 注入**
- ✅ 零修改:不改原 skill 代码
- ✅ 自动化:用户无感知
- ✅ 可扩展:支持多种 skill 格式
🚀 快速开始
安装
# Clone 到你的 OpenClaw skills 目录
cd /path/to/openclaw/workspace/skills
git clone https://github.com/ythx-101/skill-loader.git
使用
# 扫描所有可用的 skills
python3 skill-loader/loader.py scan
# 加载指定 skill
python3 skill-loader/loader.py load /path/to/skill
# 查找触发词匹配的 skill
python3 skill-loader/loader.py find "画个架构图"
示例
# 1. 克隆一个 Claude Code skill
cd skills
git clone https://github.com/axtonliu/axton-obsidian-visual-skills.git obsidian-visual
# 2. 自动识别并加载
python3 skill-loader/loader.py load obsidian-visual
# 输出:
# [
# {
# "name": "excalidraw-diagram",
# "description": "...",
# "triggers": ["画图", "Excalidraw", ...],
# "content": "...",
# "source_type": "claude-marketplace"
# },
# ...
# ]
📦 支持的格式
| 格式 | 状态 | 检测标志 |
|---|---|---|
| Claude Code Single | ✅ 已支持 | .claude-plugin/SKILL.md |
| Claude Marketplace | ✅ 已支持 | .claude-plugin/marketplace.json |
| Codex | ⏳ 计划中 | codex.json |
| Gemini CLI | ⏳ 计划中 | skill.yaml |
🚀 使用方法
方式1: 克隆外部 skill
cd /root/clawd/skills
git clone https://github.com/user/some-claude-skill.git
OpenClaw 会自动识别并加载。
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11