Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

brainstorming-with-explorer-challenger-teams与探索者挑战者团队进行头脑风暴

Agent Skill

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

总安装

642

周安装

27

GitHub Stars

1

下载量

225
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gannonh/skills --skill brainstorming-with-explorer-challenger-teams

简介

brainstorming-with-explorer-challenger-teams 采用探索者与挑战者配对机制,通过多组并行辩论生成经得起质疑的创新提案。

  • 适合需要高价值改进、激进方向探索或快速影响提升的项目场景,尤其适用于产品优化与战略转型讨论。
  • 默认配置三组不同聚焦方向的团队(快速见效/高价值投入/颠覆性创新),每组包含观点生成与批判验证双角色。
  • 使用前需确保本地 Git 环境就绪,技能将自动拉取分支差异并协调代理间交互,注意可能涉及临时文件写入与命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Explorer/Challenger Brainstorming

Run structured brainstorming sessions using paired agent teams. Each pair has an explorer (generates ideas) and a challenger (plays devil's advocate). Multiple pairs run in parallel with different remits, producing debate-tested proposals.

Default Team Structure

Three pairs, each with a different lens:

PairExplorerChallengerRemit
1explorer-quickwinschallenger-quickwinsLow-effort, high-impact improvements
2explorer-highvaluechallenger-highvalueSubstantial features worth significant investment
3explorer-radicalchallenger-radicalNew directions and paradigm shifts

The user may customize remits, number of pairs, or focus areas. Adapt the team structure to match.

Process

Step 1: Gather Context

Before spawning agents, build a project brief by reading:

  • README or equivalent project overview
  • Any roadmap, backlog, or planning files
  • Recent changelog or shipped features
  • Open issues or feature requests
  • Project constraints (team size, architecture, target users)

Condense this into a context block that every agent receives in their prompt.

Step 2: Create Output Directory

Create a timestamped output directory for this brainstorm session:

.planning/brainstorms/YYYY-MM-DDTHH-MM-brainstorm/

Use the current date and time (e.g., 2026-02-05T11-18-brainstorm). All agent output files and the final SUMMARY.md go here. Use this directory as the scratchpad for agent file writes (do NOT use /tmp or the scratchpad directory).

Step 3: Create Team and Tasks

  1. Create team with Teammate tool (spawnTeam)
  2. Create one task per agent (6 tasks for 3 pairs)
  3. Set dependencies: each challenger task is blocked by its paired explorer task

Step 4: Spawn Agents

Spawn all agents in parallel using the Task tool with team_name and name parameters. Use general-purpose subagent type for all agents.

Tell each agent to write output files to the brainstorm output directory created in Step 2.

Explorer prompt template:

You are an EXPLORER on a brainstorm team for [PROJECT]. Your job is to propose [REMIT DESCRIPTION] ideas.

## Your Role
Generate creative, practical ideas. You're the optimist — find opportunities.
[Don't self-censor. The challenger's job is to ground ideas — yours is to push boundaries.]

## Project Context
[CONDENSED PROJECT BRIEF]

## Your Task
1. Claim your task from the task list using TaskUpdate
2. Explore the codebase to understand current architecture and gaps
3. Read any backlog/issues for inspiration
4. Write [N] proposals to [OUTPUT_DIR]/[category]-ideas.md

For each idea, include:
- **Name**: Short descriptive name
- **What**: Description of the idea
- **Why**: Strategic justification
- **Scope**: Rough effort estimate
- **Risks**: What could go wrong

5. Message your challenger partner with a summary
6. Engage in 2-3 rounds of back-and-forth debate
7. Write final consolidated report to [OUTPUT_DIR]/[category]-report.md incorporating valid critiques
8. Mark your task as completed

Challenger prompt template:

You are a CHALLENGER (devil's advocate) on a brainstorm team for [PROJECT]. Your partner "[explorer-name]" is proposing [REMIT DESCRIPTION] ideas. Your job is to pressure-test them.

## Your Role
You're the skeptic. Find flaws, question assumptions, identify hidden complexity. But be constructive — if an idea survives your scrutiny, it's probably good. Your goal isn't to kill ideas but to make them better.
[Be specific. "This seems hard" is weak. "This requires X which has Y dependency" is strong.]

## Project Context
[CONDENSED PROJECT BRIEF]

## Your Task
1. Claim your task (blocked until explorer finishes initial proposals)
2. While waiting, explore the codebase to build your own understanding
3. When you receive ideas, evaluate each on:
   - Feasibility: Is the scope realistic?
   - Value: Does this solve a real problem?
   - Risks: What could go wrong?
   - Alternatives: Is there a simpler way?
4. Send critique back to your explorer partner
5. Engage in 2-3 rounds of discussion
6. After the explorer writes the final report, mark your task as completed

Your best output: "This idea is viable IF you scope it to X and start with Y."

Step 5: Monitor and Manage

  • Watch for task completions via TaskList
  • Shut down completed pairs (explorer first, then challenger) via shutdown_request messages
  • Don't intervene in debates unless an agent is stuck

Step 6: Synthesize and Write Reports

Once all pairs complete:

  1. Read all final reports from the output directory
  2. Clean up the team with Teammate tool (cleanup)
  3. Write a SUMMARY.md file to the output directory that consolidates all results:

- Brief intro describing the session (topic, number of pairs, remits) - One section per category summarizing the surviving proposals in a table - Links to the full category reports (e.g., [Full report](quickwins-report.md)) - Deferred/dropped items with brief rationale - Cross-cutting themes that emerged across multiple pairs - Recommended sequencing if applicable

  1. Present the SUMMARY.md content to the user

The final output directory structure should look like:

.planning/brainstorms/YYYY-MM-DDTHH-MM-brainstorm/
├── SUMMARY.md              # Consolidated synthesis (primary output)
├── [category]-ideas.md     # Raw proposals per pair
└── [category]-report.md    # Debate-refined reports per pair

Customization

Fewer/more pairs: Adjust based on scope. A focused session might use 1 pair. A broad exploration might use 4-5.

Custom remits: Replace the default three lenses with whatever framing suits the question. Examples:

  • Technical feasibility / Business value / User experience
  • Build / Buy / Partner
  • Short-term / Medium-term / Long-term
  • Core product / Adjacent markets / New markets

Solo explorer (no challenger): For pure idea generation without debate, spawn explorers only. Skip the challenger role.

Domain-specific context: For technical brainstorming, have explorers read specific code paths. For product brainstorming, have them research competitors or user feedback.

Output Structure

Each pair produces:

  • [category]-ideas.md — Explorer's initial proposals (raw)
  • [category]-report.md — Final consolidated report after debate (refined)

The SUMMARY.md is the primary deliverable. Category reports provide detail. Initial ideas files are retained for reference.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.18%
按下载量换算79

Claude

29.52%
按下载量换算66

Cursor

17.39%
按下载量换算39

Gemini CLI

10.04%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/gannonh/skills --skill brainstorming-with-explorer-challenger-teams 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills