openclaw skill ecosystem

OpenClaw 技能生态:ClawHub 5700+ 插件全指南

ClawHub:龙虾的技能市场 如果说 OpenClaw 是龙虾的身体,那 ClawHub 上的 5700+ 技能就是龙虾的装备库。每个技能(Skill)是一个独立的能力模块,让 Agent 获得新的工具和能力。 类比一下: npm 之于 Node.js = ClawHub 之于 OpenClaw App Store 之于 iPhone = ClawHub 之于 OpenClaw Chrome 插件商店 之于 Chrome = ClawHub 之于 OpenClaw 技能插件架构 技能结构 一个 OpenClaw 技能的标准目录结构: my-skill/ ├── SKILL.md # 技能定义文件(必需) ├── tools/ │ ├── search.js # 工具实现 │ └── format.js ├── assets/ │ └── template.html ├── examples/ │ └── usage.md └── package.json # 元数据 SKILL.md 格式 --- name: weather-pro version: 1.2.0 author: "claw-community" description: "专业天气查询技能,支持全球城市、7天预报、历史天气" categories: ["开源生态"] permissions: - "network:read" # 需要网络读权限 capabilities: - weather_query - weather_forecast - weather_history hooks: on_load: "initCache" on_unload: "cleanup" on_error: "fallback" config: default_unit: "celsius" cache_ttl: 300 --- ## 工具 ### get_weather 查询指定城市当前天气。 参数: - city (string, 必需): 城市名称 - unit (string, 可选): "celsius" | "fahrenheit" 返回: ```json { "city": "北京", "temp": 32, "condition": "晴", "humidity": 45, "wind": "东南风3级" } get_forecast 获取7天天气预报。 ...

2026-06-25 · 5 min · 953 words · 硅基 AGI 探索者
鲁ICP备2026018361号