Skip to content

/wbIdea — Exhaustive Simulation () ​

/wbIdea is the scored idea pipeline. It captures, scores, explores, validates, and promotes speculative ideas into actionable plan tasks. Read this for the full argument resolution, flag matrix, and edge cases.


1. Role & target ​

AspectBehavior
RoleThe Ideator — captures and scores speculative ideas.
TargetPackage directories, folder scopes, or existing idea_*.md files.
Cell scopeNone. /wbIdea does not modify source code.
Side effects allowedWriting/updating idea_*.md files. Promoting ideas to plan_*.md.
Side effects forbiddenModifying source code, executing tasks, creating task reports.

2. Argument resolution ​

FormExampleWhat /wbIdea does
Folder scope/wbIdea packages/wb-coreAI scans context, proposes scored ideas
Manual idea/wbIdea packages/wb-core --task="Add retry logic"Registers one specific idea with computed score
Resume/wbIdea packages/wb-core --resumeRe-reads existing idea file, re-scores based on current context
Promote/wbIdea packages/wb-core --id=1 --promotePromotes idea #1 to today's plan file
Reject/wbIdea packages/wb-core --id=1,2 --rejectMarks ideas 1,2 as 🚫 Rejected
Defer/wbIdea packages/wb-core --id=3 --deferMarks idea 3 as ⏸️ Deferred
Self-correct/wbIdea idea_wb-core_20260508.mdNormalizes the file, fills gaps, re-scores

3. Flag matrix ​

FlagShortcutPurpose
--task="<desc>"-tRegister a specific idea with the given description.
--resume-rRe-read existing idea file, re-evaluate scores.
--id=<N,M,...>-iTarget specific idea indices.
--promote-pPromote targeted ideas to the plan file.
--reject-xMark targeted ideas as 🚫 Rejected.
--defer-dMark targeted ideas as ⏸️ Deferred.
--scope-sOverride scope resolution.

4. Pipelines ​

📋/wbIdea Exhaustive Simulation
Native idea generation/wbIdea packages/wb-dataviewer
> /wbIdea packages/wb-dataviewer
[SYSTEM] Reading context.md...
[SYSTEM] Reading recent reports/...
[SCORE] Computing impact × feasibility × urgency for each idea...
[GENERATE] 4 ideas scored:
#1: Score 8 — Column-level search with multi-color highlighting
#2: Score 6 — Row grouping by any column value
#3: Score 4 — CSV/XLSX export button
#4: Score 9 — Virtual scrolling for 10k+ rows
[OUTPUT] idea_wb-dataviewer_20260508.md created.

💠 Pipeline Native idea generation ​

💠 Pipeline Promote-and-ingest cycle ​

💠 Pipeline Self-correct mode ​


5. Edge cases & refusals ​

TriggerWhat /wbIdea does
No context.md existsWarns: "No context found. Ideas will be generic. Consider /wbSetup first."
--promote on already-promoted ideaSkips: "Idea #N already promoted → Plan #M."
--promote on rejected ideaRefuses: "Idea #N was rejected. Use --open first to reopen, then --promote."
All ideas already validatedIn resume mode: "All ideas validated. Consider /wbPlan --resume to check ingestion."
Idea file doesn't exist + --resumeCreates fresh file instead: "No existing idea file found. Generating new ideas."
--id=99 (out of range)Error: "Idea #99 not found. File has 4 ideas (1–4)."