← All plugins
claude-evolve
v0.4.5Evolutionary code discovery using Claude Code models
Claude Code4 skills1 MCP serverstdio
by Samuel XuMIT15updated 1 month ago
Source
git clone https://github.com/samuelzxu/claude-evolveClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
claude-evolve/
├── .claude-plugin/plugin.json├── skills/evolve/SKILL.md├── skills/evolve-install/SKILL.md├── skills/evolve-interview/SKILL.md├── skills/evolve-status/SKILL.md└── .mcp.json
Skills4
evolveskills/evolve/SKILL.md
Start an autonomous evolutionary code optimization run
evolve-installskills/evolve-install/SKILL.md
Install, verify, or refresh the claude-evolve plugin (Python deps, venv, MCP server)
evolve-interviewskills/evolve-interview/SKILL.md
Socratic deep interview with mathematical ambiguity gating to crystallize an evolution task (produces initial.py, evaluate.py, config.json)
evolve-statusskills/evolve-status/SKILL.md
Check the progress of an active evolution run
MCP servers1
estdio
- command
- node
- args
- ${CLAUDE_PLUGIN_ROOT}/bridge/mcp-wrapper.mjs
MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.
Manifests1
.claude-plugin/plugin.json
{
"name": "claude-evolve",
"version": "0.4.5",
"description": "Evolutionary code discovery using Claude Code models",
"author": {
"name": "Samuel Xu"
},
"repository": "https://github.com/samuelzxu/claude-evolve",
"homepage": "https://github.com/samuelzxu/claude-evolve",
"license": "MIT",
"keywords": [
"claude-code",
"plugin",
"evolution",
"optimization",
"shinka"
],
"skills": "./skills/"
}