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
---
title: API Reference
layout: documentation
description: Complete API documentation for Caxton management and control.
---

# API Reference

Complete API documentation for Caxton management and control.

## Quick Start

The three most common operations:

### 1. Deploy an Agent
```bash
# Set your environment
export CAXTON_TOKEN="your-token-here"
export CAXTON_API="http://localhost:8080/api/v1"

# Deploy agent
curl -X POST "$CAXTON_API/agents" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: multipart/form-data" \
  -F "wasm=@agent.wasm" \
  -F 'config={"name":"my-agent","resources":{"memory":"50MB"}}'
```

### 2. Send a Message
```bash
# Send message to agent
curl -X POST "$CAXTON_API/messages" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "performative": "request",
    "sender": "client_001",
    "receiver": "agent_123",
    "content": {"action": "process", "data": {"key": "value"}}
  }'
```

### 3. List All Agents
```bash
# Get running agents
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/agents?status=running"
```

## Environment Setup

Set these environment variables for all examples:

```bash
# Required - Your authentication token
export CAXTON_TOKEN="your-token-here"

# API endpoints
export CAXTON_API="http://localhost:8080/api/v1"
export CAXTON_WS="ws://localhost:8080/ws"
export CAXTON_GRPC="localhost:50051"

# Optional - Default values
export CAXTON_TIMEOUT="30"
export CAXTON_RETRY_COUNT="3"
```

## Error Codes

All APIs return consistent error responses with these codes:

| Code | HTTP Status | Description |
|------|-------------|-------------|
| `AGENT_NOT_FOUND` | 404 | Agent does not exist |
| `AGENT_ALREADY_EXISTS` | 409 | Agent name already in use |
| `INVALID_WASM` | 400 | Invalid WebAssembly module |
| `RESOURCE_LIMIT_EXCEEDED` | 429 | Resource limits exceeded |
| `DEPLOYMENT_FAILED` | 500 | Deployment operation failed |
| `MESSAGE_DELIVERY_FAILED` | 500 | Message could not be delivered |
| `UNAUTHORIZED` | 401 | Authentication required |
| `FORBIDDEN` | 403 | Operation not permitted |
| `RATE_LIMITED` | 429 | Rate limit exceeded |
| `INTERNAL_ERROR` | 500 | Internal server error |

**Error Response Format:**
```json
{
  "error": {
    "code": "AGENT_NOT_FOUND",
    "message": "Agent with ID 'agent_999' not found",
    "trace_id": "trace_abc123"
  }
}
```

## API Overview

Caxton provides both gRPC and REST APIs for management operations. The gRPC API is the primary interface, with REST available as a gateway.

### Base URLs

- **gRPC**: `localhost:50051` (default)
- **REST**: `http://localhost:8080/api/v1`
- **WebSocket**: `ws://localhost:8080/ws`

### Authentication

Include authentication token in requests:

```bash
# REST
curl -H "X-Caxton-Token: $CAXTON_TOKEN" "$CAXTON_API/agents"

# gRPC
grpcurl -H "authorization: Bearer $CAXTON_TOKEN" $CAXTON_GRPC caxton.v1.AgentService/ListAgents
```

## Agent Management API

### Deploy Agent

Deploy a new WebAssembly agent to the server.

```bash
# Deploy agent
curl -X POST "$CAXTON_API/agents" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: multipart/form-data" \
  -F "wasm=@agent.wasm" \
  -F 'config={"name":"my-agent","resources":{"memory":"50MB"}}'

# Response
{
  "agent_id": "agent_123",
  "name": "my-agent",
  "status": "running",
  "deployed_at": "2024-01-15T10:30:00Z"
}
```


### List Agents

Get a list of all deployed agents.

```bash
# List all agents
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/agents"

# List running agents with pagination
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/agents?status=running&limit=10&offset=0"

# Response
{
  "agents": [
    {
      "agent_id": "agent_123",
      "name": "my-agent",
      "status": "running",
      "memory_used": "25MB",
      "cpu_usage": 0.15
    }
  ],
  "total": 42
}
```


### Get Agent Details

Retrieve detailed information about a specific agent.

```bash
# Get agent details
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/agents/agent_123"

# Response
{
  "agent_id": "agent_123",
  "name": "my-agent",
  "status": "running",
  "deployed_at": "2024-01-15T10:30:00Z",
  "resources": {
    "memory": "25MB/50MB",
    "cpu": "50m/100m"
  },
  "metrics": {
    "messages_processed": 1542,
    "messages_failed": 3,
    "uptime_seconds": 3600
  }
}
```

### Update Agent

Update an agent's configuration or code.

```bash
# Update agent configuration
curl -X PUT "$CAXTON_API/agents/agent_123" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "config": {
      "resources": {"memory": "100MB"}
    },
    "strategy": "blue_green"
  }'

# Response
{
  "agent_id": "agent_123",
  "status": "updating",
  "deployment_id": "deploy_456"
}
```

### Stop Agent

Stop a running agent gracefully.

```bash
# Stop agent with grace period
curl -X POST "$CAXTON_API/agents/agent_123/stop" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "grace_period_seconds": 30,
    "drain_messages": true
  }'

# Stop immediately
curl -X POST "$CAXTON_API/agents/agent_123/stop" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -d '{}'

# Response
{
  "agent_id": "agent_123",
  "status": "stopping"
}
```

### Remove Agent

Remove an agent from the system.

```bash
# Remove agent
curl -X DELETE "$CAXTON_API/agents/agent_123" \
  -H "X-Caxton-Token: $CAXTON_TOKEN"

# Force remove (skip graceful shutdown)
curl -X DELETE "$CAXTON_API/agents/agent_123?force=true" \
  -H "X-Caxton-Token: $CAXTON_TOKEN"

# Response
{
  "agent_id": "agent_123",
  "status": "removed"
}
```

## Message API

### Send Message

Send a FIPA message to an agent.

```bash
# Send request message
curl -X POST "$CAXTON_API/messages" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "performative": "request",
    "sender": "client_001",
    "receiver": "agent_123",
    "content": {"action": "process", "data": {"key": "value"}}
  }'

# Send with conversation tracking
curl -X POST "$CAXTON_API/messages" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "performative": "request",
    "receiver": "agent_123",
    "content": {"action": "process"},
    "conversation_id": "conv_789"
  }'

# Response
{
  "message_id": "msg_abc123",
  "status": "delivered"
}
```


### Subscribe to Messages

Subscribe to message streams via WebSocket.

```javascript
// Connect to WebSocket
const ws = new WebSocket(process.env.CAXTON_WS);

// Subscribe to agent messages
ws.send(JSON.stringify({
  type: 'subscribe',
  agents: ['agent_123'],
  events: ['message.*']
}));

// Receive messages
ws.onmessage = (event) => {
  const message = JSON.parse(event.data);
  console.log('Message received:', message.content);
};
```

### Query Message History

Retrieve historical messages.

```bash
# Get conversation messages
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/messages?conversation_id=conv_789"

# Get agent messages with pagination
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/messages?sender=agent_123&limit=50&offset=0"

# Get recent messages
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/messages?since=2024-01-15T10:00:00Z"

# Response
{
  "messages": [
    {
      "message_id": "msg_001",
      "performative": "request",
      "sender": "agent_123",
      "receiver": "agent_456",
      "content": {"action": "process"},
      "timestamp": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 150
}
```

## Task API

### Create Task

Create a task for distribution among agents.

```bash
# Create simple task
curl -X POST "$CAXTON_API/tasks" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "process_data",
    "description": "Process customer data batch",
    "data": {"batch_id": "batch_001"},
    "timeout_seconds": 300
  }'

# Create task with specific agents
curl -X POST "$CAXTON_API/tasks" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "process_data",
    "data": {"batch_id": "batch_001"},
    "participants": ["agent_1", "agent_2"],
    "protocol": "contract_net"
  }'

# Response
{
  "task_id": "task_999",
  "status": "created"
}
```

### Distribute Task

Distribute a task using Contract Net Protocol.

```bash
# Distribute task to available agents
curl -X POST "$CAXTON_API/tasks/task_999/distribute" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "strategy": "best_bid",
    "max_wait_seconds": 30
  }'

# Distribute with immediate assignment
curl -X POST "$CAXTON_API/tasks/task_999/distribute" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -d '{}'

# Response
{
  "task_id": "task_999",
  "status": "distributed",
  "assigned_to": "agent_456",
  "proposals_received": 3
}
```

### Get Task Status

Check the status of a task.

```bash
# Get task status
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/tasks/task_999"

# List all tasks
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/tasks"

# List tasks by status
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/tasks?status=in_progress"

# Response
{
  "task_id": "task_999",
  "status": "in_progress",
  "assigned_to": "agent_456",
  "progress": 0.65,
  "started_at": "2024-01-15T10:31:00Z"
}
```

## Deployment API

### Create Deployment

Create a new deployment with specific strategy.

```bash
# Simple deployment
curl -X POST "$CAXTON_API/deployments" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: multipart/form-data" \
  -F "agent_id=agent_123" \
  -F "wasm=@agent-v2.wasm" \
  -F "version=2.0.0"

# Canary deployment
curl -X POST "$CAXTON_API/deployments" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "agent_123",
    "version": "2.0.0",
    "strategy": {
      "type": "canary",
      "stages": [10, 50, 100]
    }
  }'

# Response
{
  "deployment_id": "deploy_888",
  "status": "initializing"
}
```

### Monitor Deployment

Monitor deployment progress.

```bash
# Check deployment status
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/deployments/deploy_888"

# List all deployments
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/deployments"

# List active deployments
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/deployments?status=in_progress"

# Response
{
  "deployment_id": "deploy_888",
  "status": "in_progress",
  "current_stage": 2,
  "current_percentage": 50,
  "success_rate": 0.98,
  "error_count": 5
}
```

### Rollback Deployment

Rollback a deployment to previous version.

```bash
# Rollback deployment
curl -X POST "$CAXTON_API/deployments/deploy_888/rollback" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"reason": "High error rate detected"}'

# Emergency rollback
curl -X POST "$CAXTON_API/deployments/deploy_888/rollback" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -d '{}'

# Response
{
  "deployment_id": "deploy_888",
  "status": "rolling_back",
  "rollback_to_version": "1.0.0"
}
```

## Metrics API

### Get System Metrics

Retrieve system-wide metrics.

```bash
# Current system metrics
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/metrics/system"

# Historical metrics
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/metrics/system?period=1h"

# Response
{
  "timestamp": "2024-01-15T10:30:00Z",
  "agents": {
    "total": 42,
    "running": 40,
    "failed": 2
  },
  "messages": {
    "rate_per_second": 1500,
    "queue_size": 250
  },
  "resources": {
    "cpu_usage_percent": 45.2,
    "memory_used_mb": 2048
  }
}
```

### Get Agent Metrics

Get metrics for a specific agent.

```bash
# Current agent metrics
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/metrics/agents/agent_123"

# Historical metrics (1 hour)
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/metrics/agents/agent_123?period=1h"

# Performance metrics only
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/metrics/agents/agent_123?type=performance"

# Response
{
  "agent_id": "agent_123",
  "messages_processed": 5432,
  "messages_failed": 12,
  "average_latency_ms": 15.3,
  "cpu_usage": 0.25,
  "memory_usage_mb": 32
}
```

## WebSocket Events

Real-time event streaming via WebSocket.

### Connect and Subscribe

```bash
# Test WebSocket connection
wscat -c "$CAXTON_WS" -H "X-Caxton-Token: $CAXTON_TOKEN"
```

```javascript
// Connect and subscribe to agent events
const ws = new WebSocket(process.env.CAXTON_WS);

ws.onopen = () => {
  // Subscribe to all events for specific agents
  ws.send(JSON.stringify({
    type: 'subscribe',
    agents: ['agent_123', 'agent_456'],
    events: ['*']
  }));
};

ws.onmessage = (event) => {
  const data = JSON.parse(event.data);
  console.log(`${data.type}: ${data.message}`);
};
```

### Common Event Types

```javascript
// Agent events
{"type": "agent.deployed", "agent_id": "agent_123"}
{"type": "agent.failed", "agent_id": "agent_123", "error": "timeout"}

// Message events
{"type": "message.sent", "from": "agent_123", "to": "agent_456"}

// Task events
{"type": "task.completed", "task_id": "task_999", "result": "success"}

// System alerts
{"type": "system.alert", "message": "High memory usage"}
```


## Quick Examples

### Complete Agent Workflow

```bash
# 1. Deploy agent
AGENT_ID=$(curl -s -X POST "$CAXTON_API/agents" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -F "wasm=@agent.wasm" \
  -F 'config={"name":"worker"}' | jq -r '.agent_id')

# 2. Send work request
MSG_ID=$(curl -s -X POST "$CAXTON_API/messages" \
  -H "X-Caxton-Token: $CAXTON_TOKEN" \
  -H "Content-Type: application/json" \
  -d "{
    \"performative\": \"request\",
    \"receiver\": \"$AGENT_ID\",
    \"content\": {\"action\": \"process\", \"data\": \"hello\"}
  }" | jq -r '.message_id')

# 3. Check agent status
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/agents/$AGENT_ID"

# 4. Get metrics
curl -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/metrics/agents/$AGENT_ID"
```

### Batch Operations

```bash
# Deploy multiple agents
for i in {1..3}; do
  curl -X POST "$CAXTON_API/agents" \
    -H "X-Caxton-Token: $CAXTON_TOKEN" \
    -F "wasm=@agent.wasm" \
    -F "config={\"name\":\"worker-$i\"}"
done

# Send messages to all agents
for agent in $(curl -s -H "X-Caxton-Token: $CAXTON_TOKEN" \
  "$CAXTON_API/agents" | jq -r '.agents[].agent_id'); do
  curl -X POST "$CAXTON_API/messages" \
    -H "X-Caxton-Token: $CAXTON_TOKEN" \
    -H "Content-Type: application/json" \
    -d "{\"performative\":\"request\",\"receiver\":\"$agent\"}"
done
```

## Rate Limits & Headers

**Rate Limits:**
- Agent operations: 10/min
- Message sending: 1000/sec
- Metrics queries: 100/min

**Check Rate Limits:**
```bash
# Headers show remaining quota
curl -I -H "X-Caxton-Token: $CAXTON_TOKEN" "$CAXTON_API/agents"
# Returns:
# X-RateLimit-Limit: 1000
# X-RateLimit-Remaining: 950
```

## Next Steps

- [Message Protocols]{{ '/docs/developer-guide/message-protocols/' | relative_url }} - FIPA protocol details
- [WebAssembly Integration]({{ '/docs/developer-guide/wasm-integration/' | relative_url }}) - WASM specifics
- [Testing Guide]{{ '/docs/developer-guide/testing/' | relative_url }} - Testing strategies