Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

idea-darwin达尔文思想

Agent Skill

idea-darwin 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,708

周安装

150

GitHub Stars

公开资料未说明

下载量

1,164
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:idea-darwin(达尔文思想)
来源仓库:https://github.com/warmskull/idea-darwin
安装命令:
openclaw skills install idea-darwin
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install idea-darwin

简介

自动化迭代原始创意,通过结构化竞争机制筛选高潜力想法。

  • 适用于创新孵化与产品概念优化,提升创意到落地的转化效率。
  • 从 ideas.md 导入想法卡片,运行深化、派生、批判等轮次生成新方案。
  • 需维护本地 Markdown 文件作为想法输入源与历史记录载体。
  • 建议定期备份数据以防迭代过程中意外丢失进度。

SKILL.md

name
idea-darwin
version
1.0.0
emoji
🧬
homepage
https://github.com/warmskull/idea-darwin
description
|

Idea Darwin Engine

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.

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.

Commands

CommandDescription
/idea-darwin initInitialize: parse ideas.md, create directory structure, config, and initial cards (optional params below)
/idea-darwin roundExecute the next iteration round
/idea-darwin round NExecute N consecutive rounds
/idea-darwin statusView idea pool status and rankings
/idea-darwin dormant IDEA-XXXXPut a specific idea into dormancy
/idea-darwin wake IDEA-XXXXWake a dormant idea
/idea-darwinNo arguments: show brief status and suggest next step

Arguments are extracted from $ARGUMENTS. If no arguments are provided, show current status and suggestions.

init Optional Parameters

ParameterDescriptionDefault
--budget <N>Max ideas to process per round12
--actions <N>Max actions per idea per round2
--disruption <N>Introduce external stimulus every N rounds (disruption round)3

Example: /idea-darwin init --budget 8 --actions 3 --disruption 5

These parameters are written to config.yaml and can be manually edited later. Unspecified parameters use defaults.

File Structure

The system maintains this structure in the working directory (created during initialization):

project/
├── ideas.md          # User's raw ideas (read-only — never modify this file)
├── config.yaml       # System configuration and state
├── stimuli.md        # External stimulus entries (user-editable, system read-only)
├── cards/            # Idea cards
│   ├── IDEA-0001.md
│   └── ...
├── rounds/           # Round reports
│   ├── round-000.md
│   └── ...
├── reports/          # Leaderboard and cluster reports
│   └── leaderboard.md
└── graph/            # Relationship graph
    └── relations.json

Idea Numbering

  • Format: IDEA-XXXX (4-digit zero-padded, starting from 0001)
  • Globally unique — numbers are never recycled, even for dormant or removed ideas
  • config.yaml tracks the next available number in next_idea_id
  • Each idea card records lineage via parent_ids and child_ids

Idea State Machine

seed → exploring → refining → crossing → validated → dormant
StateMeaningAvailable Actions
seedJust entered the poolTagging, card generation, deepen, quick cross-validation
exploringExploration phaseDeepen, derive, critique, preliminary cross
refiningPolishing phaseLogic reinforcement, feasibility analysis, risk check
crossingHigh-cross phaseMerge with complementary ideas, evaluate fusion quality
validatedVerifiedOutput MVP plan, generate execution roadmap
dormantHibernatingPassive participation in cross and similarity matching only

State transitions are recommended by the system based on scores and action results, but the user always has final say.

Scoring System

6 Scoring Dimensions (1–10 each)

DimensionWeightMeaning
Novelty0.10Is there a genuine breakthrough, or just repetition?
Feasibility0.20Is this technically, resource-wise, and path-wise achievable?
Value0.20How much impact would this create if successful?
Logic0.20Is it internally consistent, with no obvious gaps?
CrossPotential0.10How likely is this to spark something new when combined with other ideas?
Verifiability0.20Can we design an experiment or minimum validation path?

Three-Layer Scoring Formula

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.

Survival = 0.10×Novelty + 0.20×Feasibility + 0.20×Value
         + 0.20×Logic + 0.10×CrossPotential + 0.20×Verifiability

Development = 0.30×Novelty + 0.30×CrossPotential
            + 0.20×VariationPotential + 0.20×Freshness

Priority = 0.50×Survival + 0.30×Development
         + 0.10×NewIdeaBoost + 0.10×DiversityBonus
  • VariationPotential (0–10): How many distinct directions can this idea still branch into. Decreases as more children are derived.
  • Freshness (0–10): Has this idea changed recently? Decays when an idea goes unprocessed for several rounds.
  • NewIdeaBoost: Newly pooled ideas get +2 for their first 2 rounds, then 0.
  • DiversityBonus: Ideas belonging to underrepresented categories in the pool get +1–2.

When scoring, refer to the prompt templates in references/prompts.md.

Initialization Flow

When the user runs /idea-darwin init:

  1. Locate ideas.md

- Check if ideas.md exists in the current directory - If not found, use AskUserQuestion to ask for the path

  1. Create directories and config

- Create cards/, rounds/, reports/, graph/ - Generate config.yaml (merge user-provided optional params; use defaults for unspecified ones):

source:
  ideas_file: "./ideas.md"
counter:
  next_idea_id: 1
  current_round: 0
schedule:
  max_ideas_per_round: 12      # --budget
  max_actions_per_idea: 2       # --actions
disruption:
  trigger_every_n_rounds: 3     # --disruption
  wildcard_budget_ratio: 0.10

- Generate stimuli.md (external stimulus file in the project root) with an initial template and editing instructions

  1. Parse ideas.md

- Identify each independent idea (typically separated by ## headings) - Do not modify ideas.md — it is always read-only

  1. Generate a card for each idea

- Assign ID (starting from IDEA-0001) - Tag (topic / problem type / stage / style / resource tags) - Generate full card following assets/card-template.md format - Initial scoring (6 dimensions + 3-layer composite scores) - Write to cards/IDEA-XXXX.md

  1. Generate round-000.md report

- List all initial card summaries, scores, and suggested next steps - Write to rounds/round-000.md

  1. Present results to user

- Display a summary table of all cards (ID, title, score, suggested action) - Inform the user about stimuli.md and how to use it: > 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. > You can edit this file anytime to add/modify/disable entries. Each entry follows this format: > `` > ## [Entry Title] > - status: enabled / disabled > - [Content description] > `` - Wait for user confirmation before entering the formal round cycle

Round Execution Flow

When the user runs /idea-darwin round, execute these 9 steps strictly in order:

Step 1: Import New Ideas

  • Every round starts by checking the default idea document: read the file pointed to by source.ideas_file in config.yaml
  • Compare the default ideas.md against existing cards to identify new additions
  • For new ideas: tag → generate card → initial scoring
  • New ideas are marked stage: seed and receive the NewIdeaBoost
  • 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

Step 2: Update Relationship Graph

  • Based on all cards' tags and content, compute inter-idea similarity
  • Identify potential cross candidates (high similarity = neighbor-cross candidates; low similarity but complementary = distant-cross candidates)
  • Update graph/relations.json

Step 3: Global Score Refresh

  • Recalculate the 6-dimension scores for every active idea (not dormant)
  • Update Survival / Development / Priority
  • Flag: high-potential (Priority > 7), stagnant (unchanged for 3+ rounds), low-potential (Priority < 3)

Step 4: Budget Allocation

Distribute slots according to max_ideas_per_round:

  • 25% for newly pooled ideas
  • 30% for deepening high-priority ideas
  • 20% for deriving from high-potential ideas
  • 15% for cross experiments
  • 10% for disruption / random exploration

Select ideas by Priority Score descending. Each idea gets at most max_actions_per_idea actions.

Step 5: Decide Actions

For each selected idea, assign actions based on the state machine (see table above). When the state machine is insufficient, use score-driven rules:

  • High Novelty + Low Verifiability → deepen
  • High Novelty + High CrossPotential → cross
  • High Value + Low Feasibility → critique + refine
  • High Feasibility + Low Logic → deepen
  • High duplication → merge

Step 6: Execute Actions

Process each selected idea in turn. Refer to references/actions.md for detailed execution specs, and references/prompts.md for prompt templates.

Execution flow per idea:

  1. Read the full card
  2. Follow the corresponding prompt template for the action type — think deeply
  3. Produce structured output:

- Updated card content - New derived ideas (auto-assign IDs, update parent_ids/child_ids on both sides) - Score changes - Discovered risks - Suggested next actions

  1. Write the updated card file

Newly derived ideas also require full card generation and initial scoring.

Step 7: Validate and Deduplicate

  • Run two-layer validation on all newly produced ideas:

- Layer 1 (Fatal flaw check): Logical contradiction? No real demand? Completely infeasible? Near-duplicate? - Layer 2 (Value judgment): Worth continuing? What next? Biggest risk?

  • Validation failure → mark validated: false, lower priority, report to user
  • The user decides whether to dormant or remove — the system only recommends
  • Run similarity check across the entire pool and merge near-duplicates

Step 8: Generate Round Report

Write to rounds/round-XXX.md, including:

  • Ideas processed this round and actions executed
  • Newly produced idea summaries
  • Top 5 score changes (up/down)
  • Ideas that failed validation (require user decision)
  • Recommended priorities for next round
  • If disruption round: which external stimuli were used, which innovation frameworks applied

Step 8.5: Output Round Briefing

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:

## Round N Briefing

### Actions Taken
| ID | Title | Action | Key Output |
|---|---|---|---|
| IDEA-XXXX | ... | deepen/derive/cross/critique/... | One-line summary |

### Card Changes
| ID | Title | Score Change | State Change | Notes |
|---|---|---|---|---|
| IDEA-XXXX | ... | Priority X.XX→X.XX | seed→exploring | Reason for change |

### New Ideas (Detail)

For each newly produced idea this round:

#### IDEA-XXXX: [Title]
- **Source**: [cross/derive/stimulus] from IDEA-XXXX + IDEA-XXXX
- **Core Question**: [one paragraph]
- **Key Insight**: [what's most valuable about this idea]
- **Initial Score**: Priority X.XX (Survival X.XX / Development X.XX)
- **Current Tension**: [biggest unresolved question]
- **Suggested Next Step**: [deepen/derive/cross/critique + specific direction]

### Current Rankings
| Rank | ID | Title | Priority | Stage |
|---|---|---|---|---|

### Next Round Preview
- [Suggested priority actions]
- [Whether a disruption round is coming soon]

### Decisions Needed
> 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.
> Examples:
> 1. **IDEA-0002 "Learn Coding Agent Tutorial Site" overlaps with IDEA-0004 "Progressive Unboxing Pedagogy"** — Merge or reposition? Suggestion: [...]
> 2. **IDEA-0006 "Auto-Diagnostic Thread" failed validation** — Dormant, pivot, or keep observing?
> 3. **IDEA-0003 "Thermal Management Ontology" downgraded** — Accept downgrade from ontology to structured Excel as first step?
>
> If no user decisions are needed this round, write "No decisions needed this round."

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.

Step 9: Save State

  • Update all modified card files
  • Increment current_round in config.yaml
  • Update next_idea_id
  • Update reports/leaderboard.md (Top 10 rankings)

External Stimuli and Disruption Rounds

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.

External Stimulus File (stimuli.md)

stimuli.md lives in the project root. It is created during initialization and maintained by the user. Format:

## Industry Trend: Embodied AI Accelerating to Production
- status: enabled
- Embodied AI moving from lab to production line in 2026, robot operating costs down 60%

## Tech Shift: Unified Multimodal Model Architecture
- status: enabled
- Vision, language, and code unified into single models, API paradigm changing

## Contrarian View: SaaS Is Dead
- status: disabled
- Open-source + self-hosted deployments replacing traditional SaaS subscriptions
  • Each entry: ## heading + status field + content description
  • enabled = participates in random selection; disabled = skipped
  • Users can add, edit, or toggle entries at any time
  • The system only reads this file — never writes to it

Disruption Round Mechanics

  1. Shuffle priorities: Give low-priority but novel ideas a chance to surface
  2. Distant cross: Force crossbreeding between ideas with non-overlapping tags
  3. External stimuli: Randomly select up to 5 enabled entries from stimuli.md
  4. Assumption reversal: For top-scoring ideas, ask "What if the core assumption is wrong?"
  5. Innovation frameworks: Apply SCAMPER / First Principles / Analogical Transfer / Constraint Reversal / Extreme User Perspective

Each round also reserves wildcard_budget_ratio (default 10%) of slots for non-optimal-path exploration.

Dormancy and Wake

/idea-darwin dormant IDEA-XXXX

  1. Read the card, set stage to dormant
  2. Record reason and round number in the card's "Dormancy Log"
  3. The idea will no longer be selected for deepen/derive, but still participates in cross and similarity matching

/idea-darwin wake IDEA-XXXX

  1. Read the card, restore stage to the pre-dormancy state (inferred from history, typically exploring)
  2. Update the "Dormancy Log"

The system never auto-dormants any idea. Only the user can make that call.

/idea-darwin status

Read config.yaml and all cards, then output:

  • Current round number
  • Total ideas in pool (broken down by state)
  • Top 10 rankings (by Priority Score descending)
  • What was processed in the most recent round
  • Suggested next steps

Key Constraints

  1. ideas.md is read-only: Never modify the user's ideas.md
  2. IDs never recycle: Numbers are never reused under any circumstance
  3. Branch limit: Each idea can derive at most 2–3 children per round
  4. Per-round dedup: Similarity check is mandatory before a round concludes
  5. User control: The system never auto-dormants or removes ideas — only recommends
  6. Structured output: Every action must produce structured results
  7. Consistent card format: All cards strictly follow assets/card-template.md
  8. Traceable reports: Every round report must contain a complete operation log

Reference Files

  • references/actions.md: Detailed specs and use cases for each standard action
  • references/prompts.md: Prompt templates for each action
  • assets/card-template.md: Card file template

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.61%
按下载量换算845

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills