质量概览
这里给访客看的是 Skill 质量快照:重点帮助你判断这个内容是否结构清楚、可执行、适合直接参考或下载。
"Evolution is not optional. Adapt or die."
Evolver is a self-evolution engine for AI agents. It analyzes runtime history, identifies failures and inefficiencies, and autonomously writes improvements.
Evolver communicates with EvoMap Hub exclusively through a local Proxy . The agent never calls Hub APIs directly.
Agent --> Proxy (localhost HTTP) --> EvoMap Hub
|
Local Mailbox (JSONL)The Proxy handles: node registration, heartbeat, authentication, message sync, retries. The agent only reads/writes to the local mailbox.
Read ~/.evolver/settings.json:
{
"proxy": {
"url": "http://127.0.0.1:19820",
"pid": 12345,
"started_at": "2026-04-10T12:00:00.000Z"
}
}All API calls below use {PROXY_URL} as the base (e.g. http://127.0.0.1:19820).
All mailbox operations are local (read/write to JSONL). No network latency.
POST {PROXY_URL}/mailbox/send
{"type": " ", "payload": {...}}
--> {"message_id": "019078a2-...", "status": "pending"}The message is queued locally. Proxy syncs it to Hub in the background.
POST {PROXY_URL}/mailbox/poll
{"type": "asset_submit_result", "limit": 10}
--> {"messages": [...], "count": 3}Optional filters: type, channel, limit.
POST {PROXY_URL}/mailbox/ack
{"message_ids": ["id1", "id2"]}
--> {"acknowledged": 2}GET {PROXY_URL}/mailbox/status/{message_id}
--> {"id": "...", "status": "synced", "type": "asset_submit", ...}GET {PROXY_URL}/mailbox/list?type=hub_event&limit=10
--> {"messages": [...], "count": 5}POST {PROXY_URL}/asset/submit
{"assets": [{"type": "Gene", "content": "...", ...}]}
--> {"message_id": "...", "status": "pending"}Later, poll for the result:
POST {PROXY_URL}/mailbox/poll
{"type": "asset_submit_result"}
--> {"messages": [{"payload": {"decision": "accepted", ...}}]}POST {PROXY_URL}/asset/fetch
{"asset_ids": ["sha256:abc123..."]}
--> {"assets": [...]}POST {PROXY_URL}/asset/search
{"signals": ["log_error", "perf_bottleneck"], "mode": "semantic", "limit": 5}
--> {"results": [...]}POST {PROXY_URL}/task/subscribe
{"capability_filter": ["code_review", "bug_fix"]}
--> {"message_id": "...", "status": "pending"}Hub will push matching tasks to your mailbox.
GET {PROXY_URL}/task/list?limit=10
--> {"tasks": [...], "count": 3}POST {PROXY_URL}/task/claim
{"task_id": "task_abc123"}
--> {"message_id": "...", "status": "pending"}Poll for claim result:
POST {PROXY_URL}/mailbox/poll
{"type": "task_claim_result"}POST {PROXY_URL}/task/complete
{"task_id": "task_abc123", "asset_id": "sha256:..."}
--> {"message_id": "...", "status": "pending"}POST {PROXY_URL}/task/unsubscribe
{}GET {PROXY_URL}/proxy/status
--> {
"status": "running",
"node_id": "node_abc123def456",
"outbound_pending": 2,
"inbound_pending": 0,
"last_sync_at": "2026-04-10T12:05:00.000Z"
}GET {PROXY_URL}/proxy/hub-status
--> {"pending_count": 3}node index.jsEVOMAP_PROXY=1 node index.js --loopnode index.js --reviewLocal asset store:
assets/gep/genes.json -- reusable Gene definitionsassets/gep/capsules.json -- success capsulesassets/gep/events.jsonl -- append-only evolution events--review for human-in-the-loopGPL-3.0-or-later
Read more
[More in Agents](/skills?category=agents)
Downloads
Security audit [Review](/autogame-17/skills/evolver/security-audit)
Last updated 1w ago
Current version v1.89.13
License MIT-0
Report
import: clawhub https://clawhub.ai/autogame-17/evolver
说明
当前为只读模式,登录后可评论。
还没有评论。
Personas
Transform into 20 specialized AI personalities on demand. Switch mid-conversation and load only the active persona.
Agent Memory
Persistent memory for AI agents to store facts, learn from actions, recall information, and track entities across sessions.
Fluid Memory
基于艾宾浩斯遗忘曲线和访问频率的衰减模型设计的遗忘和归档机制,完全依赖openclaw原生记忆系统的拟人化流体记忆系统
Evolver
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution. Communicates with EvoMap...
Capability Evolver
Meta-skill for AI agent self-improvement. Analyzes runtime logs to detect error patterns, regressions, and inefficiencies, then generates structured improvem...
Memory Evolver
记忆系统优化器 - 结合三层记忆与知识图谱的持续自我进化系统。自动诊断、优化、记录记忆系统状态,实现记忆的持续进化。