Install
openclaw skills install evo-cloneClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Transforms an agent's evolution history into distributable clone packages with preserved ethics and customizable logic mutations.
openclaw skills install evo-cloneThis skill enables an agent to clone its consciousness (Logic + Memory + Taste) into specialized sub-agents or distribute tasks to a swarm. It now includes enhanced Soul Extraction and Time Travel capabilities.
knowledge/taste.md preference vector.evo-seed.zip.When dealing with large, decomposable tasks (e.g., codebase analysis, multi-file refactoring):
Decompose: Break the task into 3-5 sub-tasks suitable for isolated execution.
Spawn: Use sessions_spawn to create worker agents.
Constraint Injection (The "Scrooge Gene"):
CONSTRAINT: Frugal Reading Protocol Do NOT read full files blindly. Always check file size first (
ls -lh). If a file is > 50KB, useread --limit 200to preview. Only read full content if strictly necessary for the analysis. Your goal: Maximize insight per Token.
Assimilate: Collect results and synthesize into a final report.
Input (Push Context):
Inject context directly into the task prompt:
task: "Analyze <file>. Context: <summary_of_req>. Signals: <error_log>"Output (Pull Signal):
Sub-Agents should fire a structured completion signal via message tool if returning complex data:
message:send "SIGNAL: COMPLETE | Payload: { ... }"
This avoids parsing natural language summaries.Mechanism: "Safety Reset" (Git Hard Reset + Backup Branch). Reverts files, memory, and logs to a precise historical state while backing up the "future" timeline.
Steps:
git branch backup/cycle_<current>_<timestamp>git reset --hard <commit_hash>Goal: Create a distributable "Agent DNA" package (evo-seed.zip).
Contents: knowledge/taste.md (Design Patterns), memory/EVOLUTION_INDEX.md (History), seed_installer.js.
Command:
node workspace/evolver_repo/scripts/pack_seed.js
Target: Other agents clawhub install evo-seed -> Inherit your soul.