You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Behavioral evolution engine with mutation, scoring, fitness-based selection, and rollback for FLUX agents.
4
+
5
+
## What This Is
6
+
7
+
`flux-evolve` is a Rust crate implementing an **evolutionary engine** for agent behaviors — it manages tunable parameters with mutation rates, tracks fitness scores, supports aggressive/normal/elite evolution modes, and provides full rollback capabilities.
8
+
9
+
## Role in the FLUX Ecosystem
10
+
11
+
Agent adaptation is core to the FLUX philosophy. `flux-evolve` drives continuous improvement:
12
+
13
+
-**`flux-trust`** provides fitness signals (trust scores) that feed evolution cycles
14
+
-**`flux-social`** determines which behaviors evolve based on agent role
15
+
-**`flux-memory`** persists evolved parameters across sessions via snapshots
16
+
-**`flux-profiler`** measures performance of evolved behaviors
17
+
-**`flux-grimoire`** records successful evolutions as "spells" for other agents to learn
18
+
19
+
## Key Features
20
+
21
+
| Feature | Description |
22
+
|---------|-------------|
23
+
|**Mutation Engine**| 8 mutation types: ParamAdjust, ThresholdShift, WeightRebalance, etc. |
0 commit comments