paladin-ai 0.5.0

Enterprise AI orchestration framework with multi-agent coordination patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
# Paladin Examples Gallery

This directory contains comprehensive examples demonstrating Paladin's capabilities. Each example is a fully-functional Rust program that you can run and modify.

## Table of Contents

- [Getting Started]#getting-started
- [Basic Paladin Examples]#basic-paladin-examples
- [Autonomous Agent Examples]#autonomous-agent-examples 🆕
- [Memory & Garrison Examples]#memory--garrison-examples
- [Sanctum Long-term Memory Examples]#sanctum-long-term-memory-examples
- [Tool Integration Examples]#tool-integration-examples
- [Battalion Orchestration Examples]#battalion-orchestration-examples
- [Output Formatting Examples]#output-formatting-examples
- [State Management Examples]#state-management-examples
- [Configuration Examples]#configuration-examples
- [Advanced Examples]#advanced-examples
- [Running Examples]#running-examples

## Getting Started

All examples require:
- Rust 1.70 or later
- API keys for LLM providers (OpenAI, DeepSeek, or Anthropic)
- Docker (for examples using Redis/MinIO)

Set API keys (recommended: keep them in `/workspace/.env`):
```bash
export OPENAI_API_KEY="your-api-key-here"
# or
export DEEPSEEK_API_KEY="your-api-key-here"
# or
export ANTHROPIC_API_KEY="your-api-key-here"
```

Or use a persistent file in this DevContainer:

```bash
cp .env.example .env
# edit .env and set OPENAI_API_KEY / DEEPSEEK_API_KEY / ANTHROPIC_API_KEY

# load for current terminal
set -a
. /workspace/.env
set +a
```

## Basic Paladin Examples

### [basic_paladin.rs]basic_paladin.rs
**Demonstrates:** Creating and executing a simple Paladin agent

The most basic Paladin usage - create an agent with a system prompt and execute a query.

```bash
cargo run --example basic_paladin
```

**Key concepts:**
- PaladinBuilder fluent API
- System prompt configuration
- Simple execution

**Code snippet:**
```rust
let paladin = PaladinBuilder::new(llm_adapter)
    .name("Assistant")
    .system_prompt("You are a helpful AI assistant.")
    .build()?;

let response = paladin.execute("Hello!").await?;
println!("{}", response.content);
```

### [paladin_with_config.rs]paladin_with_config.rs
**Demonstrates:** Advanced Paladin configuration

Shows how to configure temperature, max loops, stop words, and other parameters.

```bash
cargo run --example paladin_with_config
```

**Key concepts:**
- Temperature tuning
- Maximum loop control
- Stop word configuration
- Timeout settings
- Retry logic

**Code snippet:**
```rust
let paladin = PaladinBuilder::new(llm_adapter)
    .name("ConfiguredAgent")
    .system_prompt("You are a precise assistant.")
    .temperature(0.3)
    .max_loops(5)
    .stop_words(vec!["DONE", "END"])
    .timeout(Duration::from_secs(60))
    .build()?;
```

### [llm_provider_selection.rs]llm_provider_selection.rs
**Demonstrates:** Using different LLM providers

Shows how to switch between OpenAI, DeepSeek, and Anthropic providers.

```bash
cargo run --example llm_provider_selection
```

**Key concepts:**
- Provider adapters
- Model selection
- API configuration
- Multi-provider support

## Autonomous Agent Examples

### [autonomous_planning.rs]autonomous_planning.rs 🆕
**Demonstrates:** Autonomous planning with MaxLoops::Auto

Shows how agents automatically decompose complex tasks into structured plans and execute them sequentially.

```bash
cargo run --example autonomous_planning
```

**Key concepts:**
- MaxLoops::Auto for autonomous planning
- Automatic task complexity analysis
- Dynamic subtask generation
- Intelligent loop optimization
- Complex vs. simple task handling

**Code snippet:**
```rust
let paladin = PaladinBuilder::new(llm_port)
    .system_prompt("You are an expert analyst...")
    .max_loops(MaxLoops::Auto) // Enables autonomous planning
    .build()
    .await?;

// Agent will automatically create and execute a plan
let result = service.execute(&paladin, complex_task).await?;
```

**Learn more:** See [docs/AUTONOMOUS.md](../docs/AUTONOMOUS.md) §1

### [autonomous_prompt_generation.rs]autonomous_prompt_generation.rs 🆕
**Demonstrates:** Automatic system prompt generation

Shows how agents generate optimized system prompts from agent descriptions, eliminating manual prompt engineering.

```bash
cargo run --example autonomous_prompt_generation
```

**Key concepts:**
- Prompt generation from agent description
- Automatic persona optimization
- Role-specific prompt customization
- Reduced configuration overhead
- Examples: Code reviewer, technical writer

**Code snippet:**
```rust
let config = PaladinConfig::builder()
    .autonomous(AutonomousConfig {
        prompt_generation: Some(PromptGenerationConfig {
            enabled: true,
            description: Some("A code review specialist...".to_string()),
        }),
        ..Default::default()
    })
    .build()?;

let paladin = PaladinBuilder::new(llm_port)
    .system_prompt("Default") // Will be auto-generated
    .with_config(config)
    .build()
    .await?;
```

**Learn more:** See [docs/AUTONOMOUS.md](../docs/AUTONOMOUS.md) §2

### [dynamic_temperature.rs]dynamic_temperature.rs 🆕
**Demonstrates:** Dynamic temperature adjustment by task type

Shows how temperature automatically adjusts based on whether tasks are factual, creative, or balanced.

```bash
cargo run --example dynamic_temperature
```

**Key concepts:**
- Automatic temperature adjustment
- Task type detection (factual/creative/balanced)
- Low temp (0.1-0.3) for precision
- High temp (0.7-0.9) for creativity
- Medium temp (0.4-0.6) for explanations
- Configurable min/max bounds

**Code snippet:**
```rust
let config = PaladinConfig::builder()
    .autonomous(AutonomousConfig {
        dynamic_temperature: Some(DynamicTemperatureConfig {
            enabled: true,
            min_temperature: 0.1,
            max_temperature: 0.9,
            step_size: 0.1,
        }),
        ..Default::default()
    })
    .build()?;

// Temperature adjusts automatically per task
```

**Learn more:** See [docs/AUTONOMOUS.md](../docs/AUTONOMOUS.md) §3

### [agent_handoffs.rs]agent_handoffs.rs 🆕
**Demonstrates:** Intelligent task delegation to specialist agents

Shows how coordinator agents automatically delegate subtasks to specialized experts based on task requirements.

```bash
cargo run --example agent_handoffs
```

**Key concepts:**
- Automatic delegation detection
- Specialist agent pool
- Hierarchical task distribution
- Result synthesis from multiple specialists
- Handoff strategies (automatic/manual/hybrid)
- Max depth control

**Code snippet:**
```rust
let config = PaladinConfig::builder()
    .autonomous(AutonomousConfig {
        handoffs: Some(HandoffConfig {
            enabled: true,
            strategy: HandoffStrategy::Automatic,
            max_depth: 3,
            specialist_pool: vec![
                "DatabaseArchitect".to_string(),
                "SecuritySpecialist".to_string(),
                "ApiDesigner".to_string(),
            ],
        }),
        ..Default::default()
    })
    .build()?;

// Coordinator automatically delegates to specialists
```

**Learn more:** See [docs/AUTONOMOUS.md](../docs/AUTONOMOUS.md) §4

### [autonomous_full_config.rs]autonomous_full_config.rs 🆕
**Demonstrates:** All autonomous features working together

Shows the full power of autonomous agents with all features enabled: planning, prompt generation, dynamic temperature, and handoffs.

```bash
cargo run --example autonomous_full_config
```

**Key concepts:**
- Complete autonomous configuration
- Feature synergy and interaction
- End-to-end complex task execution
- Real-world system design scenario
- Multi-specialist coordination
- Comprehensive configuration examples

**Code snippet:**
```rust
let autonomous_config = AutonomousConfig {
    planning: Some(PlanningConfig {
        enabled: true,
        max_subtasks: 8,
    }),
    prompt_generation: Some(PromptGenerationConfig {
        enabled: true,
        description: Some("Senior software architect...".to_string()),
    }),
    dynamic_temperature: Some(DynamicTemperatureConfig {
        enabled: true,
        min_temperature: 0.1,
        max_temperature: 0.8,
        step_size: 0.1,
    }),
    handoffs: Some(HandoffConfig {
        enabled: true,
        strategy: HandoffStrategy::Automatic,
        max_depth: 3,
        specialist_pool: vec![/* ... */],
    }),
};

// All features work together seamlessly
```

**Learn more:** See [docs/AUTONOMOUS.md](../docs/AUTONOMOUS.md) for complete documentation

## Memory & Garrison Examples

### [garrison_in_memory.rs]garrison_in_memory.rs
**Demonstrates:** In-memory conversation history

Shows basic memory management with the in-memory Garrison.

```bash
cargo run --example garrison_in_memory
```

**Key concepts:**
- Conversation context
- Memory windowing
- Token management
- Multi-turn dialogue

**Code snippet:**
```rust
let garrison = Arc::new(InMemoryGarrison::new(
    GarrisonConfig::default()
        .with_max_entries(100)
        .with_max_tokens(4000)
));

let paladin = PaladinBuilder::new(llm_adapter)
    .with_garrison(garrison)
    .build()?;

// First turn
paladin.execute("My name is Alice").await?;

// Second turn - remembers context
paladin.execute("What's my name?").await?;
```

### [garrison_persistent.rs]garrison_persistent.rs
**Demonstrates:** SQLite-backed persistent memory

Shows how to save and restore conversation history across sessions.

```bash
cargo run --example garrison_persistent
```

**Key concepts:**
- SQLite storage
- Session management
- Cross-session persistence
- Database migrations

**Code snippet:**
```rust
let garrison = Arc::new(
    SqliteGarrison::new("garrison.db")
        .await?
        .with_session_id(session_id)
);

// History persists across restarts
```

### [garrison_semantic_search.rs]garrison_semantic_search.rs
**Demonstrates:** Vector embeddings and semantic search

Shows long-term memory with semantic retrieval.

```bash
cargo run --example garrison_semantic_search
```

**Key concepts:**
- Embedding generation
- Vector similarity search
- RAG (Retrieval-Augmented Generation)
- Long-term knowledge

## Sanctum Long-term Memory Examples

### [sanctum_basic_inmemory.rs]sanctum_basic_inmemory.rs
**Demonstrates:** Basic Sanctum usage with InMemory adapter

Shows fundamental Sanctum operations: storing, searching, filtering, updating memories.

```bash
cargo run --example sanctum_basic_inmemory
```

**Key concepts:**
- InMemory adapter (development)
- Memory types (Episodic, Semantic, Procedural)
- Importance scoring (0.0-1.0)
- Semantic search with scoring
- Metadata filtering
- Batch operations

**Code snippet:**
```rust
let sanctum = InMemorySanctum::new();

let memory = MemoryBuilder::new(
    "paladin-123".to_string(),
    "User asked about Rust programming".to_string(),
)
.memory_type(MemoryType::Episodic)
.importance(0.8)
.with_metadata("topic", json!("programming"))
.build()?;

let entry = SanctumEntry::new(memory, embedding)?;
sanctum.store(entry).await?;

// Semantic search
let query = SanctumQuery::new(query_embedding, 5).min_score(0.7);
let results = sanctum.search(query).await?;
```

### [sanctum_qdrant_production.rs]sanctum_qdrant_production.rs
**Demonstrates:** Production-ready Qdrant adapter with real embeddings

Shows how to use Sanctum in production with Qdrant vector database and OpenAI embeddings.

**Prerequisites:**
```bash
# Start Qdrant
docker run -p 6334:6334 qdrant/qdrant:latest

# Set API key
export OPENAI_API_KEY=sk-your-key
```

```bash
cargo run --example sanctum_qdrant_production
```

**Key concepts:**
- Qdrant adapter (production)
- Real vector embeddings (OpenAI)
- Persistent storage
- Performance benchmarking
- Collection statistics
- Production error handling

**Code snippet:**
```rust
let sanctum = QdrantSanctumAdapter::new(
    "http://localhost:6334",
    "paladin_memories",
    1536,  // OpenAI text-embedding-3-small dimension
).await?;

let embedding_service = OpenAIEmbeddingAdapter::new(api_key, model)?;

// Generate real embeddings
let embedding = embedding_service.embed("content").await?;
let entry = SanctumEntry::new(memory, embedding)?;
sanctum.store(entry).await?;
```

### [sanctum_adapter_migration.rs]sanctum_adapter_migration.rs
**Demonstrates:** Migrating memories between adapters

Shows complete migration process from InMemory to Qdrant adapter.

**Prerequisites:**
```bash
docker run -p 6334:6334 qdrant/qdrant:latest
```

```bash
cargo run --example sanctum_adapter_migration
```

**Key concepts:**
- Export to JSON format
- Adapter-agnostic migration
- Import in batches
- Validation (counts, search)
- Error handling
- Cleanup procedures

**Migration phases:**
1. Export from source adapter
2. Prepare target adapter
3. Import in batches
4. Validate migration
5. Cleanup

### [sanctum_configuration.rs]sanctum_configuration.rs
**Demonstrates:** Sanctum configuration patterns

Shows different configuration approaches for development, staging, and production.

```bash
cargo run --example sanctum_configuration
```

**Key concepts:**
- Development config (InMemory)
- Production config (Qdrant)
- Environment variable overrides
- Runtime adapter switching
- Configuration validation
- Vector dimension selection

**Configuration examples:**
```yaml
# Development
sanctum:
  enabled: true
  adapter_type: "in_memory"

# Production
sanctum:
  enabled: true
  adapter_type: "qdrant"
  qdrant:
    url: "http://qdrant:6334"
    collection_name: "paladin_production"
    vector_dimension: 1536
```

**Environment overrides:**
```bash
export APP_SANCTUM_ADAPTER_TYPE=qdrant
export APP_SANCTUM_QDRANT_URL=http://prod-qdrant:6334
export APP_SANCTUM_QDRANT_COLLECTION_NAME=memories_v2
```

### [paladin_with_sanctum.rs]paladin_with_sanctum.rs
**Demonstrates:** Integrating Sanctum with Paladin agents

Shows how to use Sanctum for long-term memory alongside Garrison for short-term context.

```bash
cargo run --example paladin_with_sanctum
```

**Key concepts:**
- Garrison vs Sanctum (short-term vs long-term)
- Storing conversation history
- Retrieving relevant memories
- Building agent knowledge base
- Memory importance updates
- Memory analytics

**Use cases:**
- Teaching assistant building knowledge
- Customer support with history
- Personalized agent responses
- Cross-session continuity

**Code snippet:**
```rust
// Store important interaction
let memory = MemoryBuilder::new(paladin_id, content)
    .memory_type(MemoryType::Semantic)
    .importance(0.9)
    .build()?;
sanctum.store(entry).await?;

// Retrieve relevant context before responding
let query = SanctumQuery::new(query_embedding, 5).min_score(0.7);
let relevant_memories = sanctum.search(query).await?;

// Use memories to enrich agent response
let context = relevant_memories.iter()
    .map(|m| m.entry.memory.content.clone())
    .collect::<Vec<_>>()
    .join("\n");
```

**Garrison vs Sanctum:**
| Aspect | Garrison (Short-term) | Sanctum (Long-term) |
|--------|----------------------|---------------------|
| Purpose | Recent conversation | Knowledge base |
| Duration | Session-scoped | Persistent |
| Retrieval | Sequential/windowed | Semantic search |
| Size | Limited (e.g., 20 messages) | Unlimited |
| Storage | In-memory/SQLite | Vector database |

## Tool Integration Examples

### [arsenal_stdio_tools.rs]arsenal_stdio_tools.rs
**Demonstrates:** MCP STDIO tool servers

Shows how to connect command-line tool servers via MCP protocol.

```bash
# Install MCP server first
uvx mcp-server-fetch

cargo run --example arsenal_stdio_tools
```

**Key concepts:**
- STDIO communication
- MCP protocol
- Tool discovery
- Function calling

**Code snippet:**
```rust
let web_search = MCPStdioAdapter::new()
    .command("uvx")
    .args(vec!["mcp-server-fetch"])
    .build()
    .await?;

let paladin = PaladinBuilder::new(llm_adapter)
    .add_armament(Arc::new(web_search))
    .build()?;

// Paladin automatically uses tools when needed
```

### [arsenal_sse_tools.rs]arsenal_sse_tools.rs
**Demonstrates:** MCP SSE tool servers

Shows how to connect web-based tool servers via Server-Sent Events.

```bash
cargo run --example arsenal_sse_tools
```

**Key concepts:**
- HTTP/SSE communication
- Authentication
- API integration
- Remote tools

**Code snippet:**
```rust
let api_tools = MCPSseAdapter::new()
    .endpoint("https://api.example.com/mcp")
    .api_key(api_key)
    .build()
    .await?;
```

## Battalion Orchestration Examples

### [formation_sequential.rs]formation_sequential.rs
**Demonstrates:** Sequential multi-agent execution

Shows Formation pattern where Paladins execute in sequence, passing output.

```bash
cargo run --example formation_sequential
```

**Key concepts:**
- Sequential execution
- Output passing
- Pipeline patterns
- Multi-stage processing

**Code snippet:**
```rust
let researcher = PaladinBuilder::new(llm_adapter.clone())
    .name("Researcher")
    .system_prompt("Research the topic and provide facts.")
    .build()?;

let analyst = PaladinBuilder::new(llm_adapter.clone())
    .name("Analyst")
    .system_prompt("Analyze the research and identify key insights.")
    .build()?;

let writer = PaladinBuilder::new(llm_adapter)
    .name("Writer")
    .system_prompt("Write a clear summary based on the analysis.")
    .build()?;

let formation = Formation::new("ResearchPipeline", vec![
    researcher,
    analyst,
    writer,
]);

let result = formation.execute("Explain quantum computing").await?;
```

### [phalanx_parallel.rs]phalanx_parallel.rs
**Demonstrates:** Concurrent multi-agent execution

Shows Phalanx pattern where multiple Paladins process the same input in parallel.

```bash
cargo run --example phalanx_parallel
```

**Key concepts:**
- Parallel execution
- Result aggregation
- Concurrent processing
- Multiple perspectives

**Code snippet:**
```rust
let technical = PaladinBuilder::new(llm_adapter.clone())
    .name("TechnicalReviewer")
    .system_prompt("Review for technical accuracy.")
    .build()?;

let security = PaladinBuilder::new(llm_adapter.clone())
    .name("SecurityReviewer")
    .system_prompt("Review for security issues.")
    .build()?;

let ux = PaladinBuilder::new(llm_adapter)
    .name("UXReviewer")
    .system_prompt("Review for user experience.")
    .build()?;

let phalanx = Phalanx::new("CodeReview", vec![
    technical,
    security,
    ux,
]).with_aggregation(AggregationStrategy::Concatenate);

let result = phalanx.execute("Review this code: ...").await?;
```

### [campaign_workflow.rs]campaign_workflow.rs
**Demonstrates:** Graph-based agent orchestration

Shows Campaign pattern with conditional routing and DAG execution.

```bash
cargo run --example campaign_workflow
```

**Key concepts:**
- Directed Acyclic Graph (DAG)
- Conditional edges
- Branching logic
- Complex workflows

**Code snippet:**
```rust
let mut campaign = Campaign::new("DataProcessing");

// Add nodes
let classifier_idx = campaign.add_paladin(classifier);
let technical_idx = campaign.add_paladin(technical_analyst);
let business_idx = campaign.add_paladin(business_analyst);

// Add conditional edges
campaign.add_edge(
    classifier_idx,
    technical_idx,
    CampaignEdge::new()
        .with_condition(EdgeCondition::OutputContains("technical"))
);

campaign.add_edge(
    classifier_idx,
    business_idx,
    CampaignEdge::new()
        .with_condition(EdgeCondition::OutputContains("business"))
);

let result = campaign.execute("Classify and analyze this document").await?;
```

### [chain_of_command_delegation.rs]chain_of_command_delegation.rs
**Demonstrates:** Hierarchical agent delegation

Shows Chain of Command pattern with leader and specialist Paladins.

```bash
cargo run --example chain_of_command_delegation
```

**Key concepts:**
- Hierarchical structure
- Dynamic delegation
- Specialist routing
- Result synthesis

**Code snippet:**
```rust
let commander = PaladinBuilder::new(llm_adapter.clone())
    .name("Commander")
    .system_prompt("You coordinate specialists. Analyze tasks and delegate.")
    .build()?;

let specialists = vec![
    database_specialist,
    api_specialist,
    frontend_specialist,
];

let chain = ChainOfCommand::new(
    "DevelopmentTeam",
    commander,
    specialists,
).with_delegation_strategy(DelegationStrategy::CommanderChoice);

let result = chain.execute("Implement user authentication").await?;
```

### [commander_basic.rs]commander_basic.rs
**Demonstrates:** Basic Commander usage

Shows dynamic Battalion strategy selection based on task.

```bash
cargo run --example commander_basic
```

**Key concepts:**
- Strategy routing
- Task analysis
- Dynamic selection
- Battalion types

### [commander_auto.rs]commander_auto.rs
**Demonstrates:** Automatic strategy selection

Shows Commander with LLM-based strategy decision.

```bash
cargo run --example commander_auto
```

**Key concepts:**
- Intelligent routing
- LLM-based decisions
- Auto-optimization
- Adaptive orchestration

### [commander_full_config.rs]commander_full_config.rs
**Demonstrates:** Complete Commander configuration

Shows all Commander features with full customization.

```bash
cargo run --example commander_full_config
```

**Key concepts:**
- Custom routing logic
- Multiple strategies
- Fallback handling
- Advanced configuration

### [commander_with_metadata_export.rs]commander_with_metadata_export.rs 🆕
**Demonstrates:** Battalion execution metadata export

Shows how to enable and use comprehensive JSON metadata export for audit trails, performance analysis, and cost tracking.

```bash
cargo run --example commander_with_metadata_export
```

**Key concepts:**
- Metadata export configuration
- JSON file structure and naming
- Per-Paladin metrics collection
- Performance profiling
- Cost tracking
- Audit trail generation

**Code snippet:**
```rust
// Enable metadata export
let config = BattalionConfig::new("audited_battalion")
    .with_metadata_dir(PathBuf::from("./battalion_metadata"));

let commander = CommanderBuilder::new(paladin_port)
    .strategy(BattalionStrategy::Phalanx)
    .paladins(paladins)
    .config(config)
    .build()?;

// Execute and get detailed metrics
let result = commander.execute("Analyze quarterly sales data").await?;

// Access per-Paladin metrics
for (name, time_ms) in &result.per_paladin_times {
    let tokens = result.per_paladin_tokens.get(name).unwrap();
    println!("{}: {}ms, {} tokens", name, time_ms, tokens.total_tokens);
}

// Metadata automatically written to:
// ./battalion_metadata/{strategy}_{timestamp}_{uuid}.json
```

### [maneuver_basic.rs]maneuver_basic.rs 🆕
**Demonstrates:** Flow DSL orchestration basics

Shows Maneuver pattern with string-based workflow expressions combining sequential and parallel execution.

```bash
cargo run --example maneuver_basic
```

**Key concepts:**
- Flow DSL syntax (`->` sequential, `,` parallel)
- Declarative workflows
- Mixed patterns in one expression
- Visual flow feedback

**Code snippet:**
```rust
// Define workflow with Flow DSL
let flow = "intake -> (analyzer, summarizer) -> reviewer";

// Parse flow expression
let parsed_flow = FlowParser::parse(flow)?;

// Create Maneuver with agents
let mut agents = HashMap::new();
agents.insert("intake".to_string(), intake_paladin);
agents.insert("analyzer".to_string(), analyzer_paladin);
agents.insert("summarizer".to_string(), summarizer_paladin);
agents.insert("reviewer".to_string(), reviewer_paladin);

let maneuver = Maneuver::new("DocPipeline", agents, parsed_flow, ManeuverConfig::default());

// Visualize flow
let visualizer = FlowVisualizer::new();
let ascii = visualizer.visualize(&parsed_flow, VisualizationFormat::AsciiTree)?;
println!("{}", ascii);

// Execute
let result = service.execute(&maneuver, "Analyze this document...").await?;
```

### [maneuver_nested_flow.rs]maneuver_nested_flow.rs 🆕
**Demonstrates:** Complex nested Flow DSL patterns

Shows advanced Maneuver workflows with nested groupings, fan-out/fan-in patterns, and multi-stage processing.

```bash
cargo run --example maneuver_nested_flow
```

**Key concepts:**
- Nested flow patterns with parentheses
- Fan-out and fan-in orchestration
- Complex enterprise pipelines
- Error handling strategies

**Code snippet:**
```rust
// Complex nested flow: intake -> (analysis branch, validation branch) -> merger
let flow = "intake -> (analyzer -> (technical, security), validator -> compliance) -> merger -> formatter";

let config = ManeuverConfig {
    error_strategy: ErrorStrategy::ContinueParallel,
    output_format: OutputFormat::StructuredJson,
    collect_timing_metrics: true,
    ..Default::default()
};

let maneuver = Maneuver::new("EnterpriseReview", agents, parsed_flow, config);

// Execute with timing metrics
let result = service.execute(&maneuver, input).await?;

// Inspect timing
if let Some(metrics) = &result.timing_metrics {
    for (agent, duration) in metrics {
        println!("{}: {:?}", agent, duration);
    }
}
```

### [maneuver_dynamic_flow.rs]maneuver_dynamic_flow.rs 🆕
**Demonstrates:** Dynamic workflow generation

Shows runtime flow creation based on task requirements with visualization and validation.

```bash
cargo run --example maneuver_dynamic_flow
```

**Key concepts:**
- Runtime flow generation
- Task-based workflow selection
- Flow validation before execution
- Adaptive orchestration

**Code snippet:**
```rust
// Generate flow based on task type
let flow = match task_type {
    TaskType::Simple => "analyzer -> formatter",
    TaskType::Review => "intake -> (technical, business) -> reviewer",
    TaskType::Complex => "intake -> (a -> b, c -> d) -> merger -> formatter",
};

// Validate flow before execution
let parsed = FlowParser::parse(flow)?;
let validation = maneuver.validate()?;
assert!(validation.is_ok(), "Flow validation failed");

// Visualize with Mermaid for documentation
let mermaid = visualizer.visualize(&parsed, VisualizationFormat::Mermaid)?;
println!("{}", mermaid);
```

### [cli_configs/maneuver.yaml]cli_configs/maneuver.yaml 🆕
**Demonstrates:** Complete Maneuver YAML configuration

Shows full configuration template for Maneuver Battalion with all options.

**Key concepts:**
- YAML-based flow definition
- Error strategy configuration (FailFast, ContinueParallel, IgnoreErrors)
- Output format options (CombinedText, StructuredJson)
- Timing metrics collection
- Multi-agent pipeline setup

**Example configuration:**
```yaml
type: maneuver
name: "DocumentAnalysisPipeline"

flow: "intake -> (analyzer, classifier) -> reviewer -> formatter"

config:
  error_strategy: FailFast
  output_format: CombinedText
  pass_output_as_input: true
  timeout_seconds: 300
  collect_timing_metrics: true
  output_separator: "\n\n---\n\n"

paladins:
  - inline:
      name: "intake"
      system_prompt: "Validate and prepare input..."
      # ... agent configuration
```

**Usage:**
```bash
# Run with configuration
paladin battalion run -c examples/cli_configs/maneuver.yaml -i "Input text"

# Visualize flow structure
paladin maneuver visualize --flow "intake -> (analyzer, classifier) -> reviewer"

# Validate configuration
paladin battalion validate -c examples/cli_configs/maneuver.yaml
```

## Output Formatting Examples

### [herald_markdown_output.rs]herald_markdown_output.rs
**Demonstrates:** Markdown formatting

Shows how to format Paladin output as Markdown.

```bash
cargo run --example herald_markdown_output
```

**Key concepts:**
- Markdown herald
- Code blocks
- Headers and structure
- Documentation generation

**Code snippet:**
```rust
let herald = Arc::new(MarkdownHerald::new()
    .with_code_highlighting(true)
    .with_table_of_contents(true)
);

let paladin = PaladinBuilder::new(llm_adapter)
    .with_herald(herald)
    .build()?;

let response = paladin.execute("Explain Rust ownership").await?;
// Output is formatted Markdown
```

### [herald_json_output.rs]herald_json_output.rs
**Demonstrates:** Structured JSON output

Shows JSON formatting with schema validation.

```bash
cargo run --example herald_json_output
```

**Key concepts:**
- JSON schema
- Validation
- Structured data
- API responses

**Code snippet:**
```rust
let herald = Arc::new(JsonHerald::new()
    .with_schema(schema)
    .validate_output(true)
);

let paladin = PaladinBuilder::new(llm_adapter)
    .system_prompt("Respond only in JSON: {result: string, confidence: number}")
    .with_herald(herald)
    .build()?;
```

### [herald_streaming.rs]herald_streaming.rs
**Demonstrates:** Real-time streaming output

Shows streaming with live formatting.

```bash
cargo run --example herald_streaming
```

**Key concepts:**
- Streaming responses
- Real-time formatting
- Progress indicators
- User experience

**Code snippet:**
```rust
let mut stream = paladin.execute_stream("Write a story").await?;

while let Some(chunk) = stream.next().await {
    let chunk = chunk?;
    let formatted = herald.format_chunk(&chunk.content).await?;
    print!("{}", formatted);
    std::io::stdout().flush()?;
}
```

### [herald_custom_formatter.rs]herald_custom_formatter.rs
**Demonstrates:** Custom Herald implementation

Shows how to create custom output formatters.

```bash
cargo run --example herald_custom_formatter
```

**Key concepts:**
- Herald trait
- Custom formatting
- Format validation
- Extensibility

## State Management Examples

### [citadel_autosave.rs]citadel_autosave.rs
**Demonstrates:** Automatic state persistence

Shows Citadel autosave functionality for recovery.

```bash
cargo run --example citadel_autosave
```

**Key concepts:**
- State snapshots
- Automatic saving
- Checkpoint creation
- Failure recovery

**Code snippet:**
```rust
let citadel = Arc::new(
    FileCitadel::new("checkpoints/")
        .with_autosave(true)
        .with_interval(Duration::from_secs(30))
);

let paladin = PaladinBuilder::new(llm_adapter)
    .with_citadel(citadel)
    .build()?;
```

### [citadel_restore.rs]citadel_restore.rs
**Demonstrates:** State restoration after failure

Shows how to recover Paladin state from checkpoints.

```bash
cargo run --example citadel_restore
```

**Key concepts:**
- Checkpoint restoration
- State recovery
- Resume execution
- Fault tolerance

### [battalion_checkpoint_recovery.rs]battalion_checkpoint_recovery.rs
**Demonstrates:** Battalion state management

Shows checkpoint/recovery for multi-agent orchestration.

```bash
cargo run --example battalion_checkpoint_recovery
```

**Key concepts:**
- Battalion state
- Multi-agent recovery
- Partial execution
- Fault handling

## Configuration Examples

The `cli_configs/` directory contains YAML configuration examples:

### [basic_paladin.yaml]cli_configs/basic_paladin.yaml
Basic Paladin configuration for CLI usage.

### [advanced_paladin.yaml]cli_configs/advanced_paladin.yaml
Advanced Paladin with all options configured.

### [formation.yaml]cli_configs/formation.yaml
Formation Battalion configuration.

### [phalanx.yaml]cli_configs/phalanx.yaml
Phalanx Battalion configuration.

### [campaign.yaml]cli_configs/campaign.yaml
Campaign Battalion with graph structure.

### [chain_of_command.yaml]cli_configs/chain_of_command.yaml
Chain of Command configuration.

## Advanced Examples

### Error Handling Patterns

Most examples include robust error handling:

```rust
use paladin::prelude::*;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Load configuration
    let config = load_config()?;

    // Initialize adapters with fallback
    let llm_adapter = create_llm_adapter(&config)
        .or_else(|_| create_fallback_adapter())?;

    // Create Paladin with retries
    let paladin = PaladinBuilder::new(llm_adapter)
        .max_retries(3)
        .retry_delay(Duration::from_secs(1))
        .build()?;

    // Execute with timeout
    let result = tokio::time::timeout(
        Duration::from_secs(60),
        paladin.execute(input)
    ).await??;

    Ok(())
}
```

### Logging and Observability

Examples include tracing integration:

```rust
use tracing::{info, warn, error};
use tracing_subscriber;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Initialize tracing
    tracing_subscriber::fmt()
        .with_max_level(tracing::Level::INFO)
        .init();

    info!("Starting Paladin execution");

    let response = paladin.execute(input).await?;

    info!(
        tokens = response.token_usage.total_tokens,
        duration = ?response.execution_time,
        "Execution completed"
    );

    Ok(())
}
```

## Running Examples

### Run a Specific Example

```bash
cargo run --example basic_paladin
```

### Run with Specific Features

```bash
# With Redis queue support
cargo run --example basic_paladin --features redis-queue

# With S3 storage
cargo run --example basic_paladin --features s3-storage

# All features
cargo run --example basic_paladin --all-features
```

### Run in Release Mode

```bash
cargo run --release --example basic_paladin
```

### Set Log Level

```bash
RUST_LOG=debug cargo run --example basic_paladin
```

### With Custom Config

```bash
cargo run --example basic_paladin -- --config my-config.yml
```

## Example Dependencies

Some examples require external services:

### Start Docker Services

```bash
# All services (Redis, MinIO)
make dev

# Or individually
docker-compose -f docker/docker-compose.yml up redis -d
docker-compose -f docker/docker-compose.yml up minio -d
```

### Install MCP Servers

```bash
# Web search
uvx mcp-server-fetch

# File system
uvx mcp-server-filesystem

# Calculator
uvx mcp-server-calculator
```

## Building a Custom Example

Create a new example in `examples/my_example.rs`:

```rust
use paladin::prelude::*;
use std::sync::Arc;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Load API key
    let api_key = std::env::var("OPENAI_API_KEY")?;

    // Create LLM adapter
    let llm_adapter = Arc::new(
        OpenAiAdapter::new()
            .api_key(&api_key)
            .model("gpt-4")
            .build()?
    );

    // Create Paladin
    let paladin = PaladinBuilder::new(llm_adapter)
        .name("MyPaladin")
        .system_prompt("You are a helpful assistant.")
        .build()?;

    // Execute
    let response = paladin.execute("Hello!").await?;
    println!("{}", response.content);

    Ok(())
}
```

Run it:
```bash
cargo run --example my_example
```

## Troubleshooting

### Example Won't Compile

```bash
# Clean and rebuild
cargo clean
cargo build --examples

# Check specific example
cargo check --example basic_paladin
```

### Missing API Key

```bash
# Preferred: use .env in workspace
cp .env.example .env
# set OPENAI_API_KEY=sk-... in .env

# Load into current terminal
set -a
. /workspace/.env
set +a

# Then run example
cargo run --example basic_paladin
```

### Service Connection Errors

```bash
# Check services are running
make health

# Restart services
make dev-restart

# View logs
docker-compose -f docker/docker-compose.yml logs
```

## Learning Path

Recommended order for learning:

1. **Start Simple**
   - `basic_paladin.rs` - Understand core concepts
   - `paladin_with_config.rs` - Learn configuration

2. **Add Memory**
   - `garrison_in_memory.rs` - Basic memory
   - `garrison_persistent.rs` - Persistence

3. **Add Tools**
   - `arsenal_stdio_tools.rs` - Tool integration
   - Custom tool creation

4. **Multi-Agent**
   - `formation_sequential.rs` - Sequential
   - `phalanx_parallel.rs` - Parallel
   - `campaign_workflow.rs` - Advanced

5. **Production Features**
   - `herald_json_output.rs` - Structured output
   - `citadel_autosave.rs` - State management
   - `commander_auto.rs` - Dynamic routing

## Contributing Examples

Want to add an example? See [CONTRIBUTING.md](../docs/contributing/CONTRIBUTING.md) for guidelines.

Good example characteristics:
- Self-contained (single file)
- Well-commented
- Demonstrates one clear concept
- Includes error handling
- Has descriptive output

## Next Steps

- **[Quickstart Guide]../docs/QUICKSTART.md** - Get started with Paladin
- **[User Guides]../docs/guides/** - In-depth documentation
- **[API Reference]https://docs.rs/paladin** - Complete API docs
- **[Architecture]../docs/architecture/** - System design details

## Questions?

- Check [Documentation]../docs/
- Open an [Issue]https://github.com/your-org/paladin/issues
- Join [Discord]https://discord.gg/paladin (if available)