Superpowers 14 个 Skills 全解读:AI 编程纪律框架的完整拆解

Superpowers 14 个 Skills 全解读:AI 编程纪律框架的完整拆解 最核心的价值不是某个单独 skill,而是这条链路: 需求澄清 → 设计确认 → 计划拆解 → 隔离开发 → TDD → review → 验证 → 收尾 这条链路正好针对 AI coding 最常见的失败模式:过早实现、缺少测试、猜测修复、跳过验证、过早宣布成功。 注意:要经常更新 skills 的代码版本和自己结合实际使用,将自己的经验和要求增加到 skills,以便更好的编程和业务准确性,最好是将自身业务的要求单独作为 skills 引入到编程工具里。 Superpowers 是一个给 AI 编程 Agent 的完整软件开发方法论,由一组可组合 skills 和初始指令组成。它的基本工作流是:先澄清需求、写设计、写实施计划、TDD 实现、代码审查、验证、最后合并/PR/清理。 该不该装?三层判断 层面 判断 技术层面 不必须。没有它,AI coding agent 也能写代码。 工程质量层面 对复杂项目,强烈建议。它强制 TDD、审查、验证,能减少"AI 自信但没验证"的问题。 Superpowers 自身规则层面 一旦安装并启用,它的 using-superpowers 明确要求:只要有 1% 可能适用,就必须先调用相关 skill;README 也说这些是 mandatory workflows, not suggestions。 我的建议:重项目安装,轻任务选择性使用;团队协作/生产代码建议默认启用;纯探索、一次性原型可以不用或显式绕开。 1. using-superpowers — 入口规则 这个 skill 不是某个开发动作,而是**"调度所有 skills 的总开关"**。它要求 agent 在任何任务开始前先判断是否有相关 skill;只要有一点可能适用,就要先调用 skill,而不是凭经验直接干。它还规定了优先级:用户明确指令最高,Superpowers skills 其次,默认系统行为最低。 ...

2026-05-17 · 4 min · 682 words · FunkyGod

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。 定期审计:检查过期技能并及时更新。 安全配置:开启签名校验和沙盒隔离。 日志监控:长期观察技能异常行为。 免责声明:本文仅做技术参考,示例均已脱敏,请按实际安全策略配置生产环境。 ...

2026-04-14 · 2 min · 398 words · FunkyGod