Skip to main content

plexus_substrate/activations/
mod.rs

1// Common storage utilities for activations
2pub mod storage;
3
4// Chaos provides fault injection and observability for anti-fragility testing
5pub mod chaos;
6
7// Health is the reference implementation for the new architecture (manual impl)
8pub mod health;
9
10// Echo demonstrates plexus-macros usage with the new architecture
11pub mod echo;
12
13// Solar demonstrates nested plugin hierarchy (plugins with children)
14pub mod solar;
15
16// Arbor manages conversation trees
17pub mod arbor;
18
19// Bash executes shell commands
20pub mod bash;
21
22// Cone orchestrates LLM conversations with Arbor context
23pub mod cone;
24
25// ClaudeCode manages Claude Code sessions with Arbor-backed history
26pub mod claudecode;
27
28// Mustache provides template rendering for handle values
29pub mod mustache;
30
31// ClaudeCode Loopback routes tool permissions back to parent for approval
32pub mod claudecode_loopback;
33
34// Orcha orchestrates Claude sub-agents with approval loops and validation
35pub mod orcha;
36
37// Interactive demonstrates bidirectional communication patterns
38pub mod interactive;
39
40// Lattice is a DAG execution engine for multi-agent orchestration
41pub mod lattice;
42
43// Changelog tracks plexus hash transitions and planned changes
44pub mod changelog;