Shared KV Store
The shared key-value store is available in relay mode. It provides cross-node coordination for distributed agent workflows.kv set
Set a key-value pair on the relay’s shared store.| Flag | Description |
|---|---|
--ns | Namespace for key isolation |
--ttl | Time-to-live duration (e.g. 1h, 30m, 24h) |
kv get
Get a value by key.kv list
List keys by prefix.kv delete
Delete a key.Use Cases
| Pattern | Example |
|---|---|
| Build coordination | Workers write results, supervisor reads them |
| Feature flags | Set flags that agents check before proceeding |
| Distributed locks | Use TTL keys as advisory locks |
| Shared state | Agents on different nodes share data through the relay KV |