brainstorm-beagle
Use when the user has a fuzzy idea and wants to shape it into a concrete project spec before planning or building. Triggers on: "brainstorm this", "I have an idea for...", "help me think through this project", "what should I build", "spec this out". Also catches vague feature descriptions needing structured questioning to clarify scope. Does NOT write code, plan implementation, review strategy docs, or run strategy interviews — produces a WHAT/WHY spec through dialogue, not a HOW plan.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/anderskev/brainstorm-beagleBrainstorm: Ideas Into Specs
Turn a fuzzy idea into a comprehensive, implementation-free project spec through collaborative dialogue.
The output is a standalone spec document — structured enough for any agentic system to consume, clear enough for a human to act on. It captures WHAT and WHY, never HOW.
<hard_gate> Do NOT write any code, create implementation plans, scaffold projects, or take any implementation action. This skill produces a SPEC DOCUMENT only. Every project goes through this process regardless of perceived simplicity — "simple" projects are where unexamined assumptions waste the most work. </hard_gate>
Workflow
Complete these steps in order:
- Check for a concept brief — if
.beagle/concepts/<slug>/brief.mdexists for this idea, ingest it and skip most of steps 2-4 (see Concept brief ingestion below) - Explore context — read project files, docs, git history, existing specs (lighter pass if a brief is present)
- Assess scope — is this one spec or does it need decomposition?
- Ask clarifying questions — one at a time, follow the thread (few to none if a brief is present)
- Propose 2-3 directions — high-level product approaches with tradeoffs
- Draft spec — write the structured spec document
- Self-review — check for completeness, contradictions, implementation leakage (see
references/spec-reviewer.md) - User review — present for approval, iterate if needed
- Write to disk — save to
.beagle/concepts/<slug>/spec.md
Brief present? ──→ Yes → Ingest brief (skip most discovery) ──┐
──→ No → Explore context → Assess scope │
├─ Too large? → Decompose → Brainstorm first sub-project
└─ Right size? → Clarifying questions ─┘
│
Both paths converge → Propose directions → Draft spec → Self-review (fix inline) → User review
├─ Changes? → Revise
└─ Approved? → Write to concept folder
The terminal state is a written spec. This skill does not transition to implementation, planning, or any other skill. The user decides what to do with the spec.
Concept brief ingestion
If the user invokes brainstorm-beagle on a concept that already has .beagle/concepts/<slug>/brief.md (produced by prfaq-beagle on pass), ingest the brief at step 1 and skip most discovery:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-anderskev-brainstorm-beagle": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
tutorial-docs
Tutorial patterns for documentation - learning-oriented guides that teach through guided doing
fetch-pr-feedback
Fetch review comments from a PR and evaluate with receive-feedback skill
swift-testing-code-review
Reviews Swift Testing code for proper use of
rust-testing-code-review
Reviews Rust test code for unit test patterns, integration test structure, async testing, mocking approaches, and property-based testing. Covers Rust 2024 edition changes including async fn in traits for mocks,
explanation-docs
Explanation documentation patterns for understanding-oriented content - conceptual guides that explain why things work the way they do