2026-02-20 01:11:30 -08:00
|
|
|
---
|
2026-03-02 04:07:13 +08:00
|
|
|
description: Analyze instincts and suggest or generate evolved structures
|
2026-07-10 09:46:40 +05:30
|
|
|
agent: build
|
2026-02-20 01:11:30 -08:00
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Evolve Command
|
|
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
Analyze and evolve instincts in continuous-learning-v2: $ARGUMENTS
|
2026-02-20 01:11:30 -08:00
|
|
|
|
|
|
|
|
## Your Task
|
|
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
Run:
|
2026-02-20 01:11:30 -08:00
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
```bash
|
|
|
|
|
python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" evolve $ARGUMENTS
|
2026-02-20 01:11:30 -08:00
|
|
|
```
|
|
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
If `CLAUDE_PLUGIN_ROOT` is unavailable, use:
|
2026-02-20 01:11:30 -08:00
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
```bash
|
|
|
|
|
python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py evolve $ARGUMENTS
|
2026-02-20 01:11:30 -08:00
|
|
|
```
|
|
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
## Supported Args (v2.1)
|
2026-02-20 01:11:30 -08:00
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
- no args: analysis only
|
|
|
|
|
- `--generate`: also generate files under `evolved/{skills,commands,agents}`
|
2026-02-20 01:11:30 -08:00
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
## Behavior Notes
|
2026-02-20 01:11:30 -08:00
|
|
|
|
2026-03-02 04:07:13 +08:00
|
|
|
- Uses project + global instincts for analysis.
|
|
|
|
|
- Shows skill/command/agent candidates from trigger and domain clustering.
|
|
|
|
|
- Shows project -> global promotion candidates.
|
|
|
|
|
- With `--generate`, output path is:
|
|
|
|
|
- project context: `~/.claude/homunculus/projects/<project-id>/evolved/`
|
|
|
|
|
- global fallback: `~/.claude/homunculus/evolved/`
|