Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计异常

superplansuperplan 搜索

Agent Skill

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

总安装

376

周安装

16

GitHub Stars

3

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/asteroid-belt-llc/skills --skill superplan

简介

superplan 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持通过关键词、任务场景或来源线索进行信息检索与筛选。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • superplan 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Superplan: Comprehensive Feature Planning

Overview

Superplan creates detailed, executable implementation plans that enable parallel agent execution. Each plan includes everything needed to implement a feature: requirements, architecture, code changes, tests, and acceptance criteria.

When to Use Superplan

  • Starting a new feature or epic
  • Complex tasks requiring multiple phases
  • Tasks that could benefit from parallel execution by multiple agents
  • When you need comprehensive documentation of implementation decisions

Core Workflow

┌─────────────────────────────────────────────────────────────────────┐
│                         SUPERPLAN WORKFLOW                          │
├─────────────────────────────────────────────────────────────────────┤
│  1. INTAKE          →  Gather story/requirements from user          │
│  2. DETECT          →  Check CLAUDE.md/AGENTS.md, then scan         │
│  3. INTERVIEW       →  Ask clarifying questions                     │
│  4. RESEARCH        →  Look up best practices (BYPASS if docs OK)   │
│  5. EXPLORE         →  Understand existing codebase patterns        │
│  6. REFACTOR ASSESS →  Evaluate if refactoring should precede work  │
│  7. ARCHITECT       →  Design solution with diagrams                │
│  8. PHASE           →  Break into parallelizable phases + ESTIMATES │
│  9. DETAIL          →  Specify code deltas per phase                │
│ 10. TEST            →  Define failing tests per phase (TDD)         │
│ 11. DOCUMENT        →  Write plan to plans/NNN-feature/plan.md │
└─────────────────────────────────────────────────────────────────────┘

Reference Index - MUST READ Before Each Phase

References are loaded on demand. Read BEFORE starting the relevant phase.

WhenReferenceWhat You Get
Before ANY parallel operationSub-Agent SyntaxExact prompts for launching parallel agents
Phase 3: InterviewInterview GuideQuestion templates by feature size
Phase 5: ExploreExplore PromptsExact prompts for codebase exploration agents
Phase 6: RefactorRefactoring ResearchMikado, Strangler Fig, Branch by Abstraction
Phase 7: ArchitectArchitecture TemplatesAPI, data model, component tree templates
Phase 9: DetailTask Micro-Structure5-step TDD format for each task
Phase 10: TestTDD DisciplineTDD rules, rationalizations, red flags
Phase 10: TestTesting PyramidUnit/integration/E2E examples
Phase 10: TestCommand OutputsExpected test output format
Phase 11: DocumentPlan TemplateComplete plan file structure

DO NOT SKIP REFERENCES. They contain exact prompts, templates, and formats that are NOT duplicated here.


CRITICAL: Parallel Execution with Sub-Agents

YOU MUST USE SUB-AGENTS for parallelizable operations.

STOP. Read Sub-Agent Syntax NOW before launching any parallel operation.
OperationAction
Independent file readsMultiple Read tasks in single message
Code searchesParallel Explore agents
Parallel phases (1A, 1B, 1C)Parallel general-purpose agents

Poker Planning Estimates

All phases MUST include Fibonacci estimates: 1, 2, 3, 5, 8, 13, 21

SizeMeaningExample
1TrivialConfig value, typo fix
2SmallSingle file, simple function
3MediumMulti-file, new component
5LargeFeature module, API endpoint
8X-LargeComplex feature with dependencies
13Epic chunkMajor subsystem change
21Too bigSplit into smaller tasks

Phase 1: INTAKE - Gather Requirements

Ask the user to provide their story/requirements:

  • Copy/paste story text directly
  • Provide a link to a ticket (Jira, Linear, GitHub Issue)
  • Use an MCP tool to fetch the story
  • Describe the feature verbally

Output: Source, Type (User Story/Technical Task/Bug Fix/Epic), Raw Requirements, Initial Understanding.


Phase 2: DETECT - Technology Stack Analysis

Step 1: Check for CLAUDE.md or AGENTS.md

If found AND complete (all boxes checked), BYPASS codebase scan AND Phase 4 Research.

Completeness checklist:

  • Primary language(s) identified
  • Major framework(s) identified
  • Build/package tools identified
  • Quality tools identified (linter, formatter, type checker)
  • Test framework identified

Step 2: Detection (if needed)

Launch parallel Explore agents to detect: Languages, Frameworks, Build Tools, Quality Tools, Testing Tools.

Output: Tech stack summary, bootstrap requirements, research bypass status.


Phase 3: INTERVIEW - Clarifying Questions

Ask 3-5 questions, then WAIT FOR ANSWERS.

Required Questions:

  1. "What is the MVP? What can we defer to v2?"
  2. "What is explicitly OUT of scope?"
  3. "Are there performance/security requirements?"
  4. "What test coverage do you expect?"
STOP. Read Interview Guide NOW for question templates before asking.

Phase 4: RESEARCH - Best Practices Lookup

BYPASS if DETECT found complete tech stack in CLAUDE.md/AGENTS.md.

Otherwise, launch parallel web searches:

  • [Language] [YEAR] best practices
  • [Framework] [YEAR] patterns
  • [Framework] security guidelines

Output: Sources consulted, key findings, specific recommendations.


Phase 5: EXPLORE - Codebase Analysis

STOP. Read Explore Prompts NOW for exact agent prompts before launching.

Launch 3 parallel Explore agents:

  1. Pattern Discovery - Find similar implementations
  2. Integration Points - Identify files to modify
  3. Technical Debt Scan - Check for issues in affected areas

Output: Similar implementations table, integration points table, technical debt table.


Phase 6: REFACTOR/REWRITE ASSESSMENT

Evaluate if refactoring should precede feature work.

STOP. Read Refactoring Research NOW for methodologies before assessing.

Confidence Levels

LevelDescriptionAction
LOWCode is cleanProceed to ARCHITECT
MEDIUMSome smells presentNote debt, ask user preference
HIGHSignificant issuesRecommend refactor phases
CRITICALMajor rewrite neededPropose Mikado/Strangler Fig

If HIGH or CRITICAL, ask permission to add refactoring phases.


Phase 7: ARCHITECT - Solution Design

STOP. Read Architecture Templates NOW for templates before designing.

For each component, answer:

  • What new components are being added?
  • How do they connect to existing components?
  • What is the data flow?

Required outputs:

  • System context diagram
  • API design (if applicable) with all response codes
  • Data model (if applicable) with migration scripts
  • Component tree (if UI)

Phase 8: PHASE - Parallel Work Breakdown

Break work into phases with poker estimates that can be executed in parallel.

Phase Design Principles

  1. Independence: Phases executable without waiting for others
  2. Testability: Each phase independently testable
  3. Estimated Size: Target 3-8 points per phase
  4. Quality Gated: Each phase includes Definition of Done
  5. Context Managed: Each phase ends with a CHECKPOINT for compaction

CHECKPOINT: Context Compaction Between Phases

EVERY phase MUST end with a CHECKPOINT instruction. This enables /superbuild to run /compact automatically in BUILD-ALL mode, preserving context across long implementations.

CHECKPOINT Format

- [ ] **CHECKPOINT: Run `/compact focus on: [Phase N] complete, [key artifacts], [Phase N+1] goals`**

CHECKPOINT Focus Points

The focus directive tells /compact what to preserve:

  • Completed work: What was built, key decisions made
  • Key artifacts: File paths, API contracts, data models created
  • Next phase goals: What the upcoming phase needs to accomplish
  • Blockers/dependencies: Any issues that affect future phases

Example Phase with CHECKPOINT

## Phase 1: Authentication System
- [ ] Task 1.1: Create auth models in `src/models/auth.ts`
- [ ] Task 1.2: Implement JWT handling in `src/services/jwt.ts`
- [ ] Task 1.3: Add auth middleware in `src/middleware/auth.ts`
- [ ] **CHECKPOINT: Run `/compact focus on: Phase 1 complete, auth models and JWT service created, Phase 2 needs API endpoints`**

## Phase 2: API Endpoints
- [ ] Task 2.1: Create `/api/auth/login` endpoint
...

Output: Phase dependency diagram + table with estimates:

PhaseNameDepends OnParallel WithEstimateStatus

Phase 9: DETAIL - Code Deltas Per Phase

STOP. Read Task Micro-Structure NOW for 5-step TDD format before detailing tasks.

Code Delta Format

  • path/to/file.ts (CREATE) - new file with full content
  • path/to/file.ts:45-67 (MODIFY) - existing file with line range and diff

NEVER use pseudocode, //... rest of file, or vague descriptions.


Phase 10: TEST - TDD Acceptance Criteria

STOP. Read Command Outputs NOW for expected output format before writing tests.

Testing Pyramid

  • Unit Tests (80%): Business logic, utilities
  • Integration Tests (15%): API contracts, database
  • E2E Tests (5%): Critical user journeys only

Test-First Workflow

For each task:

  1. Write test (will fail)
  2. Run test, confirm failure with expected output
  3. Implement code
  4. Run test, confirm pass with expected output
  5. All existing tests still pass
Also read Testing Pyramid for unit/integration/E2E examples.

Definition of Done - REQUIRED PER PHASE

Every phase MUST include this checklist:

### Definition of Done
- [ ] Code passes linter
- [ ] Code passes formatter
- [ ] Code passes type checker
- [ ] All new tests pass
- [ ] All existing tests pass
- [ ] Test coverage >= 80% for new code
- [ ] No new warnings introduced

Phase Completion: Conventional Commit Message

At the end of EVERY phase, output (but do not commit):

PHASE [X] COMPLETE - Conventional Commit Message:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

<type>(<scope>): <short summary>

<body - detailed description>

Files changed:
- path/to/file.ts (CREATE/MODIFY/DELETE)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

⚠️  DO NOT COMMIT - User will handle git operations

Phase 11: DOCUMENT - Write the Plan

Directory Naming Convention

Plans live in numbered subdirectories under plans/:

plans/
  001-auth-system/
    plan.md
  002-user-dashboard/
    plan.md
  003-api-caching/
    plan-1.md        # Large plan split across files
    plan-2.md

To determine the next number:

  1. List existing directories in plans/
  2. Find the highest NNN prefix
  3. Increment by 1, zero-padded to 3 digits
  4. If no plans/ exists, start at 001

Slug format: lowercase, hyphen-separated short name (e.g., 001-auth-system, 002-add-search)

Write the Plan

mkdir -p plans/NNN-feature-short-name/

Write the complete plan to plans/NNN-feature-short-name/plan.md.

STOP. Read Plan Template NOW for complete structure before writing.

Execution Handoff

After saving, present options:

PLAN COMPLETE: plans/NNN-feature-short-name/plan.md
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
EXECUTION OPTIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Option 1: Execute Now (This Session)
  Run `/superbuild plans/NNN-feature-short-name/plan.md`

Option 2: Execute in Fresh Session
  Start new session and run `/superbuild plans/NNN-feature-short-name/plan.md`

Option 3: Review First
  Read through the plan, suggest modifications, then execute

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Which option would you like?

Multi-File Strategy

If plan exceeds ~4,000 lines, split into files within the same directory:

  • plan-1.md: Overview, Requirements, Architecture
  • plan-2.md: Implementation Phases
  • plan-N.md: Remaining phases, Appendix

Quick Reference

See Reference Index at top of this document for when to read each reference.

PhaseKey ActionMust Read Before Starting
1-2Gather requirements, detect stack-
3Interview (WAIT for answers)Interview Guide
4Research (if needed)-
5Explore codebaseExplore Prompts
6Refactor assessmentRefactoring Research
7Architecture designArchitecture Templates
8-9Phase breakdown + code deltasTask Micro-Structure
10TDD testsTDD Discipline, Testing Pyramid, Command Outputs
11Write plan + handoffPlan Template
ANYParallel operationsSub-Agent Syntax

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

26.95%
按下载量换算36

Codex

23.18%
按下载量换算31

windsurf

17.63%
按下载量换算23

OpenCode

10.74%
按下载量换算14

Gemini CLI

6.73%
按下载量换算9

Cursor

2.97%
按下载量换算4

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills