我自己在 OpenClaw 工作空间中已安装的 22 个非自带 Skills 进行概览、安装方式与使用示例的脱敏说明。强烈推荐使用AI模型的朋友们立即安装并好好使用!
openclaw 支持自己决策搜索合适的skills,自动安装和使用skills
📂 Openclaw Skills目录
1. 本地安装 Skills(~/.openclaw/skills/)[1] 2. Workspace Skills(~/.openclaw/workspace/skills/)[2] 3. 核心 Skills 详细说明[3] 4. 安装工具推荐 – ClawHub CLI[4] 5. 最佳实践与安全建议[5]
🏠 本地安装 Skills(11 个)
| api-gateway | git clone <<REPO_URL>> ~/.openclaw/skills/api-gateway | ||
| auto-updater | git clone <<REPO_URL>> ~/.openclaw/skills/auto-updater | ||
| finance-news | finance-news setup或 git clone <<REPO_URL>> ~/.openclaw/skills/finance-news && pip install feedparser | ||
| install-opend | git clone <<REPO_URL>> ~/.openclaw/skills/install-opend | ||
| ontology-kb | git clone <<REPO_URL>> ~/.openclaw/skills/ontology-kb | ||
| openapi | git clone <<REPO_URL>> ~/.openclaw/skills/openapipip install moomoo-api或pip install futu-api | ||
| rss-reader | git clone <<REPO_URL>> ~/.openclaw/skills/rss-reader && pip install feedparser | ||
| self-improving | git clone <<REPO_URL>> ~/.openclaw/skills/self-improving | ||
| skill-finder-cn | git clone <<REPO_URL>> ~/.openclaw/skills/skill-finder-cn | ||
| whisper-stt | pip install faster-whisper或git clone <<REPO_URL>> ~/.openclaw/skills/whisper-stt | ||
| yfinance | pip install yfinance或git clone <<REPO_URL>> ~/.openclaw/skills/yfinance |
🏢 Workspace Skills(11 个)
| akshare-stock | pip install akshare或git clone <<REPO_URL>> ~/.openclaw/workspace/skills/akshare-stock | ||
| automation-workflows | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/automation-workflows | ||
| caveman | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/caveman | ||
| clawfeed-2 | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/clawfeed-2 && pip install feedparser | ||
| clawfeed-3 | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/clawfeed-3 && pip install feedparser | ||
| multi-search-engine | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/multi-search-engine | ||
| ontology | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/ontology && pip install networkx | ||
| openclaw-tavily-search | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/openclaw-tavily-search && pip install tavily-python | ||
| self-improving | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/self-improving | ||
| self-improving-agent | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/self-improving-agent | ||
| tavily-search | git clone <<REPO_URL>> ~/.openclaw/workspace/skills/tavily-search && pip install tavily-python |
🔎 核心 Skills 详细说明
1️⃣ openapi – 富途 / moomoo 交易 API
• 安装: git clone <<REPO_URL>> ~/.openclaw/skills/openapi && pip install moomoo-api(或futu-api)• 主要能力: • 📊 行情 API(约 35 条):实时快照、历史 K 线、板块、衍生品、资金流、自选股、到价提醒等 • 💰 交易 API(约 15 条):账户信息、下单/撤单/改单、订单查询、成交查询、持仓/资金查询 • 📬 推送 Handler(9 条):7 条行情实时推送 + 2 条交易推送 • 常用示例(脱敏): # 查询 AAPL 快照
python skills/openapi/scripts/quote/get_snapshot.py US.AAPL
# 查询 HK.00700(腾讯)K 线(1d)最近 10 条
python skills/openapi/scripts/quote/get_kline.py HK.00700 --ktype 1d --num 10
# 下单示例(模拟环境)
python skills/openapi/scripts/trade/place_order.py \
--code US.AAPL --side BUY --quantity 10 --price 150.0• 安全提示:默认使用 模拟环境( TrdEnv.SIMULATE),实盘需手动解锁交易密码,禁止通过 SDKunlock_trade解锁。
2️⃣ finance-news – AI 市场新闻简报
• 安装: finance-news setup(交互式)或git clone <<REPO_URL>> ~/.openclaw/skills/finance-news && pip install feedparser• 功能亮点: • 多市场覆盖(美股、欧洲、日经) • 多数据源(WSJ、Barron's、CNBC、Yahoo Finance) • 基于 Gemini 的 AI 摘要,支持中/英双语 • 支持早间/晚间定时推送、Telegram/WhatsApp 交付 • 常用命令: finance-news briefing --morning # 生成早间简报
finance-news market # 市场概览
finance-news news AAPL # AAPL 相关新闻
finance-news portfolio # 投资组合新闻
3️⃣ multi-search-engine – 多搜索引擎聚合
• 安装: git clone <<REPO_URL>> ~/.openclaw/workspace/skills/multi-search-engine• 搜索引擎列表: • 中文:百度、Bing CN、Bing INT、360、搜狗、微信、头条、集思录 • 全球:Google、DuckDuckGo、Yahoo、Brave、Startpage、Ecosia、Qwant、WolframAlpha、Google HK • 高级用法示例(脱敏): # 基础搜索
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})
# 站内搜索
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})
# 文件类型搜索
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})
# 时间过滤(最近一周)
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})
# 隐私搜索(DuckDuckGo)
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})
# WolframAlpha 计算
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})
4️⃣ ontology – 类型化知识图谱
• 安装: git clone <<REPO_URL>> ~/.openclaw/workspace/skills/ontology && pip install networkx• 核心特性: • 📚 实体类型系统:Person、Project、Task、Event、Document • 🔗 关系链接与约束:实体间关联、业务规则 • 🔍 语义搜索:基于图结构的高级检索 • 🤝 跨 Skill 状态共享:其他 Skill 可直接查询/更新图谱数据 • 常用触发关键词: remember、what do I know about、link X to Y、show dependencies
5️⃣ clawfeed-2 / clawfeed-3 – RSS 聚合器
• 安装: # v2
git clone <<REPO_URL>> ~/.openclaw/workspace/skills/clawfeed-2 && pip install feedparser
# v3(升级版)
git clone <<REPO_URL>> ~/.openclaw/workspace/skills/clawfeed-3 && pip install feedparser• v2 功能:多源 RSS、AI 摘要、智能过滤、自动推送。 • v3 增强:性能优化、更佳 UI、强化 AI 分析、更多配置选项。
6️⃣ self-improving & self-improving-agent
• 目标:捕获错误、分析失败原因、自动生成改进方案,Agent 版支持自我反思与记忆组织。 • 安装: git clone <<REPO_URL>> ~/.openclaw/skills/self-improving(或 workspace)• 触发条件:命令/工具/API 失败、用户纠正、发现更优方法。
7️⃣ whisper-stt – 本地语音转文字
• 安装: pip install faster-whisper(推荐)或git clone <<REPO_URL>> ~/.openclaw/skills/whisper-stt• 特点:离线、无需 API Key、支持 MP3/WAV/M4A/OGG、多语言、使用 faster‑whisper 加速。 • 使用示例: whisper-stt transcribe --file audio.mp3 --output text.txt
8️⃣ yfinance – Yahoo Finance 数据获取
• 安装: pip install yfinance• 能力:实时行情、历史 K 线、公司财务、加密货币、新闻、投资组合分析。 • 示例: python -c "import yfinance as yf; print(yf.Ticker('AAPL').info['regularMarketPrice'])"
🛠️ 安装工具推荐 – ClawHub CLI
# 全局安装
npm i -g clawhub
# 搜索 Skill(示例)
clawhub search "stock analysis"
# 安装 Skill(示例)
clawhub install openapi
# 更新所有已装 Skill
clawhub update --all
# 列出已装 Skill
clawhub list• 默认注册表: https://clawhub.com(可通过--registry覆盖)• 支持版本指定: clawhub install <skill> --version 1.2.3
📌 最佳实践与安全建议
1. 最小权限:Skill 运行时仅分配必要的系统权限,启用 sandbox选项。2. 定期审计:使用 openclaw skills list --outdated检查过期 Skill,及时openclaw skills update。3. 安全配置:在 ~/.openclaw/config.yml中开启security.signature_check与security.sandbox_enabled,仅允许官方或已审计的 Skill 仓库。4. 日志监控:开启 log.level: "info"并通过openclaw logs skills监控异常行为。
免责声明:本文档仅作技术参考,所有示例均已脱敏。实际部署时请根据自身安全策略配置真实凭证与路径。
谢谢关注收藏
⏰ 刚刷到的朋友注意啦!
点击【关注】锁定宝藏库,从此升职加薪不迷路 ✨

特别重要信息
重要网站
理财数据网站:http://vi-money.com/[6]

个人博客网站:https://funkygod.vip/

日更小说网站: https://024novel.com/

AI汇聚信息:https://info.vi-wealth.com/information

纸鹤漂流来信:https://findingx.us

AI编程套餐

MiniMax:Coding plan
🎁 MiniMax 跨年福利来袭!邀好友享 Coding Plan 双重好礼,助力开发体验!
好友立享 9折 专属优惠 + Builder 权益,你赢返利 + 社区特权!
👉 立即参与:https://platform.minimaxi.com/subscribe/coding-plan?code=5oAzx7O6Sr&source=link

GLM: coding plan
🚀 速来拼好模,智谱 GLM Coding 超值订阅,邀你一起薅羊毛!Claude Code、Cline 等 20+ 大编程工具无缝支持,“码力”全开,越拼越爽!立即开拼,享限时惊喜价!
链接:https://www.bigmodel.cn/glm-coding?ic=RTWWS8HOD6

火山方舟:特惠编程plan
方舟 Coding Plan 支持 Doubao、GLM、DeepSeek、Kimi 等模型,工具不限,现在订阅折上9折,低至8.9元,订阅越多越划算!立即订阅:https://volcengine.com/L/vd1xvW2KKgg/[7] 邀请码:2DSAD6JL

轻量云主机长期优惠
RackNerd
☁ 主机显示特惠:只要80元(3TB流量,1vcpu,50GB硬盘)
购买地址[8]:https://my.racknerd.com/aff.php?aff=14942
CloudCone
CloudCone 特惠轻量云主机:购买地址[9]:https://app.cloudcone.com/?ref=12332

📢 腾讯云资源限时福利
有云服务器、CDN、对象存储、网络防护等需求的朋友,欢迎联系下方腾讯云官方销售 👇
✔️ 内部专属折扣,价格更优 ✔️ 量大可谈,支持定制方案 ✔️ 技术咨询与售后无忧

引用链接
[1] 本地安装 Skills(~/.openclaw/skills/): #本地安装-skills[2] Workspace Skills(~/.openclaw/workspace/skills/): #workspace-skills[3] 核心 Skills 详细说明: #核心-skills-详细说明[4] 安装工具推荐 – ClawHub CLI: #安装工具推荐[5] 最佳实践与安全建议: #最佳实践与安全建议[6] http://vi-money.com/: http://vi-money.com/lof/overflow-ranking[7] 等模型,工具不限,现在订阅折上9折,低至8.9元,订阅越多越划算!立即订阅:https://volcengine.com/L/vd1xvW2KKgg/: https://volcengine.com/L/vd1xvW2KKgg/[8] 购买地址: https://my.racknerd.com/aff.php?aff=14942[9] 购买地址: https://app.cloudcone.com/?ref=12332
夜雨聆风