caxton 0.1.4

A secure WebAssembly runtime for multi-agent systems
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
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
---
title: Building Agents
layout: documentation
description: Comprehensive guide to developing WebAssembly agents for Caxton multi-agent systems.
---

# Building Agents

Learn how to create production-ready WebAssembly agents that integrate seamlessly with the Caxton multi-agent orchestration platform.

## Table of Contents

- [Introduction]#introduction
- [Prerequisites]#prerequisites
- [Development Environment]#development-environment
- [Creating Your First Agent]#creating-your-first-agent
- [Agent Lifecycle]#agent-lifecycle
- [FIPA Message Protocol]#fipa-message-protocol
- [Testing Agents]#testing-agents
- [Debugging]#debugging
- [Performance Optimization]#performance-optimization
- [Examples]#examples

## Introduction

Caxton agents are WebAssembly (WASM) modules that run in isolated sandboxes within the Caxton orchestration server. Each agent operates independently while participating in coordinated multi-agent workflows through the Foundation for Intelligent Physical Agents (FIPA) messaging protocol.

### Key Benefits

- **Isolation**: Each agent runs in its own secure WebAssembly sandbox
- **Performance**: < 50μs message routing overhead
- **Language Agnostic**: Write agents in any language that compiles to WebAssembly
- **Observable**: Built-in OpenTelemetry support for tracing and metrics
- **Scalable**: Dynamic resource allocation and horizontal scaling

### Agent Architecture

```
┌─────────────────────────────────────┐
│            Caxton Server            │
├─────────────────────────────────────┤
│  Agent Sandbox (WASM Runtime)      │
│  ┌─────────────────────────────┐    │
│  │        Your Agent           │    │
│  │  ┌─────────────────────┐    │    │
│  │  │   Message Handler   │    │    │
│  │  │   State Manager     │    │    │
│  │  │   Business Logic    │    │    │
│  │  │   Tool Integrations │    │    │
│  │  └─────────────────────┘    │    │
│  └─────────────────────────────┘    │
├─────────────────────────────────────┤
│      Message Router & Protocol     │
│      Resource Manager              │
│      Observability Layer           │
└─────────────────────────────────────┘
```

## Prerequisites

### Required Knowledge

- **Rust Programming**: Primary supported language for agent development
- **WebAssembly Concepts**: Understanding of WASM compilation and runtime
- **Message-Passing Systems**: Experience with actor model or similar patterns
- **Protocol Understanding**: Basic familiarity with FIPA ACL or similar agent communication

### Optional Knowledge

- **Distributed Systems**: Helpful for complex multi-agent coordination
- **OpenTelemetry**: For advanced observability and debugging
- **MCP Protocol**: For external tool integrations

### System Requirements

- **Rust Toolchain**: Version 1.70+ with WebAssembly target
- **Caxton Server**: Development or production installation
- **Development Tools**: IDE with Rust and WASM support

## Development Environment

### Install Rust and WebAssembly Target

```bash
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Add WebAssembly target
rustup target add wasm32-wasi

# Install helpful tools
cargo install wasm-pack
cargo install cargo-generate
```

### Project Setup

```bash
# Create new agent project
cargo new --lib my_agent
cd my_agent

# Configure Cargo.toml for WASM
cat >> Cargo.toml << EOF

[lib]
crate-type = ["cdylib"]

[dependencies]
caxton-agent = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["rt"] }

[dependencies.web-sys]
version = "0.3"
features = []
EOF
```

### IDE Configuration

#### VS Code Setup

```json
// .vscode/settings.json
{
  "rust-analyzer.cargo.target": "wasm32-wasi",
  "rust-analyzer.checkOnSave.allTargets": false,
  "rust-analyzer.cargo.features": ["wasm"]
}
```

#### IntelliJ/CLion Setup

```xml
<!-- .idea/codeStyles/Project.xml -->
<component name="ProjectCodeStyleConfiguration">
  <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
  <option name="USE_PER_PROJECT_SETTINGS" value="true" />
  <option name="TARGET_TRIPLE" value="wasm32-wasi" />
</component>
```

## Creating Your First Agent

### Basic Agent Structure

Create a simple echo agent that responds to messages:

```rust
// src/lib.rs
use caxton_agent::{
    Agent, AgentContext, FipaMessage, MessageHandler,
    AgentResult, AgentError
};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

#[derive(Debug, Serialize, Deserialize)]
pub struct EchoAgent {
    id: String,
    state: HashMap<String, String>,
}

impl EchoAgent {
    // Agent metadata - defined in code, not configuration
    const VERSION: &'static str = "1.0.0";
    const NAME: &'static str = "echo-agent";

    pub fn new(id: String) -> Self {
        Self {
            id,
            state: HashMap::new(),
        }
    }
}

#[async_trait::async_trait(?Send)]
impl Agent for EchoAgent {
    async fn initialize(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        tracing::info!("Echo agent {} initializing", self.id);

        // Register capabilities that this agent provides
        ctx.register_capability("echo").await?;
        ctx.register_capability("state_management").await?;

        Ok(())
    }

    async fn handle_message(
        &mut self,
        message: FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        match message.performative.as_str() {
            "request" => self.handle_request(message, ctx).await,
            "inform" => self.handle_inform(message, ctx).await,
            "query" => self.handle_query(message, ctx).await,
            _ => {
                tracing::warn!("Unsupported performative: {}", message.performative);
                self.send_not_understood(&message, ctx).await
            }
        }
    }

    async fn cleanup(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        tracing::info!("Echo agent {} cleaning up", self.id);
        // Persist state, close connections, etc.
        Ok(())
    }
}

impl EchoAgent {
    async fn handle_request(
        &mut self,
        message: FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        let content = message.content
            .as_object()
            .ok_or(AgentError::InvalidMessage("Missing content".to_string()))?;

        match content.get("action").and_then(|v| v.as_str()) {
            Some("echo") => {
                let text = content.get("text")
                    .and_then(|v| v.as_str())
                    .ok_or(AgentError::InvalidMessage("Missing text".to_string()))?;

                // Echo the message back
                let reply = FipaMessage::new_inform(
                    &self.id,
                    &message.sender,
                    json!({
                        "echoed_text": text,
                        "timestamp": chrono::Utc::now().to_rfc3339()
                    }),
                )
                .with_conversation_id(message.conversation_id.clone())
                .with_in_reply_to(message.reply_with.clone());

                ctx.send_message(reply).await?;
            }
            Some("store") => {
                let key = content.get("key")
                    .and_then(|v| v.as_str())
                    .ok_or(AgentError::InvalidMessage("Missing key".to_string()))?;
                let value = content.get("value")
                    .and_then(|v| v.as_str())
                    .ok_or(AgentError::InvalidMessage("Missing value".to_string()))?;

                self.state.insert(key.to_string(), value.to_string());

                let reply = FipaMessage::new_inform(
                    &self.id,
                    &message.sender,
                    json!({ "status": "stored", "key": key }),
                )
                .with_conversation_id(message.conversation_id.clone())
                .with_in_reply_to(message.reply_with.clone());

                ctx.send_message(reply).await?;
            }
            _ => {
                self.send_not_understood(&message, ctx).await?;
            }
        }

        Ok(())
    }

    async fn handle_query(
        &mut self,
        message: FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        let content = message.content
            .as_object()
            .ok_or(AgentError::InvalidMessage("Missing content".to_string()))?;

        let key = content.get("key")
            .and_then(|v| v.as_str())
            .ok_or(AgentError::InvalidMessage("Missing key".to_string()))?;

        let reply = if let Some(value) = self.state.get(key) {
            FipaMessage::new_inform(
                &self.id,
                &message.sender,
                json!({ "key": key, "value": value }),
            )
        } else {
            FipaMessage::new_failure(
                &self.id,
                &message.sender,
                json!({ "error": "Key not found", "key": key }),
            )
        }
        .with_conversation_id(message.conversation_id.clone())
        .with_in_reply_to(message.reply_with.clone());

        ctx.send_message(reply).await?;
        Ok(())
    }

    async fn handle_inform(
        &mut self,
        message: FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        // Log received information
        tracing::info!(
            "Received information from {}: {:?}",
            message.sender,
            message.content
        );
        Ok(())
    }

    async fn send_not_understood(
        &self,
        original: &FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        let reply = FipaMessage::new_not_understood(
            &self.id,
            &original.sender,
            json!({
                "reason": "Unsupported action or performative",
                "original_performative": original.performative
            }),
        )
        .with_conversation_id(original.conversation_id.clone())
        .with_in_reply_to(original.reply_with.clone());

        ctx.send_message(reply).await
    }
}

// Export the agent for WASM loading
#[no_mangle]
pub extern "C" fn create_agent(id: *const u8, id_len: usize) -> *mut EchoAgent {
    let id_slice = unsafe { std::slice::from_raw_parts(id, id_len) };
    let id_str = String::from_utf8_lossy(id_slice).to_string();

    Box::into_raw(Box::new(EchoAgent::new(id_str)))
}

#[no_mangle]
pub extern "C" fn destroy_agent(agent: *mut EchoAgent) {
    unsafe {
        drop(Box::from_raw(agent));
    }
}
```

### Build Configuration

Create optimized WASM builds:

```bash
# Build for development (with debug info)
cargo build --target wasm32-wasi --release

# Build optimized for production
RUSTFLAGS="-C opt-level=z -C target-feature=+bulk-memory" \
cargo build --target wasm32-wasi --release

# Optimize WASM binary
wasm-opt -Oz -o target/wasm32-wasi/release/my_agent_opt.wasm \
  target/wasm32-wasi/release/my_agent.wasm
```

### Deployment Configuration

Create agent deployment manifest (Note: capabilities are registered in code, not config):

```json
// agent-manifest.json
{
  "name": "echo-agent",
  "resources": {
    "memory": "10MB",
    "cpu": "100m"
  },
  "environment": {
    "LOG_LEVEL": "info",
    "TIMEOUT_MS": "5000"
  },
  "scaling": {
    "min_instances": 1,
    "max_instances": 10,
    "target_cpu_utilization": 70
  }
}
```

**That's it!** The manifest is purely for deployment configuration. Caxton validates manifests against this schema on deployment:

### Manifest JSON Schema

```json
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["name", "resources"],
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "pattern": "^[a-z0-9-]+$",
      "description": "Agent identifier (lowercase, alphanumeric, hyphens)"
    },
    "resources": {
      "type": "object",
      "required": ["memory", "cpu"],
      "additionalProperties": false,
      "properties": {
        "memory": {
          "type": "string",
          "pattern": "^[0-9]+(Mi|Gi|MB|GB)$",
          "description": "Memory limit (e.g., '10MB', '256Mi')"
        },
        "cpu": {
          "type": "string",
          "pattern": "^[0-9]+m?$",
          "description": "CPU limit in millicores (e.g., '100m', '2000m')"
        }
      }
    },
    "environment": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Environment variables as key-value pairs"
    },
    "scaling": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "min_instances": {
          "type": "integer",
          "minimum": 0,
          "default": 1
        },
        "max_instances": {
          "type": "integer",
          "minimum": 1,
          "default": 10
        },
        "target_cpu_utilization": {
          "type": "integer",
          "minimum": 1,
          "maximum": 100,
          "default": 70,
          "description": "Target CPU percentage for autoscaling"
        }
      }
    }
  }
}
```

Invalid manifests are rejected at deployment with clear error messages.

## Capability Registration

Capabilities are registered programmatically in the agent's initialization method:

```rust
async fn initialize(&mut self, ctx: &AgentContext) -> AgentResult<()> {
    // Register what this agent can do
    ctx.register_capability("echo").await?;
    ctx.register_capability("state_management").await?;
    Ok(())
}
```

Capabilities determine which agents receive specific types of messages and tasks.

## Agent Lifecycle

Understanding the agent lifecycle is crucial for building robust agents:

### Lifecycle Phases

```rust
#[async_trait::async_trait(?Send)]
impl Agent for MyAgent {
    // 1. INITIALIZATION
    async fn initialize(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        // Called once when agent is deployed
        // - Load configuration
        // - Initialize state
        // - Register capabilities
        // - Subscribe to topics
        // - Connect to external services

        tracing::info!("Agent {} starting initialization", self.id);

        // Register what this agent can do
        ctx.register_capability("data_processing").await?;
        ctx.register_capability("file_operations").await?;

        // Subscribe to relevant topics
        ctx.subscribe("system.events").await?;
        ctx.subscribe("data.updates").await?;

        // Initialize connections
        self.database_client = Some(DatabaseClient::new(
            ctx.get_config("database_url")?
        ).await?);

        Ok(())
    }

    // 2. ACTIVE MESSAGE PROCESSING
    async fn handle_message(
        &mut self,
        message: FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        // Called for each received message
        // - Parse message
        // - Validate content
        // - Process request
        // - Send responses
        // - Update state

        // Add correlation ID for tracing
        let span = tracing::info_span!(
            "handle_message",
            message_id = %message.message_id,
            performative = %message.performative,
            sender = %message.sender
        );

        async move {
            match message.performative.as_str() {
                "request" => self.handle_request(message, ctx).await,
                "inform" => self.handle_inform(message, ctx).await,
                "subscribe" => self.handle_subscription(message, ctx).await,
                _ => self.handle_unknown(message, ctx).await,
            }
        }.instrument(span).await
    }

    // 3. PERIODIC OPERATIONS (Optional)
    async fn on_timer(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        // Called periodically (if configured)
        // - Cleanup expired data
        // - Send periodic reports
        // - Health checks
        // - Maintenance tasks

        self.cleanup_expired_cache().await?;
        self.send_health_report(ctx).await?;

        Ok(())
    }

    // 4. GRACEFUL SHUTDOWN
    async fn cleanup(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        // Called when agent is being stopped
        // - Finish processing current messages
        // - Save state
        // - Close connections
        // - Release resources

        tracing::info!("Agent {} beginning shutdown", self.id);

        // Finish processing queued work
        self.process_pending_work(ctx).await?;

        // Persist important state
        if let Some(state) = &self.persistent_state {
            ctx.save_state(&self.id, state).await?;
        }

        // Close external connections
        if let Some(client) = &mut self.database_client {
            client.close().await?;
        }

        Ok(())
    }
}
```

### State Management

Caxton follows a **coordination-first architecture** where agent state is the responsibility of the business domain, not Caxton itself. Agents requiring persistent state should use MCP tools:

```rust
#[derive(Debug, Serialize, Deserialize)]
pub struct AgentState {
    // Ephemeral state (in-memory only)
    pub cache: HashMap<String, CacheEntry>,
    pub active_conversations: HashMap<String, ConversationState>,
}

// For persistence, use MCP StateTool
pub struct PersistentAgent {
    state: AgentState,
    state_tool: Box<dyn McpStateTool>,
}

impl PersistentAgent {
    pub async fn checkpoint(&self) -> Result<()> {
        // Business decides storage backend (Redis, S3, etc.)
        self.state_tool.store(
            format!("agents/{}/checkpoint", self.id),
            serde_json::to_value(&self.state)?
        ).await
    }

    pub async fn restore(&mut self) -> Result<()> {
        if let Some(data) = self.state_tool.retrieve(
            format!("agents/{}/checkpoint", self.id)
        ).await? {
            self.state = serde_json::from_value(data)?;
        }
        Ok(())
    }
}
```

## FIPA Message Protocol

Caxton uses the Foundation for Intelligent Physical Agents (FIPA) Agent Communication Language (ACL) for inter-agent messaging.

### Message Structure

```rust
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FipaMessage {
    // Required fields
    pub performative: String,      // Message intent
    pub sender: String,           // Sender agent ID
    pub receiver: String,         // Receiver agent ID
    pub content: serde_json::Value, // Message payload

    // Optional conversation management
    pub conversation_id: Option<String>,  // Groups related messages
    pub reply_with: Option<String>,       // Expected reply identifier
    pub in_reply_to: Option<String>,      // References previous message

    // Protocol and semantic information
    pub ontology: Option<String>,    // Domain vocabulary
    pub language: Option<String>,    // Content language
    pub protocol: Option<String>,    // Interaction protocol

    // System fields (managed by Caxton)
    pub message_id: String,         // Unique message identifier
    pub timestamp: DateTime<Utc>,   // Message creation time
}
```

### Common Performatives

```rust
impl FipaMessage {
    // Request another agent to perform an action
    pub fn new_request(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "request", content)
    }

    // Inform about facts or events
    pub fn new_inform(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "inform", content)
    }

    // Ask for information
    pub fn new_query(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "query-if", content)
    }

    // Positive response to a request
    pub fn new_agree(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "agree", content)
    }

    // Negative response to a request
    pub fn new_refuse(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "refuse", content)
    }

    // Report successful completion
    pub fn new_inform_done(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "inform-done", content)
    }

    // Report failure
    pub fn new_failure(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "failure", content)
    }

    // Indicate message not understood
    pub fn new_not_understood(sender: &str, receiver: &str, content: Value) -> Self {
        Self::new(sender, receiver, "not-understood", content)
    }
}
```

### Protocol Examples

#### Request-Response Pattern

```rust
// Requester agent
async fn request_data_processing(
    &self,
    processor_id: &str,
    data: &ProcessingRequest,
    ctx: &AgentContext
) -> AgentResult<ProcessingResponse> {
    let request = FipaMessage::new_request(
        &self.id,
        processor_id,
        serde_json::to_value(data)?
    )
    .with_reply_with(format!("req-{}", Uuid::new_v4()))
    .with_protocol("request-response");

    // Send request and wait for reply
    let reply = ctx.send_and_wait(request, Duration::from_secs(30)).await?;

    match reply.performative.as_str() {
        "inform-done" => {
            Ok(serde_json::from_value(reply.content)?)
        }
        "failure" => {
            Err(AgentError::ProcessingFailed(
                reply.content.to_string()
            ))
        }
        _ => {
            Err(AgentError::UnexpectedResponse(reply.performative))
        }
    }
}

// Processor agent
async fn handle_processing_request(
    &mut self,
    message: FipaMessage,
    ctx: &AgentContext
) -> AgentResult<()> {
    let request: ProcessingRequest = serde_json::from_value(message.content)?;

    // Process the data
    match self.process_data(&request).await {
        Ok(result) => {
            let reply = FipaMessage::new_inform_done(
                &self.id,
                &message.sender,
                serde_json::to_value(result)?
            )
            .with_conversation_id(message.conversation_id.clone())
            .with_in_reply_to(message.reply_with.clone());

            ctx.send_message(reply).await?;
        }
        Err(error) => {
            let reply = FipaMessage::new_failure(
                &self.id,
                &message.sender,
                json!({ "error": error.to_string() })
            )
            .with_conversation_id(message.conversation_id.clone())
            .with_in_reply_to(message.reply_with.clone());

            ctx.send_message(reply).await?;
        }
    }

    Ok(())
}
```

#### Contract Net Protocol

```rust
// Task initiator
async fn distribute_task(
    &self,
    task: &Task,
    participants: &[String],
    ctx: &AgentContext
) -> AgentResult<String> {
    let conversation_id = format!("cnp-{}", Uuid::new_v4());

    // Send call for proposals
    let cfp_content = json!({
        "task": task,
        "deadline": chrono::Utc::now() + chrono::Duration::minutes(5)
    });

    for participant in participants {
        let cfp = FipaMessage::new_cfp(&self.id, participant, cfp_content.clone())
            .with_conversation_id(&conversation_id)
            .with_protocol("fipa-contract-net");

        ctx.send_message(cfp).await?;
    }

    // Collect proposals
    let proposals = ctx.collect_responses(
        &conversation_id,
        "propose",
        participants.len(),
        Duration::from_secs(30)
    ).await?;

    // Select best proposal
    let best_proposal = self.evaluate_proposals(&proposals)?;

    // Accept winning proposal, reject others
    for (participant, proposal) in proposals {
        if participant == best_proposal.sender {
            let accept = FipaMessage::new_accept_proposal(
                &self.id,
                &participant,
                json!({ "accepted": true })
            )
            .with_conversation_id(&conversation_id)
            .with_in_reply_to(proposal.reply_with.clone());

            ctx.send_message(accept).await?;
        } else {
            let reject = FipaMessage::new_reject_proposal(
                &self.id,
                &participant,
                json!({ "reason": "Better proposal selected" })
            )
            .with_conversation_id(&conversation_id)
            .with_in_reply_to(proposal.reply_with.clone());

            ctx.send_message(reject).await?;
        }
    }

    Ok(best_proposal.sender)
}
```

## Testing Agents

### Unit Testing

```rust
#[cfg(test)]
mod tests {
    use super::*;
    use caxton_agent::testing::{TestAgentContext, TestMessage};
    use tokio_test;

    #[tokio::test]
    async fn test_echo_functionality() {
        let mut agent = EchoAgent::new("test-agent".to_string());
        let ctx = TestAgentContext::new();

        // Initialize agent
        agent.initialize(&ctx).await.unwrap();

        // Create test message
        let message = TestMessage::new_request(
            "client",
            "test-agent",
            json!({
                "action": "echo",
                "text": "Hello, World!"
            })
        );

        // Handle message
        agent.handle_message(message.into(), &ctx).await.unwrap();

        // Verify response
        let sent_messages = ctx.get_sent_messages();
        assert_eq!(sent_messages.len(), 1);

        let response = &sent_messages[0];
        assert_eq!(response.performative, "inform");
        assert_eq!(
            response.content["echoed_text"].as_str().unwrap(),
            "Hello, World!"
        );
    }

    #[tokio::test]
    async fn test_state_management() {
        let mut agent = EchoAgent::new("test-agent".to_string());
        let ctx = TestAgentContext::new();

        agent.initialize(&ctx).await.unwrap();

        // Store a value
        let store_msg = TestMessage::new_request(
            "client",
            "test-agent",
            json!({
                "action": "store",
                "key": "test-key",
                "value": "test-value"
            })
        );

        agent.handle_message(store_msg.into(), &ctx).await.unwrap();

        // Query the value
        let query_msg = TestMessage::new_query(
            "client",
            "test-agent",
            json!({ "key": "test-key" })
        );

        agent.handle_message(query_msg.into(), &ctx).await.unwrap();

        // Verify stored and retrieved value
        let responses = ctx.get_sent_messages();
        assert_eq!(responses.len(), 2);

        let query_response = &responses[1];
        assert_eq!(query_response.performative, "inform");
        assert_eq!(
            query_response.content["value"].as_str().unwrap(),
            "test-value"
        );
    }
}
```

### Integration Testing

```rust
// tests/integration_test.rs
use caxton_client::CaxtonClient;
use std::time::Duration;
use tokio;

#[tokio::test]
async fn test_agent_deployment_and_communication() {
    // Start test Caxton server
    let server = caxton_testing::TestServer::new().await;
    let client = CaxtonClient::new(server.endpoint()).await.unwrap();

    // Deploy test agent
    let wasm_bytes = include_bytes!("../target/wasm32-wasi/release/echo_agent.wasm");
    let agent = client.deploy_agent(
        wasm_bytes,
        AgentConfig {
            name: "integration-test-agent".to_string(),
            resources: ResourceLimits {
                memory: "10MB".to_string(),
                cpu: "100m".to_string(),
            },
            ..Default::default()
        }
    ).await.unwrap();

    // Wait for agent to be ready
    tokio::time::sleep(Duration::from_millis(100)).await;

    // Send test message
    let response = client.send_message_and_wait(
        FipaMessage::new_request(
            "integration-test",
            &agent.id,
            json!({
                "action": "echo",
                "text": "Integration test message"
            })
        ),
        Duration::from_secs(5)
    ).await.unwrap();

    // Verify response
    assert_eq!(response.performative, "inform");
    assert_eq!(
        response.content["echoed_text"].as_str().unwrap(),
        "Integration test message"
    );

    // Cleanup
    client.remove_agent(&agent.id).await.unwrap();
}
```

### Performance Testing

```rust
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use caxton_agent::testing::TestAgentContext;

fn bench_message_processing(c: &mut Criterion) {
    let runtime = tokio::runtime::Runtime::new().unwrap();

    c.bench_function("echo_message_processing", |b| {
        b.to_async(&runtime).iter(|| async {
            let mut agent = EchoAgent::new("bench-agent".to_string());
            let ctx = TestAgentContext::new();

            agent.initialize(&ctx).await.unwrap();

            let message = TestMessage::new_request(
                "client",
                "bench-agent",
                json!({
                    "action": "echo",
                    "text": black_box("Benchmark message")
                })
            );

            agent.handle_message(message.into(), &ctx).await.unwrap();
        });
    });
}

criterion_group!(benches, bench_message_processing);
criterion_main!(benches);
```

## Debugging

### Logging and Tracing

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

impl EchoAgent {
    #[instrument(skip(self, ctx), fields(agent_id = %self.id))]
    async fn handle_request(
        &mut self,
        message: FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        debug!("Processing request: {:?}", message.content);

        let processing_start = std::time::Instant::now();

        // ... processing logic ...

        let processing_time = processing_start.elapsed();
        info!(
            processing_time_ms = processing_time.as_millis(),
            "Request processed successfully"
        );

        Ok(())
    }
}

// Enable structured logging
#[no_mangle]
pub extern "C" fn init_logging() {
    tracing_subscriber::fmt()
        .with_env_filter(
            tracing_subscriber::EnvFilter::from_default_env()
                .add_directive("my_agent=debug".parse().unwrap())
        )
        .json()
        .init();
}
```

### OpenTelemetry Integration

```rust
use opentelemetry::{trace::Tracer, global};
use tracing_opentelemetry::OpenTelemetryLayer;

#[instrument(skip(self, ctx))]
async fn complex_operation(
    &self,
    data: &ProcessingData,
    ctx: &AgentContext
) -> AgentResult<ProcessingResult> {
    let tracer = global::tracer("echo-agent");

    let span = tracer.start("data_processing");
    let _guard = span.set_current();

    // Add custom attributes
    span.set_attribute("data_size", data.size() as i64);
    span.set_attribute("operation_type", "echo");

    // Simulate processing with child spans
    let result = {
        let child_span = tracer.start("validation");
        let _child_guard = child_span.set_current();

        self.validate_data(data).await?
    };

    {
        let child_span = tracer.start("processing");
        let _child_guard = child_span.set_current();

        self.process_validated_data(&result).await
    }
}
```

### Debug Tools

```bash
# View agent logs in real-time
caxton logs --agent echo-agent --follow

# Get agent metrics
caxton metrics --agent echo-agent --period 1h

# Trace specific message flows
caxton trace --conversation-id conv-123 --format json

# Debug WebAssembly issues
RUST_LOG=debug caxton agent deploy --debug-wasm agent.wasm

# Memory debugging
caxton debug memory --agent echo-agent --dump-heap
```

### Common Issues and Solutions

#### Memory Leaks

```rust
// ❌ Common mistake - holding references too long
struct BadAgent {
    message_cache: HashMap<String, FipaMessage>, // Never cleaned
}

// ✅ Proper memory management
struct GoodAgent {
    message_cache: LruCache<String, FipaMessage>, // Auto-eviction
}

impl GoodAgent {
    async fn on_timer(&mut self, _ctx: &AgentContext) -> AgentResult<()> {
        // Regular cleanup
        self.message_cache.clear_expired();
        Ok(())
    }
}
```

#### Deadlock Prevention

```rust
// ❌ Potential deadlock - nested message sending
async fn bad_request_handler(&mut self, msg: FipaMessage, ctx: &AgentContext) {
    let response = ctx.send_and_wait(/* another message */).await?; // Deadlock risk
    // Process response...
}

// ✅ Async coordination
async fn good_request_handler(&mut self, msg: FipaMessage, ctx: &AgentContext) {
    // Schedule async operation
    let task_handle = ctx.spawn_task(async move {
        // Process without blocking message handler
    });

    // Store task handle for later retrieval
    self.pending_tasks.insert(msg.message_id, task_handle);
}
```

## Performance Optimization

### Memory Optimization

```rust
// Use memory-efficient data structures
use im::{HashMap as ImHashMap, Vector as ImVector}; // Immutable collections
use compact_str::CompactString; // String optimization
use smallvec::SmallVec; // Stack-allocated vectors

#[derive(Debug)]
pub struct OptimizedAgent {
    // Use compact strings for small text
    id: CompactString,

    // Immutable collections for shared state
    config: ImHashMap<CompactString, String>,

    // Stack-allocated for small collections
    recent_messages: SmallVec<[MessageId; 8]>,

    // Pool reusable objects
    message_pool: Vec<FipaMessage>,
}

impl OptimizedAgent {
    fn get_pooled_message(&mut self) -> FipaMessage {
        self.message_pool.pop()
            .unwrap_or_else(|| FipaMessage::default())
    }

    fn return_message(&mut self, mut msg: FipaMessage) {
        // Clear and return to pool
        msg.clear();
        self.message_pool.push(msg);
    }
}
```

### CPU Optimization

```rust
// Batch processing for efficiency
impl Agent for BatchProcessor {
    async fn handle_message(&mut self, message: FipaMessage, ctx: &AgentContext) -> AgentResult<()> {
        // Add to batch instead of processing immediately
        self.message_batch.push(message);

        // Process in batches
        if self.message_batch.len() >= BATCH_SIZE {
            self.process_batch(ctx).await?;
        }

        Ok(())
    }

    async fn process_batch(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        let messages = std::mem::take(&mut self.message_batch);

        // Process all messages in parallel
        let results: Vec<_> = stream::iter(messages)
            .map(|msg| self.process_single_message(msg, ctx))
            .buffer_unordered(10) // Limit concurrency
            .collect()
            .await;

        // Handle results...
        Ok(())
    }
}
```

### WebAssembly Optimization

```bash
# Optimize Rust compilation
export RUSTFLAGS="-C target-feature=+bulk-memory,+mutable-globals,+sign-ext"
cargo build --target wasm32-wasi --release

# Post-process WASM
wasm-opt -Oz --enable-bulk-memory \
  --enable-mutable-globals \
  --enable-sign-ext \
  -o optimized.wasm \
  target.wasm

# Profile WASM execution
caxton profile --agent my-agent --duration 60s --output profile.json
```

### Monitoring and Metrics

```rust
use caxton_agent::metrics::{Counter, Histogram, Gauge};

#[derive(Debug)]
pub struct InstrumentedAgent {
    // Performance metrics
    messages_processed: Counter,
    processing_duration: Histogram,
    active_conversations: Gauge,

    // Business metrics
    successful_operations: Counter,
    failed_operations: Counter,
}

impl InstrumentedAgent {
    pub fn new(id: String) -> Self {
        Self {
            messages_processed: Counter::new("messages_processed")
                .with_tag("agent_id", id.clone()),
            processing_duration: Histogram::new("message_processing_duration_ms")
                .with_tag("agent_id", id.clone()),
            active_conversations: Gauge::new("active_conversations")
                .with_tag("agent_id", id.clone()),
            successful_operations: Counter::new("operations_total")
                .with_tags([("agent_id", id.clone()), ("status", "success")]),
            failed_operations: Counter::new("operations_total")
                .with_tags([("agent_id", id), ("status", "failure")]),
        }
    }
}

impl Agent for InstrumentedAgent {
    async fn handle_message(&mut self, message: FipaMessage, ctx: &AgentContext) -> AgentResult<()> {
        let start_time = std::time::Instant::now();
        self.messages_processed.increment(1);

        let result = self.process_message_impl(message, ctx).await;

        let duration = start_time.elapsed();
        self.processing_duration.record(duration.as_millis() as f64);

        match result {
            Ok(_) => self.successful_operations.increment(1),
            Err(_) => self.failed_operations.increment(1),
        }

        result
    }
}
```

## Examples

### Simple Calculator Agent

```rust
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub struct CalculatorAgent {
    id: String,
    precision: u32,
}

#[derive(Debug, Serialize, Deserialize)]
pub struct CalculationRequest {
    operation: String,      // "add", "subtract", "multiply", "divide"
    operands: Vec<f64>,
}

#[derive(Debug, Serialize, Deserialize)]
pub struct CalculationResult {
    result: f64,
    operation: String,
    operands: Vec<f64>,
}

impl CalculatorAgent {
    async fn handle_calculation_request(
        &self,
        request: CalculationRequest,
        message: &FipaMessage,
        ctx: &AgentContext,
    ) -> AgentResult<()> {
        let result = match request.operation.as_str() {
            "add" => request.operands.iter().sum(),
            "subtract" => {
                request.operands.iter()
                    .reduce(|acc, x| acc - x)
                    .unwrap_or(0.0)
            },
            "multiply" => {
                request.operands.iter()
                    .reduce(|acc, x| acc * x)
                    .unwrap_or(0.0)
            },
            "divide" => {
                request.operands.iter()
                    .reduce(|acc, x| if *x != 0.0 { acc / x } else { f64::NAN })
                    .unwrap_or(f64::NAN)
            },
            _ => {
                let error_response = FipaMessage::new_not_understood(
                    &self.id,
                    &message.sender,
                    json!({ "error": "Unknown operation", "operation": request.operation }),
                );
                ctx.send_message(error_response).await?;
                return Ok(());
            }
        };

        let response = CalculationResult {
            result,
            operation: request.operation,
            operands: request.operands,
        };

        let reply = FipaMessage::new_inform(
            &self.id,
            &message.sender,
            serde_json::to_value(response)?,
        )
        .with_conversation_id(message.conversation_id.clone())
        .with_in_reply_to(message.reply_with.clone());

        ctx.send_message(reply).await
    }
}
```

### Data Processing Pipeline Agent

```rust
use futures::StreamExt;
use tokio::sync::mpsc;

#[derive(Debug)]
pub struct DataPipelineAgent {
    id: String,
    processors: Vec<Box<dyn DataProcessor>>,
    input_queue: mpsc::Receiver<DataItem>,
    output_queue: mpsc::Sender<ProcessedData>,
}

trait DataProcessor: Send + Sync {
    async fn process(&self, data: DataItem) -> Result<DataItem, ProcessingError>;
}

impl DataPipelineAgent {
    async fn run_pipeline(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        while let Some(data_item) = self.input_queue.recv().await {
            let mut current_data = data_item;

            // Process through pipeline stages
            for processor in &self.processors {
                match processor.process(current_data).await {
                    Ok(processed) => current_data = processed,
                    Err(error) => {
                        tracing::error!("Pipeline processing failed: {:?}", error);

                        // Notify about failure
                        let failure_msg = FipaMessage::new_inform(
                            &self.id,
                            "pipeline-monitor",
                            json!({
                                "event": "processing_failed",
                                "error": error.to_string(),
                                "stage": processor.name()
                            }),
                        );

                        ctx.send_message(failure_msg).await?;
                        continue;
                    }
                }
            }

            // Send processed data
            if let Err(_) = self.output_queue.try_send(ProcessedData::from(current_data)) {
                tracing::warn!("Output queue full, dropping processed data");
            }
        }

        Ok(())
    }
}
```

### Multi-Agent Coordination Example

```rust
// Coordinator agent that manages a team of worker agents
#[derive(Debug)]
pub struct TeamCoordinator {
    id: String,
    workers: Vec<String>,
    task_queue: VecDeque<Task>,
    active_assignments: HashMap<String, Assignment>,
}

impl TeamCoordinator {
    async fn distribute_work(&mut self, ctx: &AgentContext) -> AgentResult<()> {
        while let Some(task) = self.task_queue.pop_front() {
            // Find available worker
            let available_worker = self.find_available_worker(ctx).await?;

            if let Some(worker_id) = available_worker {
                // Assign task
                let assignment = Assignment {
                    task_id: task.id.clone(),
                    worker_id: worker_id.clone(),
                    started_at: chrono::Utc::now(),
                };

                let work_request = FipaMessage::new_request(
                    &self.id,
                    &worker_id,
                    serde_json::to_value(&task)?,
                )
                .with_conversation_id(&task.id)
                .with_protocol("work-assignment");

                ctx.send_message(work_request).await?;
                self.active_assignments.insert(task.id.clone(), assignment);
            } else {
                // No workers available, put task back
                self.task_queue.push_front(task);
                break;
            }
        }

        Ok(())
    }

    async fn find_available_worker(&self, ctx: &AgentContext) -> AgentResult<Option<String>> {
        for worker_id in &self.workers {
            // Query worker status
            let status_query = FipaMessage::new_query(
                &self.id,
                worker_id,
                json!({ "query": "status" })
            );

            let response = ctx.send_and_wait(
                status_query,
                Duration::from_secs(5)
            ).await?;

            if let Some(available) = response.content.get("available") {
                if available.as_bool().unwrap_or(false) {
                    return Ok(Some(worker_id.clone()));
                }
            }
        }

        Ok(None)
    }
}
```

## Next Steps

Now that you understand the fundamentals of building agents for Caxton:

1. **Start Simple**: Begin with the echo agent example and gradually add functionality
2. **Read the API Reference**: Familiarize yourself with the complete [API documentation]{{ '/docs/developer-guide/api-reference/' | relative_url }}
3. **Study Examples**: Explore the [examples repository]{{ site.social.github }}/tree/main/examples for more complex agent patterns
4. **Join the Community**: Participate in [GitHub Discussions]{{ site.social.github }}/discussions to share experiences and get help
5. **Contribute**: Help improve Caxton by contributing to the [project]{{ site.social.github }}

For advanced topics, see:
- [Message Protocols]{{ '/docs/developer-guide/message-protocols/' | relative_url }} - Deep dive into FIPA protocols
- [WebAssembly Integration]({{ '/docs/developer-guide/wasm-integration/' | relative_url }}) - Advanced WASM techniques
- [DevOps & Security Guide]{{ '/docs/operations/devops-security-guide/' | relative_url }} - Production deployment