Skip to content

Adaptive Skills

The adapt-* family applies bio-inspired algorithms to dynamic skill routing and load balancing. Instead of static dispatch rules, these skills learn from execution history and optimize routing in real time.

Skill IDDescriptionModel Class
adapt-aco-routerAnt Colony Optimization: pheromone trails reinforce routes that produce high-quality outputsstrong
adapt-annealingSimulated Annealing: explores the skill-routing search space by accepting worse solutions with decreasing probabilitystrong
adapt-hebbian-routerHebbian learning: “neurons that fire together, wire together” — co-occurring successful skills become preferred chainscheap
adapt-physarum-routerPhysarum polycephalum (slime mould) algorithm: finds shortest efficient paths through skill networkscheap
adapt-quorumQuorum sensing: activates a skill upgrade only when a threshold of evidence or votes is reachedcheap
AlgorithmBiological ModelApplication
ACOAnt pheromone trailsLong-term route reinforcement
AnnealingMetal coolingEscaping local optima in routing
HebbianNeural plasticityCo-skill chain learning
PhysarumSlime mould growthEfficient network path finding
QuorumBacterial sensingThreshold-triggered escalation
SituationSkill(s)
Routing patterns need to evolve over sessionsadapt-hebbian-router
Current routing is stuck in a suboptimal patternadapt-annealing
Need to discover optimal skill sequencesadapt-aco-router
Routing through large skill graphsadapt-physarum-router
Only escalate when enough signals agreeadapt-quorum
  • adapt — primary consumer; all five coordinated
  • orchestrate — optionally uses adapt-quorum for escalation decisions
  • resilience — uses adapt-annealing to escape failure plateaus

Adaptive routing introduces non-determinism. Always pair with resil-membrane isolation and ensure gov-policy-validation gates are in place before enabling in production.