Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

brainstorm头脑风暴

Agent Skill

brainstorm 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

261

周安装

11

GitHub Stars

20

下载量

92
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/georgekhananaev/claude-skills-vault --skill brainstorm

简介

brainstorm 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库和原始 README 核验具体用法,通过 npx 命令安装。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件操作。
  • brainstorm 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Brainstorm

Transform ideas into fully-formed designs and specs through natural collaborative dialogue.

When to Use

  • User has an idea that needs refinement ("I want to add...")
  • Feature requires design exploration before implementation
  • Multiple valid approaches exist and trade-offs need evaluation
  • Requirements are unclear or partially defined
  • User explicitly asks to brainstorm, design, or spec out a feature

The Process

Phase 1: Context Gathering

Before asking questions, understand the current state:

1. Check project structure (Glob key directories)
2. Review recent commits (git log --oneline -10)
3. Read relevant existing code/docs
4. Identify patterns and conventions already in use

Phase 2: Idea Refinement

Core Principle: One question at a time.

Ask questions to understand the idea. Prefer multiple-choice when possible:

Use AskUserQuestion with:
- 2-4 options per question
- Clear, mutually exclusive choices
- Your recommended option first (with reasoning)

Question Categories:

CategoryExample Questions
PurposeWhat problem does this solve? Who benefits?
ConstraintsMust integrate with X? Budget/time limits?
SuccessHow do we know it worked? Key metrics?
ScopeWhat's explicitly NOT included?
Prior ArtSeen similar elsewhere? What worked/didn't?

Exit Criteria: Stop asking when purpose, constraints, and success criteria are clear.

Phase 3: Approach Exploration

Present 2-3 approaches with trade-offs:

## Approach A: [Name] (Recommended)
- **Pros**: ...
- **Cons**: ...
- **Best when**: ...

## Approach B: [Name]
- **Pros**: ...
- **Cons**: ...
- **Best when**: ...

Lead with recommendation and explain why. Ask user to confirm or discuss.

Phase 4: Incremental Design Presentation

Once approach is selected, present the design in sections:

CRITICAL: Each section must be 200-300 words max.

After each section, ask:

"Does this section look right so far? Any adjustments needed?"

Section Order:

  1. Overview - Goal, scope, success metrics
  2. Architecture - Components, data flow, boundaries
  3. Data Model - Schema, relationships (if applicable)
  4. Error Handling - Failure modes, recovery strategies
  5. Testing Strategy - What to test, how to test

Only proceed to next section after user confirms current section.

Be flexible: If something doesn't make sense, go back and clarify. The process is not rigid.

Phase 5: Documentation

After all sections validated:

  1. Compile into single design document
  2. Use elements-of-style skill for clarity
  3. Write to docs/plans/YYYY-MM-DD-<topic>-design.md
  4. Commit the design document to git

Phase 6: Implementation Setup (Optional)

After documentation is complete, ask:

"Ready to set up for implementation?"

If yes:

  1. Use using-git-worktrees to create isolated workspace
  2. Use /plan-feature command to create detailed implementation plan with TDD tasks

Question Patterns

Good Questions (Multiple Choice)

AskUserQuestion:
  question: "How should we handle failed API calls?"
  options:
    - label: "Retry with backoff (Recommended)"
      description: "Automatic retry 3x with exponential backoff. Best for transient failures."
    - label: "Fail immediately"
      description: "Return error to user right away. Simpler but less resilient."
    - label: "Queue for later"
      description: "Store and retry in background. Good for non-critical operations."

Good Questions (Open-ended)

Use when options aren't clear-cut:

  • "What existing functionality should this integrate with?"
  • "Are there any similar features in other products you'd like to emulate?"
  • "What's the worst-case failure scenario we need to handle?"

YAGNI Ruthlessly

During design, actively remove unnecessary features:

Red FlagQuestion to Ask
"It might be useful to...""Do we need this for MVP?"
"We could also add...""Is this solving the stated problem?"
"Just in case...""What's the likelihood this is needed?"
"This would be nice...""Is this a requirement or a want?"

Default answer: Remove it. Can always add later.

Design Document Template

# Feature: [Name]
Date: YYYY-MM-DD

## 1. Overview
**Goal**: [One sentence]
**Success Metrics**: [How we measure success]
**In Scope**: [What we're building]
**Out of Scope**: [What we're NOT building]

## 2. Architecture
[Diagram or description of components]

### Data Flow
[Step-by-step flow]

## 3. Data Model (if applicable)
[Schema changes, relationships]

## 4. Error Handling
| Scenario | Response |
|----------|----------|
| ... | ... |

## 5. Testing Strategy
| Type | Coverage | Focus |
|------|----------|-------|
| Unit | ... | ... |
| Integration | ... | ... |
| E2E | ... | ... |

## 6. Open Questions
[Any unresolved decisions]

Anti-Patterns

Don'tDo Instead
Ask 5 questions at onceOne question per message
Present design all at once200-300 word sections, validate each
Skip context gatheringAlways check project state first
Present only one approachAlways show 2-3 with trade-offs
Assume requirementsAsk until crystal clear
Over-engineer MVPYAGNI - remove the unnecessary
Write design without validationGet user confirmation at each step

Execution Flow

CONTEXT → REFINE → EXPLORE → PRESENT → DOCUMENT → IMPLEMENT
   │         │         │         │          │          │
 Git/Files  1 Q at   2-3 opts  200-300   docs/plans/  git-worktrees
            a time   w/recs    sections  + commit     + /plan-feature

Integration

Pairs with:

  • gemini-cli - Get alternative perspectives during approach exploration (Phase 3)
  • elements-of-style - Apply when writing design documents (Phase 5)
  • using-git-worktrees - Create isolated workspace for implementation (Phase 6)
  • /plan-feature command - Create detailed TDD implementation plans (Phase 6)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.82%
按下载量换算32

Claude

30.84%
按下载量换算28

Cursor

18.26%
按下载量换算17

Gemini CLI

8.67%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills