Facilitates structured brainstorming and idea exploration before implementation begins.

Install

mkdir -p .claude/skills/brainstorm-rtfpessoa && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12851" && unzip -o skill.zip -d .claude/skills/brainstorm-rtfpessoa && rm skill.zip

Installs to .claude/skills/brainstorm-rtfpessoa

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Use when the user wants to brainstorm an idea, explore a problem space, think through a project proposal, or develop an idea before implementing. Triggers: \"brainstorm\", \"I have an idea\", \"let me think through\", \"explore this idea\", \"what if we\", \"is this worth building\", \"new project idea\", \"problem statement\".
329 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Intermediate

Key capabilities

  • Initialize a new brainstorm session
  • Resume an existing brainstorm session
  • Create disposable variants for decision-making
  • Sharpen vague ideas into clear problem statements
  • Identify problem statements, evidence, and stakeholders
  • Report brainstorm status and next steps

How it works

The skill initializes or resumes brainstorm sessions, creates markdown files for ideas, generates disposable prototypes for decisions, and uses a brainstormer agent to sharpen problem statements through iterative questions.

Inputs & outputs

You give it
An idea description or a request to resume/list brainstorms
You get back
A markdown brainstorm file, a list of brainstorms, or a set of prototype variants

When to use brainstorm

  • Explore new project ideas
  • Brainstorm feature variants
  • Define problem statements
  • Prototype multiple approaches

About this skill

Brainstorm

Announce: "I'm using the /brainstorm skill to explore and sharpen this idea."

Step 1: Initialize

TODAY=$(date +%Y-%m-%d)
mkdir -p ~/docs/brainstorms

Step 2: Determine Mode

Parse and remove the optional --prototype flag, then determine new vs resume. Without the flag, preserve the default problem-sharpening workflow.

SignalMode
--prototype plus a new or existing brainstormPrototype — create disposable variants for one decision, after creating or loading its brainstorm file
Path to existing ~/docs/brainstorms/*.md fileResume — load and continue
Short name matching an existing brainstorm fileResume — find and continue
Idea description (free text)New — create brainstorm file
No argumentsList — show existing brainstorms and ask what to do

List mode

Use Glob(pattern="*.md", path="~/docs/brainstorms") to find existing brainstorm files.

For each file, read the frontmatter to extract status and the # Title. Display the list as a table (slug, title, status, date_modified) so the user can see what exists, then ask via an interactive prompt:

Pause and ask the user. Wait for their answer before proceeding.

Brainstorm -- Which brainstorm do you want to work on?

  • <slug-1> -- <title-1><status-1>
  • <slug-2> -- <title-2><status-2>
  • Start new -- Create a new brainstorm — I'll ask for the idea

Cap the options at 3 existing brainstorms plus "Start new". If there are more than 3 brainstorms, prefer the most recently modified. The auto-injected "Other" option lets the user name a different brainstorm by hand.

If the user picks "Start new", ask a follow-up open question for the idea description, then continue with Step 3 (New brainstorm).

Step 3: Create or Load Brainstorm File

New brainstorm

Derive a slug from the idea description (kebab-case, max 40 chars).

Create ~/docs/brainstorms/<slug>.md:

---
date_created: <TODAY>
date_modified: <TODAY>
status: draft
tags: []
---

# <Title derived from idea>

## Overview

<Initial idea description — reframed around the problem, not the solution>

## Problem Statement

<To be sharpened through brainstorming>

## Evidence

<Concrete data supporting the problem — to be gathered>

## Stakeholders

<Who is affected — to be identified>

## Parked Solution Ideas

- <Solutions mentioned during brainstorming>

## Challenge Log

### Session: <TODAY>

Tell the user the file path.

Resume

Read the existing brainstorm file. Pass the full content to the brainstormer agent for continuation.

Step 4: Run Prototype Mode

Skip this step unless --prototype was supplied.

Name the single decision being tested, such as layout, approach, name, or tone. If the arguments contain multiple decisions, choose the highest-blast-radius decision and park the others in the brainstorm file. Retrieve any answer available from the repository, references, or brainstorm file before asking the user. If the decision is still unclear, ask exactly one question, ordered by architecture-changing, behavior-defining, then polish impact.

Create three to five materially different variants in one round. Do not produce cosmetic variations of the same assumption. For every variant, include:

  • A short label.
  • Belief tested: followed by the assumption the variant makes.
  • The disposable artifact or compact example.
  • The main trade-off the user should react to.

For visual decisions, create the directory and write one self-contained artifact containing all variants:

mkdir -p ~/docs/brainstorms/prototypes/<slug>

Write the artifact to ~/docs/brainstorms/prototypes/<slug>/index.html. Mark it DISPOSABLE PROTOTYPE, use fake data, avoid network or production dependencies, and never copy or wire it into the application. For approach, naming, or tone decisions, write compact textual variants under a ## Prototype Round: <TODAY> section in the brainstorm file.

Show the variants together, then collect one reaction at a time. Ask what the user would keep, reject, or combine and why; do not ask them to design the answer from scratch. If all variants are rejected for the same reason, restate the shared failed assumption and reframe the decision space before generating another round. Do not generate more variants from the same beliefs.

Finish the round by appending a ## Prototype Learning: <TODAY> section to the brainstorm file containing:

  • Learned requirement: the constraint or preference revealed by the reactions.
  • The selected direction, if any.
  • Remaining uncertainty and whether it is cheaper and safe to resolve during implementation.
  • The disposable artifact path, when one was created.

Stop questioning once the remaining uncertainty is implementation-cheap and safe. Report the learned requirement and exit without dispatching the default brainstormer.

Step 5: Dispatch Brainstormer

Dispatch the brainstormer agent to drive the conversation. The brainstormer is a problem-focused thinking partner that sharpens vague ideas into clear problem statements through iterative diagnostic questions. It asks one question at a time, pushes back on solution-shaped thinking, and updates the brainstorm file after each exchange.

Task(
  subagent = "brainstormer",
  description = "<new|resume> brainstorm: <slug>",
  prompt = "
<brainstorm_file>
<path>~/docs/brainstorms/<slug>.md</path>
<content>
<full file content>
</content>
</brainstorm_file>

<idea>
<the user's idea description, or 'resume' if continuing>
</idea>

<today><TODAY></today>

<task>
<For new>: Start a new brainstorm. The file has been created with the initial idea.
Analyze whether the idea is problem-shaped or solution-shaped, then begin the diagnostic progression.
Ask one question at a time. Update the brainstorm file after each exchange.
<For resume>: Resume an existing brainstorm. Read the file, summarize where things stand,
and continue from where the last session left off.

Before asking, retrieve any answer discoverable from the brainstorm file, repository, or supplied references.
Order unresolved questions by architecture-changing, behavior-defining, then polish impact.
Provide concrete options and a recommendation for consequential choices.
Stop questioning when remaining uncertainty is cheaper and safe to resolve during implementation.
</task>
"
)

Step 6: Report

After the brainstormer agent completes, read the brainstorm file and report:

FieldValue
File~/docs/brainstorms/<slug>.md
Statusdraft / developing / sharp / parked
Problem sharp?Yes/No — apply the Sharp Problem Test: Can you state WHO has the problem, WHAT the problem is, and WHY it matters in one sentence each? If any answer is vague ("users", "it's slow", "it would be nice"), the problem is not sharp yet.
Next stepsSuggested actions based on status

Suggested next steps by status:

StatusSuggestion
draft"Run /brainstorm <slug> to continue sharpening."
developing"Run /brainstorm <slug> to continue. Focus on: <open question>."
sharp"Problem is well-defined. Ready for /do or /rfc."
parked"Brainstorm is parked. Resume anytime with /brainstorm <slug>."

Error Handling

ErrorAction
~/docs/brainstorms/ not writableReport error and exit
No arguments and no existing brainstormsAsk for an idea description via a plain open-ended prompt (no an interactive prompt — the answer is free-form)
Slug conflicts with existing fileAppend a number suffix (e.g., my-idea-2.md)
Brainstormer agent failsSave current file state, report error, suggest manual resume
Brainstorm file corrupted or unreadableRe-create the file with the last known content from conversation history.
User wants to stop mid-conversationUpdate file with current state, set status to developing or parked
Prototype decision is too broadSelect the highest-blast-radius decision, park the rest, and state the narrowed scope.
Visual prototype could affect productionStop, move it to the disposable prototype directory with fake data, and remove all production integration.
Variants test the same beliefDiscard the redundant variants and regenerate materially different assumptions before asking for reactions.

When not to use it

  • When the user needs to implement code directly
  • When the user needs to modify existing project files outside of brainstorm documents

Limitations

  • The skill creates markdown-based documentation
  • The skill's prototyping creates disposable artifacts
  • The skill focuses on problem-sharpening, not solution implementation

How it compares

This skill provides a structured, iterative process for idea exploration and problem sharpening, including prototyping, which is more systematic than unstructured brainstorming.

Compared to similar skills

brainstorm side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
brainstorm (this skill)02moReviewIntermediate
marketing-strategy-pmm87moNo flagsAdvanced
content-strategy83moNo flagsBeginner
seo-content-planner34moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

marketing-strategy-pmm

davila7

Product marketing, positioning, GTM strategy, and competitive intelligence. Includes ICP definition, April Dunford positioning methodology, launch playbooks, competitive battlecards, and international market entry guides. Use when developing positioning, planning product launches, creating messaging, analyzing competitors, entering new markets, enabling sales, or when user mentions product marketing, positioning, GTM, go-to-market, competitive analysis, market entry, or sales enablement.

851

content-strategy

coreyhaines31

When the user wants to plan a content strategy, decide what content to create, or figure out what topics to cover. Also use when the user mentions "content strategy," "what should I write about," "content ideas," "blog strategy," "topic clusters," or "content planning." For writing individual pieces, see copywriting. For SEO-specific audits, see seo-audit.

833

seo-content-planner

sickn33

Creates comprehensive content outlines and topic clusters for SEO. Plans content calendars and identifies topic gaps. Use PROACTIVELY for content strategy and planning.

332

free-tool-strategy

davila7

When the user wants to plan, evaluate, or build a free tool for marketing purposes — lead generation, SEO value, or brand awareness. Also use when the user mentions "engineering as marketing," "free tool," "marketing tool," "calculator," "generator," "interactive tool," "lead gen tool," "build a tool for leads," or "free resource." This skill bridges engineering and marketing — useful for founders and technical marketers.

325

early-stage-hustle

omer-metin

Before product-market fit, your job is to learn as fast as possible. That means doing things that won't scale - manual onboarding, concierge service, recruiting users one by one. Paul Graham's "Do Things That Don't Scale" is the bible here. This skill synthesizes the hustle playbook that creates esc

00

icp-builder

adidacta

>

00

Search skills

Search the agent skills registry