EasyGlobe EasyGlobe
返回 Skills Hub

Skill 详情

Superpowers 开发流程 Skill

Superpowers · github

用计划、子 Agent 和 TDD 组织多步骤开发流程。

Skill 概览

用计划、子 Agent 和 TDD 组织多步骤开发流程。

Superpowers 开发流程 相关搜索词

本页主要服务搜索 Superpowers 开发流程 Skill、下载、安装、README、Skill URL 和使用教程的用户。

Superpowers 开发流程Superpowers 开发流程 SkillSuperpowers 开发流程 SkillsSuperpowers 开发流程 下载Superpowers 开发流程 安装Superpowers 开发流程 使用教程Superpowers 开发流程 READMESuperpowers 开发流程 Skill URLSuperpowers 开发流程 Claude SkillSuperpowers 开发流程 Codex Skill

资源类型

Agent Skills

所属分类

Development 开发、Meta & Tools 元工具、Testing 测试

标签

规划、子 Agent、TDD

下载的是 EasyGlobe 保存的本地 Markdown skill 文件,可随站点一起部署到 GitHub 和 Cloudflare。

详细 Skill 介绍

Superpowers 开发流程 的定位

Superpowers 开发流程 是一个面向 Development 开发、Meta & Tools 元工具、Testing 测试 场景的 AI Agent skill 资源。根据当前归档内容,它的主要价值是:用计划、子 Agent 和 TDD 组织多步骤开发流程。。用户通常会搜索“Superpowers 开发流程 是什么”“Superpowers 开发流程 怎么安装”“Superpowers 开发流程 怎么使用”“Superpowers 开发流程 下载”以及 Claude Skills、Codex Skills、Gemini Skills、Kimi Skills、GLM Skills 等组合关键词,因此本页把 README、Skill URL、本地下载文件、使用方法和适用平台放在同一个详情页中,方便判断它是否适合自己的工作流。

README 核心说明

Superpowers is a complete software development methodology for your coding agents, built on top of a set of composable skills and some initial instructions that make sure your agent uses them.

README 能力说明

**Testing**

  • **test-driven-development** - RED-GREEN-REFACTOR cycle (includes testing anti-patterns reference)

**Debugging**

  • **systematic-debugging** - 4-phase root cause process (includes root-cause-tracing, defense-in-depth, condition-based-waiting techniques)
  • **verification-before-completion** - Ensure it's actually fixed

**Collaboration**

  • **brainstorming** - Socratic design refinement
  • **writing-plans** - Detailed implementation plans
  • **executing-plans** - Batch execution with checkpoints
  • **dispatching-parallel-agents** - Concurrent subagent workflows
  • **requesting-code-review** - Pre-review checklist
  • **receiving-code-review** - Responding to feedback
  • **using-git-worktrees** - Parallel development branches...

README 使用说明

1. **brainstorming** - Activates before writing code. Refines rough ideas through questions, explores alternatives, presents design in sections for validation. Saves design document.

2. **using-git-worktrees** - Activates after design approval. Creates isolated workspace on new branch, runs project setup, verifies clean test baseline.

3. **writing-plans** - Activates with approved design. Breaks work into bite-sized tasks (2-5 minutes each). Every task has exact file paths, complete code, verification steps.

4. **subagent-driven-development** or **executing-plans** - Activates with plan. Dispatches fresh subagent per task with two-stage review (spec compliance, then code quality), or executes in batches with human checkpoints.

5....

README 安装与配置线索

Installation differs by harness. If you use more than one, install Superpowers separately for each one.

README 安装与配置线索

Superpowers updates are somewhat coding-agent dependent, but are often automatic.

适用场景和工作流价值

从分类和标签看,Superpowers 开发流程 主要覆盖 Development 开发、Meta & Tools 元工具、Testing 测试,关键词包括 规划、子 Agent、TDD。它适合被整理成团队 SOP、AI Agent 提示词、Claude Skill、Codex Skill 或其他模型平台可复用的操作说明。实际落地时,可以先阅读本页的 README 摘要,确认它解决的问题、输入输出、运行环境和限制条件,再通过 Skill URL 查看原项目的最新说明。对于需要长期复用的场景,本地 Markdown 下载文件可以作为归档版本,便于团队内部评审、二次改写或放入自己的 agent skills 仓库。

安装、使用和平台判断

Installation differs by harness. If you use more than one, install Superpowers separately for each one. 1. brainstorming - Activates before writing code. Refines rough ideas through questions, explores alternatives, presents design in sections for validation. Saves design document. 2. using-git-worktrees - Activates after design approval. Creates isolated workspace on new branch, runs project setup, verifies clean test baseline. 3. writing-plans - Activates with approved design. Breaks work into bite-sized tasks (2-5 minutes each). Every task has exact file paths, complete code, verification steps. 4. subagent-driven-development or executing-plans - Activates with plan. Dispatches fresh subagent per task with two-stage review (spec compliance, then code quality), or executes in batches with human checkpoints. 5. test-driven-development - Activates during implementation.......

安装方式

Installation differs by harness. If you use more than one, install Superpowers separately for each one.

使用方式

1. **brainstorming** - Activates before writing code. Refines rough ideas through questions, explores alternatives, presents design in sections for validation. Saves design document.

2. **using-git-worktrees** - Activates after design approval. Creates isolated workspace on new branch, runs project setup, verifies clean test baseline.

3. **writing-plans** - Activates with approved design. Breaks work into bite-sized tasks (2-5 minutes each). Every task has exact file paths, complete code, verification steps.

4. **subagent-driven-development** or **executing-plans** - Activates with plan. Dispatches fresh subagent per task with two-stage review (spec compliance, then code quality), or executes in batches with human checkpoints.

5. **test-driven-development** - Activates during implementation. Enforces RED-GREEN-REFACTOR: write failing test, watch it fail, write minimal code, watch it pass, commit. Deletes code written before tests.

6. **requesting-code-review** - Activates between tasks. Reviews against plan, reports issues by severity. Critical issues block progress.

7. **finishing-a-development-branch** - Activates when tasks complete. Verifies tests, presents options (merge/PR/keep/discard), cleans up worktree.

**The agent checks for relevant skills before any task.** Mandatory workflows, not suggestions.

能力范围

**Testing**

  • **test-driven-development** - RED-GREEN-REFACTOR cycle (includes testing anti-patterns reference)

**Debugging**

  • **systematic-debugging** - 4-phase root cause process (includes root-cause-tracing, defense-in-depth, condition-based-waiting techniques)
  • **verification-before-completion** - Ensure it's actually fixed

**Collaboration**

  • **brainstorming** - Socratic design refinement
  • **writing-plans** - Detailed implementation plans
  • **executing-plans** - Batch execution with checkpoints
  • **dispatching-parallel-agents** - Concurrent subagent workflows
  • **requesting-code-review** - Pre-review checklist
  • **receiving-code-review** - Responding to feedback
  • **using-git-worktrees** - Parallel development branches
  • **finishing-a-development-branch** - Merge/PR decision workflow
  • **subagent-driven-development** - Fast iteration with two-stage review (spec compliance, then code quality)

**Meta**

  • **writing-skills** - Create new skills following best practices (includes testing methodology)
  • **using-superpowers** - Introduction to the skills system

支持平台

这个 skill 可以作为以下 AI Agent、模型工作流或团队 SOP 的参考模板使用。

Claude SkillsCodex SkillsGemini SkillsKimi SkillsGLM SkillsChatGPT Skills

配置与更新

Superpowers updates are somewhat coding-agent dependent, but are often automatic.

README 命令示例

bash
/plugin install superpowers@claude-plugins-official
bash
/plugin marketplace add obra/superpowers-marketplace
bash
/plugin install superpowers@superpowers-marketplace

标签

规划子 AgentTDD

常见问题 FAQ

What:Superpowers 开发流程 Skill 是什么?

用计划、子 Agent 和 TDD 组织多步骤开发流程。

Who:Superpowers 开发流程 适合谁使用?

适合需要处理 Development 开发、Meta & Tools 元工具、Testing 测试 工作流的团队、运营人员、开发者或 AI Agent。

When:什么时候使用 Superpowers 开发流程 Skill?

当任务涉及 规划、子 Agent、TDD,或需要把对应能力沉淀为 Claude Skills、Codex Skills、Gemini Skills、Kimi Skills、GLM Skills 或团队 SOP 时使用。

如何下载 Superpowers 开发流程 Skill?

可以使用页面顶部或 Skill 信息区的“下载 Skill 文件”按钮下载 EasyGlobe 保存的本地 Markdown 文件,文件名为 manual-superpowers.md。

Superpowers 开发流程 Skill 怎么安装?

请查看本页“安装方式”模块;如果归档 README 没有明确安装章节,可以通过 Skill URL 打开原始项目,并按官方 README、平台文档或 marketplace 页面完成安装。

Superpowers 开发流程 Skill 怎么使用?

请查看本页“使用方式”“能力范围”和 README 摘要模块。页面会把归档 README 中识别出的使用说明、命令示例和适用工作流整理出来。

Superpowers 开发流程 Skill 支持 Claude、Codex、Gemini、Kimi 和 GLM 吗?

本页把它整理为可复用的 AI Agent skill 资料,可作为 Claude Skills、Codex Skills、Gemini Skills、Kimi Skills、GLM Skills、ChatGPT Skills 或团队 SOP 的参考模板;实际可用性以 Skill URL 中的官方说明为准。

Superpowers 开发流程 Skill 的 Skill URL 在哪里?

Skill URL 保留在页面左侧的 Skill 信息区,也可以点击页面顶部的“打开原始 Skill”按钮访问原始项目或官方页面。

本地下载文件和 Skill URL 有什么区别?

本地下载文件是 EasyGlobe 保存的 Markdown 版本,便于归档、阅读和复用;Skill URL 指向原始项目、官方文档或 marketplace 页面,适合查看最新说明和官方安装方式。