Metadata-Version: 2.4
Name: plato-i2i
Version: 0.1.1
Summary: 🔗 PLATO inter-agent intelligence sharing via Iron-to-Iron protocol
Author: Cocapn
License: MIT
Project-URL: Homepage, https://cocapn.github.io
Project-URL: Repository, https://github.com/cocapn/plato-i2i
Keywords: plato,i2i,inter-agent,sharing,fleet
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# 🔗 Plato I2I

> Inter-agent intelligence sharing via the Iron-to-Iron protocol

Share PLATO tiles between fleet agents. Deduplication, trust gating, and quality filtering built in.

## Install

```bash
pip install plato-i2i
```

## Quick Start

### Share Tiles

```python
from plato_i2i import TileExchange

tx = TileExchange()
packet = tx.create_packet(
    room="architecture", question="What is the flywheel?",
    answer="Tile→Room→Inject→Compound compounding loop",
    agent="oracle1", confidence=0.9,
)
result = tx.send(packet, recipient_trust=0.85)
print(f"{result.status.value}: {result.tile_id}")
```

### Peer Registry

```python
from plato_i2i import PeerRegistry

registry = PeerRegistry()
registry.register("oracle1", capabilities=["docs", "plato"])
registry.register("forgemaster", capabilities=["rust", "training"])

peers = registry.find_by_capability("rust")
print(f"Rust-capable: {[p.name for p in peers]}")
```

## Part of [Cocapn](https://github.com/cocapn) · Agent Infrastructure
