plexus_substrate/activations/mod.rs
1// Health is the reference implementation for the new architecture (manual impl)
2pub mod health;
3
4// Echo demonstrates plexus-macros usage with the new architecture
5pub mod echo;
6
7// Solar demonstrates nested plugin hierarchy (plugins with children)
8pub mod solar;
9
10// Arbor manages conversation trees
11pub mod arbor;
12
13// Bash executes shell commands
14pub mod bash;
15
16// Cone orchestrates LLM conversations with Arbor context
17pub mod cone;
18
19// ClaudeCode manages Claude Code sessions with Arbor-backed history
20pub mod claudecode;
21
22// Mustache provides template rendering for handle values
23pub mod mustache;
24
25// Changelog tracks plexus hash changes and enforces documentation
26pub mod changelog;
27
28// ClaudeCode Loopback routes tool permissions back to parent for approval
29pub mod claudecode_loopback;
30
31// Interactive demonstrates bidirectional communication patterns
32pub mod interactive;