superpowers-cn

中文AI工作流框架 - 先理解需求再执行,让AI做事更有逻辑

3,880 stars

Best use case

superpowers-cn is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

中文AI工作流框架 - 先理解需求再执行,让AI做事更有逻辑

Teams using superpowers-cn should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/superpowers-cn/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/aibgsps-sys/superpowers-cn/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/superpowers-cn/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How superpowers-cn Compares

Feature / Agentsuperpowers-cnStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

中文AI工作流框架 - 先理解需求再执行,让AI做事更有逻辑

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# 超能力 CN (Superpowers CN)

中文AI工作流框架 - 让AI做事更有逻辑、更有章法。

## 核心理念

**不是直接写代码,而是先理解 → 再设计 → 最后执行**

1. **澄清需求** - 问清楚你要什么
2. **制定设计** - 给出具体方案等你确认
3. **分解任务** - 把大任务拆成小步骤
4. **执行验证** - 逐步完成并检查结果

## 工作流阶段

### 阶段一:澄清 (Clarify)
当接到任务时,不要立刻动手,先问:
- "你想解决什么问题?"
- "最终效果是什么样的?"
- "有什么限制或要求?"

### 阶段二:设计 (Plan)
制定设计方案,包括:
- 文件结构
- 核心模块
- 实现步骤
- 风险点

### 阶段三:执行 (Execute)
- 按步骤执行
- 每步验证
- 及时汇报进度

### 阶段四:审核 (Review)
- 检查是否符合需求
- 代码质量
- 是否有遗漏

## 触发词

"开发"、"写代码"、"做个XX"、"实现XX功能"、"帮我做"、"工作流"、"任务分解"

## 安装

将此目录加入 OpenX skills 配置即可。

## 示例工作流

```
用户:帮我做一个网站
AI:[澄清] 网站是什么类型的?个人站还是企业站?
用户:个人博客
AI:[设计] 我计划用HTML+CSS+JS,3个文件搞定
用户:好的
AI:[执行] 
1. 创建 index.html
2. 创建 style.css  
3. 创建 script.js
[审核] 博客功能完整,符合需求
```

## 状态

生产就绪 (2026-03-28)

Related Skills

superpowers-executing-plans

3891
from openclaw/skills

Use when executing a written implementation plan in the current session with sequential task execution and review checkpoints - for when subagent-driven mode is not available

superpowers-writing-plans

3891
from openclaw/skills

Use when you have a spec or requirements for a multi-step task, before touching code - guides writing comprehensive implementation plans with bite-sized tasks, TDD, and DRY/YAGNI principles

superpowers-verification

3891
from openclaw/skills

Use when about to claim any work is complete, fixed, passing, or successful - requires running fresh verification commands and reading actual output before making any success claims; evidence before assertions always

superpowers-tdd

3891
from openclaw/skills

Use when implementing any feature or bugfix, before writing implementation code - enforces RED-GREEN-REFACTOR cycle: write failing test first, verify it fails, write minimal code, verify it passes, then refactor

superpowers-systematic-debugging

3891
from openclaw/skills

Use when encountering any bug, test failure, or unexpected behavior - enforces systematic four-phase debugging: root cause investigation, pattern analysis, hypothesis testing, and evidence-based fix verification

superpowers-subagent-dev

3891
from openclaw/skills

Use when executing implementation plans with independent tasks - coordinates task execution by dispatching subagents per task with verification checkpoints, adapted for OpenClaw's isolated session model

superpowers-parallel-agents

3891
from openclaw/skills

Use when facing 2 or more independent tasks that can be worked on without shared state - dispatches parallel subagents using sessions_spawn for concurrent investigation and execution, adapted for OpenClaw

superpowers-overview

3891
from openclaw/skills

Use when starting any development work or when unsure which superpowers development skill to use - provides entry point and navigation to the full superpowers skill suite for OpenClaw agents

superpowers-isolated-workspace

3891
from openclaw/skills

Use when starting feature work that needs isolation from current workspace - creates isolated git branches with clean setup and safety verification, adapted for OpenClaw environments

superpowers-finishing-branch

3891
from openclaw/skills

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - presents structured options for merge, PR, or cleanup; adapted for OpenClaw git workflow without worktrees

superpowers-brainstorming

3891
from openclaw/skills

Use before any creative work - creating features, building components, adding functionality, or modifying behavior - guides through exploration, questioning, design proposal, and spec documentation before any implementation

superpowers-requesting-code-review

3891
from openclaw/skills

Use when completing tasks, implementing major features, or before merging - dispatches code review subagent to catch issues before they cascade, adapted for OpenClaw sessions_spawn model