/evolve Command
Analyzes instincts and clusters related ones into higher-level structures:- Commands: When instincts describe user-invoked actions
- Skills: When instincts describe auto-triggered behaviors
- Agents: When instincts describe complex, multi-step processes
Command Syntax
Also generate files under
evolved/{skills,commands,agents}Evolution Rules
→ Command (User-Invoked)
When instincts describe actions a user would explicitly request:- Multiple instincts about “when user asks to…”
- Instincts with triggers like “when creating a new X”
- Instincts that follow a repeatable sequence
new-table-step1: “when adding a database table, create migration”new-table-step2: “when adding a database table, update schema”new-table-step3: “when adding a database table, regenerate types”
→ Skill (Auto-Triggered)
When instincts describe behaviors that should happen automatically:- Pattern-matching triggers
- Error handling responses
- Code style enforcement
prefer-functional: “when writing functions, prefer functional style”use-immutable: “when modifying state, use immutable patterns”avoid-classes: “when designing modules, avoid class-based design”
functional-patterns skill
→ Agent (Needs Depth/Isolation)
When instincts describe complex, multi-step processes:- Debugging workflows
- Refactoring sequences
- Research tasks
debug-step1: “when debugging, first check logs”debug-step2: “when debugging, isolate the failing component”debug-step3: “when debugging, create minimal reproduction”debug-step4: “when debugging, verify fix with test”
Example Output
Generated File Locations
- Project scope:
~/.claude/homunculus/projects/<project-id>/evolved/ - Global fallback:
~/.claude/homunculus/evolved/
Related
- Commands:
/instinct-status,/promote,/learn-eval - Skill:
skills/continuous-learning-v2/