Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

superpowerssuperpowers 开发

Agent Skill

superpowers 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,329

周安装

136

GitHub Stars

10

下载量

1,077
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:superpowers(superpowers 开发)
来源仓库:https://github.com/founderjourney/claude-skills
仓库路径:skills/superpowers
安装命令:
npx skills add https://github.com/founderjourney/claude-skills --skill superpowers
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/founderjourney/claude-skills --skill superpowers

简介

superpowers 用于查找、检索和筛选相关信息,支持在多种 AI 宿主中高效定位所需数据。

  • 适合处理基于关键词或上下文的任务,辅助信息归纳与结果过滤。
  • 通过 GitHub 仓库路径安装,使用标准 npx skills add 命令即可部署。
  • 建议在安装前检查其是否会触发外部请求、系统命令或本地文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Superpowers

A structured software development framework that transforms how coding agents approach development—preventing the "write code immediately" antipattern.

When to Use This Skill

  • Complex feature development
  • Multi-file refactoring
  • Test-driven development
  • Code review processes
  • Systematic debugging
  • Team collaboration with AI

The Philosophy

Traditional AI coding:

User: "Add auth to the app"
AI: *immediately writes 500 lines of code*

Superpowers approach:

User: "Add auth to the app"
AI: "Let me understand requirements first..."
   → Questions → Design → Plan → Execute → Review

Core Workflow

Phase 1: Understanding

1. Ask clarifying questions
2. Explore existing codebase
3. Understand constraints
4. Validate assumptions

Phase 2: Design

1. Create isolated workspace (git branch)
2. Break work into 2-5 minute tasks
3. Define exact specifications
4. Get approval before coding

Phase 3: Execution

1. RED: Write failing test
2. GREEN: Minimum code to pass
3. REFACTOR: Clean up
4. Review before next task

Phase 4: Review

1. Specification compliance check
2. Code quality review
3. Integration verification
4. Branch completion decision

Key Principles

1. Design Before Code

Never write code without understanding:

  • What problem are we solving?
  • What are the constraints?
  • How does it fit existing code?
  • What are the edge cases?

2. Small, Focused Tasks

Each task should be:

  • Completable in 2-5 minutes
  • Single responsibility
  • Independently testable
  • Clear success criteria

3. Test-First Development

RED → GREEN → REFACTOR
  • Write test first
  • Minimum code to pass
  • Clean up afterward
  • Never skip this cycle

4. Systematic, Not Ad-hoc

┌─────────────────────────────────────┐
│ Systematic          vs.    Ad-hoc  │
├─────────────────────────────────────┤
│ Plan then execute   │ Jump in      │
│ Verify with tests   │ Hope it works│
│ Review each step    │ Review at end│
│ Evidence-based      │ Assumption   │
└─────────────────────────────────────┘

5. Evidence Over Assumption

  • Don't assume code works—verify
  • Don't assume understanding—validate
  • Don't assume completion—prove

Skills Library

Testing

  • Unit test patterns
  • Integration testing
  • Test coverage analysis
  • Mocking strategies

Debugging

1. Reproduce the issue
2. Isolate the cause
3. Root cause analysis
4. Verify the fix
5. Prevent regression

Collaboration

  • Brainstorming: Explore options
  • Planning: Structure approach
  • Parallel execution: Multiple agents
  • Review: Quality gates

Meta-Skills

  • Extending the framework
  • Custom skill creation
  • Workflow optimization

How to Use

Starting a Feature

I want to add user authentication.

Help me think through:
1. What auth mechanism?
2. Session vs JWT?
3. Where to store credentials?
4. What existing code to modify?

During Development

I'm implementing the login endpoint.

Current state:
- User model exists
- Password hashing ready

Next: Create POST /login endpoint

Tests first, then implementation.

Code Review

Review my changes:
[paste diff]

Check against:
- Original spec
- Test coverage
- Code quality
- Security concerns

Example: Adding a Feature

1. Discovery

User: "Add forgot password feature"

Agent: "Before we start, let me understand:
1. How should the reset link be delivered? (email?)
2. What's the token expiry? (1 hour?)
3. Should we rate limit attempts?
4. Any existing email infrastructure?"

2. Planning

Tasks:
1. Create password_reset_tokens table
2. Add POST /forgot-password endpoint
3. Add POST /reset-password endpoint
4. Create email template
5. Add rate limiting middleware

3. Execution (Task 1)

## Task: Create password_reset_tokens table

### Test (RED)
- Test migration creates table
- Test table has correct columns

### Implementation (GREEN)
- Create migration file
- Define schema

### Verify
- Run migration
- Check table exists

4. Review

## Task 1 Complete

✓ Migration runs successfully
✓ Table has: id, user_id, token, expires_at
✓ Foreign key constraint works

Ready for Task 2?

Best Practices

  1. Don't Rush: Speed comes from fewer mistakes
  2. Ask Questions: Clarify before implementing
  3. Small Steps: Easier to verify and debug
  4. Test Everything: Trust comes from evidence
  5. Review Often: Catch issues early

Integration

Available for:

  • Claude Code: Via marketplace
  • Codex: Plugin installation
  • OpenCode: Direct integration

Anti-Patterns to Avoid

  • Writing code without understanding requirements
  • Skipping tests "to save time"
  • Large PRs with multiple concerns
  • Assuming code works without verification
  • Declaring done without evidence

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.76%
按下载量换算396

Claude

29.38%
按下载量换算316

Cursor

19.52%
按下载量换算210

Gemini CLI

9.97%
按下载量换算107

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills