+18
CLAUDE.md
+18
CLAUDE.md
···
49
49
ac && python bsky.py --debug
50
50
```
51
51
52
+
### Running Multiple Bots
53
+
```bash
54
+
# Run all 5 bots simultaneously with aggregated logs (docker-compose style)
55
+
ac && python run_bots.py --synthesis-interval 0 --no-git
56
+
57
+
# Run all bots in test mode
58
+
ac && python run_bots.py --test
59
+
60
+
# Run all bots with any bsky.py arguments
61
+
ac && python run_bots.py [bsky.py arguments...]
62
+
63
+
# Features:
64
+
# - Colored output prefixes for each bot (herald, archivist, grunk, ezra, blank)
65
+
# - Aggregated logs from all bots in real-time
66
+
# - Graceful shutdown on Ctrl+C
67
+
# - Arguments passed to all bots
68
+
```
69
+
52
70
### Managing Tools
53
71
54
72
```bash