OpenClaw Skills 完整指南(脱敏版)
本文对 OpenClaw 工作空间中已安装的 Skills 做脱敏整理,所有敏感信息(如 API Key、真实仓库地址)都使用 <<PLACEHOLDER>> 占位。 目录 本地安装 Skills(~/.openclaw/skills/) Workspace Skills(~/.openclaw/workspace/skills/) 核心 Skills 详解 安装工具推荐(ClawHub CLI) 最佳实践与安全建议 本地安装 Skills(11 个) 编号 Skill 名称 安装方式 关键功能 1 api-gateway git clone <<REPO_URL>> ~/.openclaw/skills/api-gateway API 网关,统一转发、限流、鉴权 2 auto-updater git clone <<REPO_URL>> ~/.openclaw/skills/auto-updater 自动检查并更新 OpenClaw 与 Skills 3 finance-news finance-news setup 或 git clone <<REPO_URL>> ~/.openclaw/skills/finance-news && pip install feedparser AI 驱动市场新闻简报 4 install-opend git clone <<REPO_URL>> ~/.openclaw/skills/install-opend 自动安装/升级富途、moomoo OpenD 5 ontology-kb git clone <<REPO_URL>> ~/.openclaw/skills/ontology-kb 本体知识库与结构化关系管理 6 openapi git clone <<REPO_URL>> ~/.openclaw/skills/openapi + pip install moomoo-api(或 futu-api) 富途/moomoo OpenAPI(行情与交易) 7 rss-reader git clone <<REPO_URL>> ~/.openclaw/skills/rss-reader && pip install feedparser RSS 订阅、过滤与摘要 8 self-improving git clone <<REPO_URL>> ~/.openclaw/skills/self-improving 错误捕获与改进建议 9 skill-finder-cn git clone <<REPO_URL>> ~/.openclaw/skills/skill-finder-cn 中文关键词搜索与安装推荐 10 whisper-stt pip install faster-whisper 或 git clone <<REPO_URL>> ~/.openclaw/skills/whisper-stt 本地离线语音转文字 11 yfinance pip install yfinance 或 git clone <<REPO_URL>> ~/.openclaw/skills/yfinance Yahoo Finance 行情与财务数据 Workspace Skills(11 个) 编号 Skill 名称 安装方式 关键功能 1 akshare-stock pip install akshare 或 git clone <<REPO_URL>> ~/.openclaw/workspace/skills/akshare-stock A 股行情、财务与量化指标 2 automation-workflows git clone <<REPO_URL>> ~/.openclaw/workspace/skills/automation-workflows Zapier/Make/n8n 自动化流程 3 caveman git clone <<REPO_URL>> ~/.openclaw/workspace/skills/caveman 高压缩沟通模式,节省 token 4 clawfeed-2 git clone <<REPO_URL>> ~/.openclaw/workspace/skills/clawfeed-2 && pip install feedparser RSS 聚合器 v2 5 clawfeed-3 git clone <<REPO_URL>> ~/.openclaw/workspace/skills/clawfeed-3 && pip install feedparser RSS 聚合器 v3(增强版) 6 multi-search-engine git clone <<REPO_URL>> ~/.openclaw/workspace/skills/multi-search-engine 多搜索引擎聚合与高级检索 7 ontology git clone <<REPO_URL>> ~/.openclaw/workspace/skills/ontology && pip install networkx 类型化知识图谱 8 openclaw-tavily-search git clone <<REPO_URL>> ~/.openclaw/workspace/skills/openclaw-tavily-search && pip install tavily-python Tavily 搜索接入 9 self-improving git clone <<REPO_URL>> ~/.openclaw/workspace/skills/self-improving 错误回放与流程改进 10 self-improving-agent git clone <<REPO_URL>> ~/.openclaw/workspace/skills/self-improving-agent 自我反思、自学习与记忆组织 11 tavily-search git clone <<REPO_URL>> ~/.openclaw/workspace/skills/tavily-search && pip install tavily-python Tavily AI 搜索 核心 Skills 详解 openapi(富途/moomoo 交易 API) 安装:git clone <<REPO_URL>> ~/.openclaw/skills/openapi && pip install moomoo-api 能力:行情 API、交易 API、实时推送 Handler 安全建议:默认使用模拟盘(TrdEnv.SIMULATE),实盘必须手动解锁交易密码 # 查询 AAPL 快照 python skills/openapi/scripts/quote/get_snapshot.py US.AAPL # 查询腾讯日 K(最近 10 条) python skills/openapi/scripts/quote/get_kline.py HK.00700 --ktype 1d --num 10 finance-news(AI 新闻简报) 覆盖美股、欧洲、日经等市场 支持中英文摘要、定时推送与多渠道分发 finance-news briefing --morning finance-news market finance-news news AAPL multi-search-engine(多搜索引擎聚合) 中文与全球搜索引擎统一入口 支持站内搜索、时间过滤、文件类型搜索 # 站内搜索 web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"}) # 最近一周 web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"}) ontology(类型化知识图谱) 实体类型:Person、Project、Task、Event、Document 支持关系约束、语义检索与跨 Skill 状态共享 常见触发词:remember、link X to Y、show dependencies clawfeed-2 / clawfeed-3(RSS 聚合器) clawfeed-2:多源 RSS、AI 摘要、自动推送 clawfeed-3:在 v2 基础上优化性能、增强分析和配置能力 self-improving / self-improving-agent 捕获失败、归因分析、自动生成改进方案 Agent 版支持反思与记忆组织 whisper-stt(本地语音转文字) 离线运行、无需 API Key、支持多格式音频 whisper-stt transcribe --file audio.mp3 --output text.txt yfinance(Yahoo Finance 数据) 提供实时/历史行情、公司财务、加密资产等数据 python -c "import yfinance as yf; print(yf.Ticker('AAPL').info['regularMarketPrice'])" 安装工具推荐:ClawHub CLI npm i -g clawhub clawhub search "stock analysis" clawhub install openapi clawhub update --all clawhub list 默认注册表:https://clawhub.com 支持版本安装:clawhub install <skill> --version 1.2.3 最佳实践与安全建议 脱敏发布:文档与代码示例统一使用占位符。 最小权限:只授予技能必要权限,启用 sandbox。 定期审计:检查过期技能并及时更新。 安全配置:开启签名校验和沙盒隔离。 日志监控:长期观察技能异常行为。 免责声明:本文仅做技术参考,示例均已脱敏,请按实际安全策略配置生产环境。 ...