Idea Lab — Automated Idea Generation & Evaluation
Generate multiple diverse ideas, evaluate the best ones with 6-evaluator scoring, rank and surface the winners.
How It Works
/idea-lab "FinTech hackathon, 48h, team of 2, must use AI"
│
▼
Phase 0: Bootstrap ─── config.json + context setup
│
▼
Phase 1: Generate ─── N diverse ideas via forced divergence axes
│
▼
Phase 2: Pre-screen ─── quick 1-agent score per idea, filter weak ones
│
▼
══ PRE-SCREEN DASHBOARD ══ see all ideas ranked by estimate
│
▼
Phase 3: Deep Eval ─── top-K ideas → /architect (6 evaluators each)
│
▼
══ FINAL DASHBOARD ══ comparative matrix, top recommendation
│
▼
[expand N] — full evaluation details
[build N] — launch /founder-mode with the winner
[refine] — adjust context, generate more
[stop] — save and exit
Phases
| Phase |
What It Does |
Agent |
| 0 - Bootstrap |
Config generation, context capture |
bootstrapper.md |
| 1 - Generate |
N ideas with forced diversity (SCAMPER, cross-domain, axis rotation) |
generator.md |
| 2 - Pre-screen |
Quick 1-agent score per idea, filters below threshold |
prescreener.md |
| 3 - Deep Eval |
Top-K ideas evaluated via /architect (6 parallel evaluators each) |
deep-evaluator.md |
| 4 - Ranking |
Comparative matrix, scenario recommendations, top pick |
ranker.md |
Diversity Engine
Ideas are forced to diverge across configurable axes:
- B2B SaaS, B2C consumer, open-source tool, educational, mobile-first
- SCAMPER method applied per idea
- Cross-domain analogies forced for at least 2 ideas
- Anti-obvious filter removes generic suggestions
Config
Generated at .idea-lab/config.json during bootstrap:
ideaCount: how many to generate (default 5, max 20)
topK: how many advance to deep evaluation (default 3)
minScore: minimum pre-screen score to advance (default 5.0)
diversityAxes: categories for forced divergence
dimensionFilters: e.g., {"Commercial": 7} — only show ideas with Commercial >= 7
Composition
/idea-lab → best idea selected → /founder-mode → built product with GTM kit
From "I don't have an idea" to "launched product" in one pipeline.
Dependencies
- Required:
architect skill (for Phase 3 deep evaluation)
- Optional:
founder-mode (to build the winning idea)
Usage
/idea-lab "I need an idea for a FinTech hackathon, 48 hours, team of 2"
/idea-lab "SaaS product for remote teams, must be profitable in 6 months"
/idea-lab "Open source developer tool that solves a real pain point"
/idea-lab resume
Crash Recovery
State persisted to .idea-lab/state.json. If your session crashes mid-evaluation, run /idea-lab resume to continue from the next unevaluated idea.
1---2name: idea-lab3description: Automated idea laboratory — generates multiple diverse ideas from a context, pre-screens them, evaluates the best with multi-agent scoring via /architect, and ranks the winners. Configurable idea count, diversity axes, score thresholds, and dimension filters. Composes with /founder-mode to build the winning idea. Use when: brainstorm ideas, generate ideas, hackathon ideas, idea lab, idea factory, compare ideas, evaluate multiple ideas, which idea should I build, batch evaluation, ideation.4license: MIT5---67# Idea Lab — Automated Idea Generation & Evaluation89Generate multiple diverse ideas, evaluate the best ones with 6-evaluator scoring, rank and surface the winners.1011## How It Works1213```14/idea-lab "FinTech hackathon, 48h, team of 2, must use AI"15 │16 ▼17 Phase 0: Bootstrap ─── config.json + context setup18 │19 ▼20 Phase 1: Generate ─── N diverse ideas via forced divergence axes21 │22 ▼23 Phase 2: Pre-screen ─── quick 1-agent score per idea, filter weak ones24 │25 ▼26 ══ PRE-SCREEN DASHBOARD ══ see all ideas ranked by estimate27 │28 ▼29 Phase 3: Deep Eval ─── top-K ideas → /architect (6 evaluators each)30 │31 ▼32 ══ FINAL DASHBOARD ══ comparative matrix, top recommendation33 │34 ▼35 [expand N] — full evaluation details36 [build N] — launch /founder-mode with the winner37 [refine] — adjust context, generate more38 [stop] — save and exit39```4041## Phases4243| Phase | What It Does | Agent |44|-------|-------------|-------|45| 0 - Bootstrap | Config generation, context capture | `bootstrapper.md` |46| 1 - Generate | N ideas with forced diversity (SCAMPER, cross-domain, axis rotation) | `generator.md` |47| 2 - Pre-screen | Quick 1-agent score per idea, filters below threshold | `prescreener.md` |48| 3 - Deep Eval | Top-K ideas evaluated via `/architect` (6 parallel evaluators each) | `deep-evaluator.md` |49| 4 - Ranking | Comparative matrix, scenario recommendations, top pick | `ranker.md` |5051## Diversity Engine5253Ideas are forced to diverge across configurable axes:54- B2B SaaS, B2C consumer, open-source tool, educational, mobile-first55- SCAMPER method applied per idea56- Cross-domain analogies forced for at least 2 ideas57- Anti-obvious filter removes generic suggestions5859## Config6061Generated at `.idea-lab/config.json` during bootstrap:6263- `ideaCount`: how many to generate (default 5, max 20)64- `topK`: how many advance to deep evaluation (default 3)65- `minScore`: minimum pre-screen score to advance (default 5.0)66- `diversityAxes`: categories for forced divergence67- `dimensionFilters`: e.g., `{"Commercial": 7}` — only show ideas with Commercial >= 76869## Composition7071```72/idea-lab → best idea selected → /founder-mode → built product with GTM kit73```7475From "I don't have an idea" to "launched product" in one pipeline.7677## Dependencies7879- **Required:** `architect` skill (for Phase 3 deep evaluation)80- **Optional:** `founder-mode` (to build the winning idea)8182## Usage8384```85/idea-lab "I need an idea for a FinTech hackathon, 48 hours, team of 2"86/idea-lab "SaaS product for remote teams, must be profitable in 6 months"87/idea-lab "Open source developer tool that solves a real pain point"88/idea-lab resume89```9091## Crash Recovery9293State persisted to `.idea-lab/state.json`. If your session crashes mid-evaluation, run `/idea-lab resume` to continue from the next unevaluated idea.