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

brainstorm-to-issues对问题进行头脑风暴

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

356

周安装

15

GitHub Stars

公开资料未说明

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hifisaputra/skills --skill brainstorm-to-issues

简介

将口语化想法转化为结构化 GitHub Issue,自动补全标题、标签与验收标准。

  • 支持引用现有 PRD 或分支上下文,确保 issue 与代码库对齐。
  • 创建前会检查 gh auth 状态,未登录则暂停等待用户认证。
  • 生成的 issue 可直接提交至指定仓库,减少人工整理成本。
  • brainstorm-to-issues 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Brainstorm to Issues

Turn a casual idea into structured, implementable GitHub issues through conversation.

Pre-flight

Before starting the brainstorm, verify the environment so the user doesn't lose work at the end:

gh auth status

If this fails, stop immediately: "GitHub CLI isn't authenticated. Run gh auth login first, then let's brainstorm."

Process

1. Capture the idea

Ask the user to describe their idea freely. Don't interrupt — let them get it all out. Then summarize what you heard back to them in 2-3 sentences to confirm understanding.

If the user references an existing PRD or issue (e.g., "I want to add more issues to #42" or "let's extend the auth PRD"), read it with gh issue view <number> and skip to step 4 — you're extending, not creating from scratch.

2. Explore the codebase

Before interviewing the user, proactively explore the codebase to understand the landscape. This makes your questions sharper and avoids asking things the code already answers:

  • Project structure, frameworks, and patterns in use
  • Existing modules related to the idea
  • Database schemas, API routes, or config that would be affected
  • Test infrastructure and conventions
  • File ownership boundaries — which directories/files belong to which logical modules. This matters later when you need to split work into non-overlapping issues for parallel implementation.

This exploration informs both the interview and the eventual issue breakdown. Spend enough time here that you can have a technical conversation about the idea without constantly asking the user "where does X live?"

3. Grill the idea

Interview the user about every aspect. Walk down each branch of the decision tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer informed by what you found in the codebase.

If a question can be answered by exploring the codebase, explore it instead of asking.

Cover at minimum:

  • Who is this for? What problem does it solve?
  • What does "done" look like?
  • What are the edge cases?
  • What's explicitly out of scope?
  • Are there technical constraints or preferences?

Keep going until there are no open questions.

4. Write the PRD

Create a PRD as a GitHub issue using gh issue create:

The problem from the user's perspective.

Solution

The solution from the user's perspective.

User Stories

Numbered list:

  1. As a, I want, so that

Be extensive — cover all aspects discussed.

Implementation Decisions

Key technical decisions made during brainstorming:

  • Modules to build/modify (reference by component/module name — e.g., "auth middleware", "users API", "dashboard page")
  • Architectural choices
  • Schema changes
  • API contracts

Include enough technical direction that the implementing agent knows which areas of the codebase to work in, but avoid hardcoding specific file paths or line numbers that will go stale.

Out of Scope

What was explicitly excluded.

Add the label prd to the issue.

5. Break into vertical slices

Break the PRD into tracer bullet issues. Each issue is a thin vertical slice through ALL layers end-to-end, NOT a horizontal layer slice.

Scope estimation: For each slice, estimate the rough size (small: <100 lines, medium: 100-300 lines, large: 300-500 lines). If any slice looks like it would exceed ~500 lines of changes, split it further — the downstream implementation skill has a ~500 line threshold and will reject issues that are too large.

Minimize file conflicts for parallel work

AI agents pick up unblocked ai-ready issues in parallel. If two parallel issues modify the same files, their PRs will conflict and one will need to be rebased or redone. This is wasteful, so the issue breakdown should minimize file overlap between issues that can run at the same time.

Keep every issue as a vertical slice. Do not split work into horizontal layers (e.g., "all schema changes" then "all renderer changes" then "all UI changes") just to avoid file conflicts. Each issue should still touch all the layers it needs end-to-end. The way to avoid conflicts is through dependency chains, not by breaking vertical slices apart.

After defining the slices, do a file-overlap analysis:

  1. Map the file footprint of each slice — list the files or directories it will likely touch. Be specific (e.g., "src/api/routes/widgets.ts, src/db/migrations/, src/components/WidgetList.tsx") rather than vague ("the API layer"). Use what you learned in step 2 about the codebase structure.
  2. Identify conflicts — two slices conflict if their file footprints overlap. Common conflict hotspots:

- Shared config files (routes index, DB schema, app entrypoint) - Barrel/index files that re-export modules - Shared types or interfaces files - CSS/style files used across components

  1. Resolve conflicts through dependency chains. When two vertical slices touch the same files, chain them with a dependency so they run sequentially instead of in parallel. Pick the natural ordering — the slice that establishes shared groundwork (e.g., adds the DB table, creates the base component) goes first, and the slice that builds on it depends on it. If there's no natural ordering, just pick one. The key rule: no two simultaneously-unblocked issues should share files. Add as many dependency links as needed to enforce this — a longer chain is better than a merge conflict.
  2. Maximize parallel lanes. Arrange the dependency graph so the maximum number of issues are unblocked at any given time, while respecting the constraint above. Think of it as coloring a graph: issues in the same "color" (parallel group) must not conflict on files. Spread unrelated slices across separate lanes that can run simultaneously.

If a shared file is unavoidable across many slices (e.g., a routes index where every feature adds a line), front-load those changes into the first slice in the chain so later slices only append to what the first one established.

Present the breakdown

Present the breakdown to the user as a numbered list showing:

  • Title: short descriptive name
  • Type: HITL (needs human input) / AFK (fully autonomous)
  • Priority: critical / high / normal (if everything is normal, skip this column)
  • Blocked by: dependencies on other slices
  • User stories covered: which stories from the PRD
  • Estimated size: small / medium / large
  • Files touched: key files/directories this slice will modify

After the list, show a parallel lanes view — which issues can run simultaneously without conflicts:

Lane 1: #1 Setup DB schema → #3 Widget CRUD API → #5 Widget permissions
Lane 2: #2 Dashboard layout  → #4 Widget list component

This makes the conflict-avoidance strategy visible. Ask: Does the granularity feel right? Any slices to merge or split? Do the dependency chains make sense for avoiding conflicts?

Iterate until approved.

6. Create the issues

Before creating anything, save the full list of planned issues (titles, bodies, labels, dependencies) to a local file as a backup:

<project-root>/brainstorm-<short-name>.json

This ensures nothing is lost if issue creation fails partway through. If a gh issue create call fails, stop, report which issues were created and which remain, and offer to retry the remaining ones.

For each approved slice, create a GitHub issue with gh issue create. Create in dependency order so you can reference real issue numbers.

#

What to build

Concise description of this vertical slice. Describe end-to-end behavior, not layer-by-layer implementation.

Acceptance criteria

Specific, testable criteria that an implementing agent can verify. Each criterion should describe observable behavior, not vague quality:

  • POST /api/widgets returns 201 with the created widget JSON
  • Widget appears in the dashboard list without page refresh
  • Creating a widget with a duplicate name returns 409

Avoid criteria like "works correctly" or "handles edge cases" — be precise about what "correct" means.

Blocked by

List of issue references this depends on, or omit this section entirely if unblocked.

  • #

Type

AFK / HITL

Input Needed (HITL only)

What specific input the human must provide before this can be implemented. Be precise — not "design feedback" but "choose between tabbed layout or sidebar layout for the settings page and provide rough wireframe or description of which settings go where."

Labeling rules:

  • AFK issues with no blockers → label ai-ready (can be picked up immediately by the AI implementation loop)
  • AFK issues with blockers → label ai-blocked (will be picked up automatically when blockers close)
  • HITL issues → label ai-needs-input (waiting for human to provide input described in the "Input Needed" section). Once the human comments with their input and relabels to ai-ready, the AI implementation loop picks it up.

If the user assigned priorities, also add the corresponding label:

  • priority:critical or priority:high (normal priority gets no label — it's the default)

7. Update the PRD with child links

After all issues are created, edit the PRD issue to add a tracking section at the bottom:

gh issue edit <prd-number> --body "$(current body)

## Implementation Issues

- [ ] #<issue-1> - <title>
- [ ] #<issue-2> - <title>
- [ ] #<issue-3> - <title>
"

This makes the PRD a single source of truth — you can see the full breakdown and track progress from one place.

8. Summary

Print a summary: PRD issue link, list of created issues with numbers and labels, dependency graph, and suggested starting order.

If any HITL issues were created, call them out explicitly:

Issues waiting for your input:
- #<number> "<title>" — needs: <what input is needed>
- #<number> "<title>" — needs: <what input is needed>

Comment on the issue with your input, then change the label from `ai-needs-input` to `ai-ready` to hand it off.

Clean up the local backup file if all issues were created successfully.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.14%
按下载量换算45

Claude

31.74%
按下载量换算40

Cursor

18.75%
按下载量换算23

Gemini CLI

10.06%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills