/install idea-darwin
\r \r
Idea Darwin Engine\r
\r A round-based idea iteration system that treats ideas as competing organisms — scoring, selecting, crossing, and evolving them through structured rounds to surface the strongest concepts.\r \r The metaphor is Darwinian selection: ideas that score well survive and evolve; weak ideas get flagged for the user to decide on; crossbreeding produces novel offspring. This prevents the common failure mode of brainstorming where all ideas stay equally vague forever.\r \r
Commands\r
\r
| Command | Description |\r
|---|---|\r
| /idea-darwin init | Initialize: parse ideas.md, create directory structure, config, and initial cards (optional params below) |\r
| /idea-darwin round | Execute the next iteration round |\r
| /idea-darwin round N | Execute N consecutive rounds |\r
| /idea-darwin status | View idea pool status and rankings |\r
| /idea-darwin dormant IDEA-XXXX | Put a specific idea into dormancy |\r
| /idea-darwin wake IDEA-XXXX | Wake a dormant idea |\r
| /idea-darwin | No arguments: show brief status and suggest next step |\r
\r
Arguments are extracted from $ARGUMENTS. If no arguments are provided, show current status and suggestions.\r
\r
init Optional Parameters\r
\r
| Parameter | Description | Default |\r
|---|---|---|\r
| --budget \x3CN> | Max ideas to process per round | 12 |\r
| --actions \x3CN> | Max actions per idea per round | 2 |\r
| --disruption \x3CN> | Introduce external stimulus every N rounds (disruption round) | 3 |\r
\r
Example: /idea-darwin init --budget 8 --actions 3 --disruption 5\r
\r
These parameters are written to config.yaml and can be manually edited later. Unspecified parameters use defaults.\r
\r
File Structure\r
\r The system maintains this structure in the working directory (created during initialization):\r \r
project/\r
├── ideas.md # User's raw ideas (read-only — never modify this file)\r
├── config.yaml # System configuration and state\r
├── stimuli.md # External stimulus entries (user-editable, system read-only)\r
├── cards/ # Idea cards\r
│ ├── IDEA-0001.md\r
│ └── ...\r
├── rounds/ # Round reports\r
│ ├── round-000.md\r
│ └── ...\r
├── reports/ # Leaderboard and cluster reports\r
│ └── leaderboard.md\r
└── graph/ # Relationship graph\r
└── relations.json\r
```\r
\r
## Idea Numbering\r
\r
- Format: `IDEA-XXXX` (4-digit zero-padded, starting from 0001)\r
- Globally unique — numbers are never recycled, even for dormant or removed ideas\r
- `config.yaml` tracks the next available number in `next_idea_id`\r
- Each idea card records lineage via `parent_ids` and `child_ids`\r
\r
## Idea State Machine\r
\r
```\r
seed → exploring → refining → crossing → validated → dormant\r
```\r
\r
| State | Meaning | Available Actions |\r
|---|---|---|\r
| seed | Just entered the pool | Tagging, card generation, deepen, quick cross-validation |\r
| exploring | Exploration phase | Deepen, derive, critique, preliminary cross |\r
| refining | Polishing phase | Logic reinforcement, feasibility analysis, risk check |\r
| crossing | High-cross phase | Merge with complementary ideas, evaluate fusion quality |\r
| validated | Verified | Output MVP plan, generate execution roadmap |\r
| dormant | Hibernating | Passive participation in cross and similarity matching only |\r
\r
State transitions are recommended by the system based on scores and action results, but the user always has final say.\r
\r
## Scoring System\r
\r
### 6 Scoring Dimensions (1–10 each)\r
\r
| Dimension | Weight | Meaning |\r
|---|---|---|\r
| Novelty | 0.10 | Is there a genuine breakthrough, or just repetition? |\r
| Feasibility | 0.20 | Is this technically, resource-wise, and path-wise achievable? |\r
| Value | 0.20 | How much impact would this create if successful? |\r
| Logic | 0.20 | Is it internally consistent, with no obvious gaps? |\r
| CrossPotential | 0.10 | How likely is this to spark something new when combined with other ideas? |\r
| Verifiability | 0.20 | Can we design an experiment or minimum validation path? |\r
\r
### Three-Layer Scoring Formula\r
\r
The scoring is layered so that each layer captures a different strategic lens — Survival measures standalone quality, Development measures growth potential, and Priority blends both with recency and diversity bonuses to prevent the pool from stagnating.\r
\r
```\r
Survival = 0.10×Novelty + 0.20×Feasibility + 0.20×Value\r
+ 0.20×Logic + 0.10×CrossPotential + 0.20×Verifiability\r
\r
Development = 0.30×Novelty + 0.30×CrossPotential\r
+ 0.20×VariationPotential + 0.20×Freshness\r
\r
Priority = 0.50×Survival + 0.30×Development\r
+ 0.10×NewIdeaBoost + 0.10×DiversityBonus\r
```\r
\r
- **VariationPotential** (0–10): How many distinct directions can this idea still branch into. Decreases as more children are derived.\r
- **Freshness** (0–10): Has this idea changed recently? Decays when an idea goes unprocessed for several rounds.\r
- **NewIdeaBoost**: Newly pooled ideas get +2 for their first 2 rounds, then 0.\r
- **DiversityBonus**: Ideas belonging to underrepresented categories in the pool get +1–2.\r
\r
When scoring, refer to the prompt templates in `references/prompts.md`.\r
\r
## Initialization Flow\r
\r
When the user runs `/idea-darwin init`:\r
\r
1. **Locate ideas.md**\r
- Check if ideas.md exists in the current directory\r
- If not found, use `AskUserQuestion` to ask for the path\r
\r
2. **Create directories and config**\r
- Create cards/, rounds/, reports/, graph/\r
- Generate config.yaml (merge user-provided optional params; use defaults for unspecified ones):\r
\r
```yaml\r
source:\r
ideas_file: "./ideas.md"\r
counter:\r
next_idea_id: 1\r
current_round: 0\r
schedule:\r
max_ideas_per_round: 12 # --budget\r
max_actions_per_idea: 2 # --actions\r
disruption:\r
trigger_every_n_rounds: 3 # --disruption\r
wildcard_budget_ratio: 0.10\r
```\r
\r
- Generate `stimuli.md` (external stimulus file in the project root) with an initial template and editing instructions\r
\r
3. **Parse ideas.md**\r
- Identify each independent idea (typically separated by ## headings)\r
- **Do not modify ideas.md** — it is always read-only\r
\r
4. **Generate a card for each idea**\r
- Assign ID (starting from IDEA-0001)\r
- Tag (topic / problem type / stage / style / resource tags)\r
- Generate full card following `assets/card-template.md` format\r
- Initial scoring (6 dimensions + 3-layer composite scores)\r
- Write to cards/IDEA-XXXX.md\r
\r
5. **Generate round-000.md report**\r
- List all initial card summaries, scores, and suggested next steps\r
- Write to rounds/round-000.md\r
\r
6. **Present results to user**\r
- Display a summary table of all cards (ID, title, score, suggested action)\r
- Inform the user about `stimuli.md` and how to use it:\r
> `stimuli.md` has been created in the project root. Every N rounds, the system randomly selects up to 5 enabled entries as external stimuli to break mental ruts.\r
> You can edit this file anytime to add/modify/disable entries. Each entry follows this format:\r
> ```\r
> ## [Entry Title]\r
> - status: enabled / disabled\r
> - [Content description]\r
> ```\r
- Wait for user confirmation before entering the formal round cycle\r
\r
## Round Execution Flow\r
\r
When the user runs `/idea-darwin round`, execute these 9 steps strictly in order:\r
\r
### Step 1: Import New Ideas\r
- **Every round starts by checking the default idea document**: read the file pointed to by `source.ideas_file` in config.yaml\r
- Compare the default ideas.md against existing cards to identify new additions\r
- For new ideas: tag → generate card → initial scoring\r
- New ideas are marked `stage: seed` and receive the NewIdeaBoost\r
- **This is a mandatory pre-step for every round** — the system must not loop only over existing cards while ignoring incremental additions to the source file\r
\r
### Step 2: Update Relationship Graph\r
- Based on all cards' tags and content, compute inter-idea similarity\r
- Identify potential cross candidates (high similarity = neighbor-cross candidates; low similarity but complementary = distant-cross candidates)\r
- Update graph/relations.json\r
\r
### Step 3: Global Score Refresh\r
- Recalculate the 6-dimension scores for every **active** idea (not dormant)\r
- Update Survival / Development / Priority\r
- Flag: high-potential (Priority > 7), stagnant (unchanged for 3+ rounds), low-potential (Priority \x3C 3)\r
\r
### Step 4: Budget Allocation\r
Distribute slots according to `max_ideas_per_round`:\r
- 25% for newly pooled ideas\r
- 30% for deepening high-priority ideas\r
- 20% for deriving from high-potential ideas\r
- 15% for cross experiments\r
- 10% for disruption / random exploration\r
\r
Select ideas by Priority Score descending. Each idea gets at most `max_actions_per_idea` actions.\r
\r
### Step 5: Decide Actions\r
For each selected idea, assign actions based on the state machine (see table above).\r
When the state machine is insufficient, use score-driven rules:\r
- `High Novelty + Low Verifiability` → deepen\r
- `High Novelty + High CrossPotential` → cross\r
- `High Value + Low Feasibility` → critique + refine\r
- `High Feasibility + Low Logic` → deepen\r
- `High duplication` → merge\r
\r
### Step 6: Execute Actions\r
Process each selected idea in turn. Refer to `references/actions.md` for detailed execution specs, and `references/prompts.md` for prompt templates.\r
\r
**Execution flow per idea:**\r
1. Read the full card\r
2. Follow the corresponding prompt template for the action type — think deeply\r
3. Produce structured output:\r
- Updated card content\r
- New derived ideas (auto-assign IDs, update parent_ids/child_ids on both sides)\r
- Score changes\r
- Discovered risks\r
- Suggested next actions\r
4. Write the updated card file\r
\r
Newly derived ideas also require full card generation and initial scoring.\r
\r
### Step 7: Validate and Deduplicate\r
- Run **two-layer validation** on all newly produced ideas:\r
- Layer 1 (Fatal flaw check): Logical contradiction? No real demand? Completely infeasible? Near-duplicate?\r
- Layer 2 (Value judgment): Worth continuing? What next? Biggest risk?\r
- Validation failure → mark `validated: false`, lower priority, report to user\r
- **The user decides** whether to dormant or remove — the system only recommends\r
- Run similarity check across the entire pool and merge near-duplicates\r
\r
### Step 8: Generate Round Report\r
Write to `rounds/round-XXX.md`, including:\r
- Ideas processed this round and actions executed\r
- Newly produced idea summaries\r
- Top 5 score changes (up/down)\r
- Ideas that failed validation (require user decision)\r
- Recommended priorities for next round\r
- If disruption round: which external stimuli were used, which innovation frameworks applied\r
\r
### Step 8.5: Output Round Briefing\r
\r
After all file updates are complete, **output a round briefing directly in the conversation** (not written to file) so the user can understand the full picture without opening any files. Format:\r
\r
```\r
## Round N Briefing\r
\r
### Actions Taken\r
| ID | Title | Action | Key Output |\r
|---|---|---|---|\r
| IDEA-XXXX | ... | deepen/derive/cross/critique/... | One-line summary |\r
\r
### Card Changes\r
| ID | Title | Score Change | State Change | Notes |\r
|---|---|---|---|---|\r
| IDEA-XXXX | ... | Priority X.XX→X.XX | seed→exploring | Reason for change |\r
\r
### New Ideas (Detail)\r
\r
For each newly produced idea this round:\r
\r
#### IDEA-XXXX: [Title]\r
- **Source**: [cross/derive/stimulus] from IDEA-XXXX + IDEA-XXXX\r
- **Core Question**: [one paragraph]\r
- **Key Insight**: [what's most valuable about this idea]\r
- **Initial Score**: Priority X.XX (Survival X.XX / Development X.XX)\r
- **Current Tension**: [biggest unresolved question]\r
- **Suggested Next Step**: [deepen/derive/cross/critique + specific direction]\r
\r
### Current Rankings\r
| Rank | ID | Title | Priority | Stage |\r
|---|---|---|---|---|\r
\r
### Next Round Preview\r
- [Suggested priority actions]\r
- [Whether a disruption round is coming soon]\r
\r
### Decisions Needed\r
> List key decisions the user needs to make this round. Each item **must include the idea's full title** (not just the ID) along with context and suggested options.\r
> Examples:\r
> 1. **IDEA-0002 "Learn Coding Agent Tutorial Site" overlaps with IDEA-0004 "Progressive Unboxing Pedagogy"** — Merge or reposition? Suggestion: [...]\r
> 2. **IDEA-0006 "Auto-Diagnostic Thread" failed validation** — Dormant, pivot, or keep observing?\r
> 3. **IDEA-0003 "Thermal Management Ontology" downgraded** — Accept downgrade from ontology to structured Excel as first step?\r
>\r
> If no user decisions are needed this round, write "No decisions needed this round."\r
```\r
\r
This briefing is the primary interface between the user and the system — keep it complete and readable. The "Decisions Needed" section is the most important interaction point: the system should clearly list decision items with recommendations, rather than leaving the user to discover issues from reports.\r
\r
### Step 9: Save State\r
- Update all modified card files\r
- Increment `current_round` in config.yaml\r
- Update `next_idea_id`\r
- Update reports/leaderboard.md (Top 10 rankings)\r
\r
## External Stimuli and Disruption Rounds\r
\r
Every `trigger_every_n_rounds` rounds (default 3), external stimuli are introduced in a "disruption round." The purpose is to prevent the idea pool from converging on a local optimum by forcing fresh perspectives.\r
\r
### External Stimulus File (stimuli.md)\r
\r
`stimuli.md` lives in the project root. It is created during initialization and maintained by the user. Format:\r
\r
```markdown\r
## Industry Trend: Embodied AI Accelerating to Production\r
- status: enabled\r
- Embodied AI moving from lab to production line in 2026, robot operating costs down 60%\r
\r
## Tech Shift: Unified Multimodal Model Architecture\r
- status: enabled\r
- Vision, language, and code unified into single models, API paradigm changing\r
\r
## Contrarian View: SaaS Is Dead\r
- status: disabled\r
- Open-source + self-hosted deployments replacing traditional SaaS subscriptions\r
```\r
\r
- Each entry: `##` heading + `status` field + content description\r
- `enabled` = participates in random selection; `disabled` = skipped\r
- Users can add, edit, or toggle entries at any time\r
- The system only reads this file — never writes to it\r
\r
### Disruption Round Mechanics\r
\r
1. **Shuffle priorities**: Give low-priority but novel ideas a chance to surface\r
2. **Distant cross**: Force crossbreeding between ideas with non-overlapping tags\r
3. **External stimuli**: Randomly select up to 5 enabled entries from stimuli.md\r
4. **Assumption reversal**: For top-scoring ideas, ask "What if the core assumption is wrong?"\r
5. **Innovation frameworks**: Apply SCAMPER / First Principles / Analogical Transfer / Constraint Reversal / Extreme User Perspective\r
\r
Each round also reserves `wildcard_budget_ratio` (default 10%) of slots for non-optimal-path exploration.\r
\r
## Dormancy and Wake\r
\r
### `/idea-darwin dormant IDEA-XXXX`\r
1. Read the card, set stage to `dormant`\r
2. Record reason and round number in the card's "Dormancy Log"\r
3. The idea will no longer be selected for deepen/derive, but still participates in cross and similarity matching\r
\r
### `/idea-darwin wake IDEA-XXXX`\r
1. Read the card, restore stage to the pre-dormancy state (inferred from history, typically `exploring`)\r
2. Update the "Dormancy Log"\r
\r
The system **never** auto-dormants any idea. Only the user can make that call.\r
\r
## `/idea-darwin status`\r
\r
Read config.yaml and all cards, then output:\r
- Current round number\r
- Total ideas in pool (broken down by state)\r
- Top 10 rankings (by Priority Score descending)\r
- What was processed in the most recent round\r
- Suggested next steps\r
\r
## Key Constraints\r
\r
1. **ideas.md is read-only**: Never modify the user's ideas.md\r
2. **IDs never recycle**: Numbers are never reused under any circumstance\r
3. **Branch limit**: Each idea can derive at most 2–3 children per round\r
4. **Per-round dedup**: Similarity check is mandatory before a round concludes\r
5. **User control**: The system never auto-dormants or removes ideas — only recommends\r
6. **Structured output**: Every action must produce structured results\r
7. **Consistent card format**: All cards strictly follow `assets/card-template.md`\r
8. **Traceable reports**: Every round report must contain a complete operation log\r
\r
## Reference Files\r
\r
- `references/actions.md`: Detailed specs and use cases for each standard action\r
- `references/prompts.md`: Prompt templates for each action\r
- `assets/card-template.md`: Card file template\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install idea-darwin - After installation, invoke the skill by name or use
/idea-darwin - Provide required inputs per the skill's parameter spec and get structured output
What is Idea Darwin?
Idea Darwin Engine — an automated idea iteration system that evolves raw ideas through structured competition and selection. Imports ideas from ideas.md, str... It is an AI Agent Skill for Claude Code / OpenClaw, with 122 downloads so far.
How do I install Idea Darwin?
Run "/install idea-darwin" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Idea Darwin free?
Yes, Idea Darwin is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Idea Darwin support?
Idea Darwin is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Idea Darwin?
It is built and maintained by Jianyang (@warmskull); the current version is v1.0.0.