<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>Superpowers - 标签 - cfanzp学习笔记</title>
    <link>https://cfanzp008.github.io/tags/superpowers/</link>
    <description>Superpowers - 标签 - cfanzp学习笔记</description>
    <generator>Hugo -- gohugo.io</generator><language>zh-CN</language><managingEditor>cfan.zp@qq.com (cfanzp)</managingEditor>
      <webMaster>cfan.zp@qq.com (cfanzp)</webMaster><lastBuildDate>Wed, 08 Apr 2026 18:04:31 &#43;0800</lastBuildDate><atom:link href="https://cfanzp008.github.io/tags/superpowers/" rel="self" type="application/rss+xml" /><item>
  <title>Superpowers 自动化使用指南</title>
  <link>https://cfanzp008.github.io/superpowers-automation-guide/</link>
  <pubDate>Wed, 08 Apr 2026 18:04:31 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/superpowers-automation-guide/</guid>
  <description><![CDATA[Superpowers 自动化使用指南 什么是 Superpowers Superpowers 是 OpenCode 平台推出的一套 AI 技能框架，旨在为 AI Agent 提供专家级能力。通过 Superpowers，用户可以将特定领域的知识和工作流封装为可重用的技能（Skills），让 AI 在执行任务时能够自动调用这些技能。
Superpowers 的核心理念是「让 AI 具备专业领域知识」，就像为 AI 配备了一个随身携带的专家团队。
Superpowers 架构 技能类型 Superpowers 将技能分为两类：
Rigid Skills（刚性技能）：严格遵循预设流程，如 TDD（测试驱动开发）、Debugging
使用时必须完全按照规范执行 不允许随意调整流程 Flexible Skills（柔性技能）：可以灵活适应上下文，如 Patterns
可以根据实际情况调整实现方式 需要理解技能背后的原理 技能层级 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 Superpowers ├── 基础技能（Built-in） │ ├── playwright │ ├── frontend-ui-ux │ ├── git-master │ ├── dev-browser │ ├── review-work │ └── ai-slop-remover │ ├── 用户技能（User-installed） │ ├── doc-coauthoring │ ├── blog-do-publish │ ├── pdf │ ├── docx │ ├── xlsx │ ├── pptx │ ├── mcp-builder │ └── article-writer │ └── 超级技能（Superpowers） ├── using-superpowers ├── brainstorming ├── test-driven-development ├── systematic-debugging ├── verification-before-completion ├── requesting-code-review ├── receiving-code-review ├── finishing-a-development-branch ├── writing-plans ├── executing-plans ├── subagent-driven-development ├── writing-skills ├── skill-creator ├── using-git-worktrees └── dispatching-parallel-agents 如何使用 Superpowers 1.]]></description>
</item>
<item>
  <title>Superpowers：让 AI Agent 获得专家级能力的技能框架</title>
  <link>https://cfanzp008.github.io/superpowers-opencode-introduction/</link>
  <pubDate>Tue, 07 Apr 2026 11:28:09 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/superpowers-opencode-introduction/</guid>
  <description><![CDATA[Superpowers：让 AI Agent 获得专家级能力的技能框架 背景简介 在 AI 辅助软件开发领域，如何让 AI Agent 像人类专家一样工作一直是核心挑战。传统的 AI 编程工具虽然功能强大，但在处理复杂任务时往往缺乏系统性方法——它们可能会直接开始编码，而不是先理解需求、规划方案。
Superpowers 是由 Keyboardio 联合创始人 Jesse Vincent 开发的一个 AI Agent 技能框架和软件开发方法论。该项目在 GitHub 上已获得超过 134000 个 Star，成为 AI 编程工作流领域的标杆工具。
什么是 Superpowers Superpowers 是一个为 AI 编程 Agent 设计的技能框架和工作流工具集。它的核心理念是：将人类专家的开发习惯和工作流程传授给 AI Agent，让 AI 能够系统性地处理复杂任务，而不是盲目跳入编码。
核心设计理念 Superpowers 基于一个关键洞察：AI Agent 在处理复杂代码时经常失败，但通过特定的技能（Skills）引导，AI 可以表现得像人类专家一样。这些技能封装了：
系统性思考：先理解需求，再制定计划 质量控制：在实现前先验证，在修改后确认 工具使用：正确使用调试、测试、审查等工具 迭代优化：持续改进而非一次完成 技能（Skills）机制 Superpowers 的技能系统受 Simon Willison 提出的 Claude Skills 概念启发。每个技能是一个独立的指令集，可以被 AI Agent 按需加载和使用。技能的核心文件是 SKILL.md，其中包含：
技能的用途说明 使用场景和触发条件 具体的工作流程和步骤 工具映射说明 思维导图：Superpowers 整体架构 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 ┌─────────────────────────────────────────┐ │ Superpowers 框架 │ └─────────────────────────────────────────┘ │ ┌─────────────────────────────────┼─────────────────────────────────┐ │ │ │ ▼ ▼ ▼ ┌─────────────────────┐ ┌─────────────────────┐ ┌─────────────────────┐ │ 核心概念 │ │ 主要技能 │ │ 工具集成 │ │ │ │ │ │ │ └─────────────────────┘ └─────────────────────┘ └─────────────────────┘ │ │ │ ├─技能框架(Skills) ├─brainstorming ├─OpenCode ├─Agent工作流 ├─verification-before-completion ├─Claude Code ├─工具映射 ├─receiving-code-review ├─Codex └─Bootstrap机制 ├─requesting-code-review └─MCP Servers ├─test-driven-development ├─systematic-debugging └─.]]></description>
</item>
</channel>
</rss>
