kevmoo/kevmoo_skills · Archived

just-brainstorm

|- Ponder architectural designs, explore potential solutions, weigh tradeoffs, or analyze the impact of proposed codebase changes without making code changes. Always outputs the analysis to a Markdown artifact.

First seen Jun 29, 2026

Installation

$ npx skills add kevmoo/kevmoo_skills --skill just-brainstorm

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kevmoo/kevmoo_skills · top by installs.

npx skills add kevmoo/kevmoo_skills

Browse all from kevmoo/kevmoo_skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 14
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,396 B
  • docs SUMMARY.md 230 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

When to use this skill

Activate this skill when you need to think through a design, explore options, or evaluate the impact of a potential change before writing code.

Examples of trigger phrases:

  • "Let me brainstorm..."
  • "Just brainstorming here..."
  • "What if we [do specific change]..."
  • "What would break if we..."
  • "How hard would it be to migrate..."
  • "Help me design..."

Critical Rule: Zero Codebase Changes

  • NO CODEBASE FILE EDITS OR CREATION: Do not edit existing project files,

write new implementation code, or modify repository state.

  • MANDATORY ARTIFACT GENERATION: The only permitted file creation is the

design/analysis artifact (.md file in the conversation artifacts directory).

Procedural Workflow

1. Gather Context & Empirical Data (Read-Only)

  • Inspect the codebase using read-only tools (grepsearch, viewfile, list_dir)

to ground your brainstorming or analysis in reality.

  • For Impact Analysis ("What-if"): Gather real statistics. Calculate usage

counts, identify affected call sites, and map out dependencies. Do not guess.

2. Interactive Alignment (ask_question)

  • Use ask_question early if the goals, constraints, or the scope of the

"what-if" scenario are unclear.

3. Generate the Artifact

  • Write the output to a .md file in the conversation artifacts directory.
  • Use RequestFeedback: false in the artifact metadata (do not block with "Proceed" gates).
  • Structure for Design Brainstorming:

- Present 2–4 distinct options. - Highlight tradeoffs (pros/cons) and relative complexity.

  • Structure for Impact Analysis ("What-if"):

- Detail the step-by-step impact if the change were executed. - List breaking changes, migration friction, and affected modules with metrics. - Provide a summary risk/feasibility verdict.

4. Conclude with Next Steps

  • Suggest 1–3 actionable next steps (e.g., create an implementation plan,

explore a specific option deeper, or start implementation).