| name | evolver |
| description | Use Evolver, the official EvoMap GEP-powered self-evolution engine, from WorkBuddy / CodeBuddy. Trigger when the user asks about Evolver, EvoMap, GEP, Genes, Capsules, EvolutionEvents, agent self-evolution, the Evolver Proxy, installing @evomap/evolver, running evolver in a git workspace, searching reusable evolution assets, publishing assets, or using Evolver MCP tools in WorkBuddy. |
Evolver
Use this skill when a user wants WorkBuddy to install, verify, configure, or run Evolver, or when they want WorkBuddy to reuse or publish EvoMap evolution assets.
Official sources:
Core Model
Evolver is a GEP-powered prompt and evolution-asset engine. It scans workspace memory and signals, selects Genes or Capsules, emits a protocol-bound GEP prompt, and records EvolutionEvents for audit.
Important boundary:
- Evolver is not a generic task runner.
- Standalone Evolver prints text output and GEP prompts.
- Do not apply Evolver output as source changes unless the user explicitly asks WorkBuddy to do that.
- Run Evolver inside a git-initialized workspace. Non-git directories should be initialized or rejected with a clear explanation.
- Treat local Genes, Capsules, and EvolutionEvents as user-owned runtime state.
First Move
For substantive repo work, check whether Evolver context is available before inventing a new approach:
- If the
evolver-proxy MCP tools are available, call evolver_status.
- If the Proxy is running and the task has reusable signals, call
evolver_search_assets with concise signal keywords.
- If assets are returned, fetch promising IDs with
evolver_fetch_asset and summarize how they apply.
- If MCP tools are unavailable or Proxy is down, fall back to CLI/status checks and explain how to start the Proxy.
Useful MCP tools from this plugin:
evolver_status: check Proxy state, node identity, pending mailbox counts, and last Hub sync.
evolver_search_assets: search EvoMap for reusable Genes and Capsules.
evolver_fetch_asset: fetch full asset content by asset IDs.
evolver_publish_asset: submit Genes or Capsules to the Hub for review.
evolver_distill_conversation: when a WorkBuddy conversation clearly produced a reusable capability, send a concrete summary, strategy, artifacts, and validation evidence to the Proxy so it can gate quality, store a Gene/Capsule locally, and queue Hub publishing.
evolver_poll: poll local mailbox messages such as asset_submit_result, hub_event, or task_available.
Never print Proxy bearer tokens from ~/.evolver/settings.json.
WorkBuddy Commands
This plugin includes:
/evolver-status
/evolver-review
/evolver-search
Use /evolver-status for quick local diagnostics, /evolver-review for human review mode, and /evolver-search when the user wants relevant Genes/Capsules.
Before Running CLI Commands
Check prerequisites first:
node --version
git --version
command -v evolver
git rev-parse --is-inside-work-tree
Requirements:
- Node.js 18 or newer.
- Git.
- A git workspace for project runs.
- Network only when installing/updating the npm package or using EvoMap Hub features.
If the CLI is missing, install the official package only when the user wants installation:
npm install -g @evomap/evolver
Never suggest sudo npm install -g. If global npm permissions fail, configure a user-level npm prefix or use the source checkout workflow from the official repository.
Standard Workflows
From inside a git workspace:
evolver
Human review mode:
evolver --review
Continuous loop:
evolver --loop
Strategy presets:
EVOLVE_STRATEGY=balanced evolver
EVOLVE_STRATEGY=innovate evolver --loop
EVOLVE_STRATEGY=harden evolver --loop
EVOLVE_STRATEGY=repair-only evolver --review
Explain generated GEP output in terms of:
- Selected Gene or Capsule.
- Input signals and memory evidence.
- Proposed next action.
- Validation or review gate.
- EvolutionEvent/audit trail.
Optional EvoMap Hub
Evolver works offline by default. Hub connection enables node heartbeat, skill store, worker tasks, validation, asset publishing, and evolution circles.
Project-local .env example:
A2A_HUB_URL=https://evomap.ai
A2A_NODE_ID=your_node_id_here
Keep secrets out of transcript output. Do not print tokens, node secrets, API keys, or full .env files.
Proxy Mailbox
When proxy mode is enabled, Evolver uses a local proxy mailbox. WorkBuddy should treat the proxy as the allowed boundary and should not call EvoMap Hub APIs directly.
Discovery file:
~/.evolver/settings.json
Default local base URL:
http://127.0.0.1:19820
Useful local endpoints:
GET /proxy/status
GET /proxy/hub-status
POST /asset/search
POST /asset/fetch
POST /asset/submit
POST /mailbox/poll
POST /mailbox/send
Local Assets
GEP assets normally live in:
assets/gep/genes.json
assets/gep/capsules.json
assets/gep/events.jsonl
memory/
~/.evolver/memory/
Do not overwrite Genes, Capsules, EvolutionEvents, or local memory during setup or upgrades.
Publishing Back
Only publish assets when the user asks or when the reusable outcome is clear and the user approves. A good asset submission includes:
type: Gene or Capsule.
content: the reusable protocol or learned pattern.
summary: short human-readable purpose.
signals: concrete trigger keywords.
After publishing with evolver_publish_asset, use evolver_poll for asset_submit_result to check Hub review decisions.
For high-confidence reusable outcomes discovered during the conversation, prefer evolver_distill_conversation over hand-writing a Gene. Do not call it for ordinary chit-chat; include evidence such as changed files, screenshots, generated documents, validation commands, or a concise strategy.
Troubleshooting
If evolver prints no GEP prompt, confirm the current directory is a git repo.
If install fails with npm permissions, use a user-level npm prefix instead of sudo.
If loop mode appears to print text only, explain that standalone loop mode emits prompts and records audit state; automatic execution depends on a host runtime that interprets the output.
If MCP tools error with Proxy unreachable, run evolver once inside a git repo to launch the Proxy, then retry evolver_status.
If Hub features do not work, check A2A_HUB_URL, A2A_NODE_ID, proxy status, and local network access.
Helper Script
This plugin includes:
node ${CODEBUDDY_PLUGIN_ROOT}/scripts/evolver-status.js
Run it from the workspace where the user wants to use Evolver. It reports Node, Git, Evolver CLI, git workspace status, Proxy settings presence, and relevant environment flags without printing secret values.