Metadata-Version: 2.4
Name: cocapn-sdk
Version: 0.1.0
Summary: Cocapn SDK — batteries-included fleet ecosystem import
License: MIT
Project-URL: Homepage, https://cocapn.github.io
Project-URL: Repository, https://github.com/cocapn/cocapn-sdk
Keywords: cocapn,sdk,fleet,agent,plato
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: cocapn
Requires-Dist: deadband-protocol
Requires-Dist: flywheel-engine
Requires-Dist: bottle-protocol
Requires-Dist: keeper-beacon
Requires-Dist: court
Requires-Dist: plato-tile-spec
Requires-Dist: plato-provenance
Provides-Extra: full
Requires-Dist: fleet-formation-protocol; extra == "full"
Requires-Dist: tile-refiner; extra == "full"
Requires-Dist: instinct-pipeline; extra == "full"
Requires-Dist: barracks; extra == "full"
Requires-Dist: plato-dcs; extra == "full"
Requires-Dist: plato-edge; extra == "full"
Requires-Dist: plato-mythos; extra == "full"
Requires-Dist: plato-neural; extra == "full"
Requires-Dist: plato-torch; extra == "full"
Requires-Dist: spacetime-plato; extra == "full"

# 🔮 Cocapn SDK

> Batteries-included fleet ecosystem — one import, everything connected

The Cocapn SDK bundles the core fleet packages into a single install. Import the SDK and get the full Cocapn agent infrastructure: tiles, rooms, flywheels, deadband gates, bottle messages, keeper beacons, and more.

## Install

```bash
# Core SDK
pip install cocapn-sdk

# Everything including optional packages
pip install cocapn-sdk[full]
```

## Quick Start

```python
import cocapn_sdk

# The SDK re-exports all core classes
from cocapn_sdk import CocapnAgent, Tile, FlywheelEngine, DeadbandFilter
from cocapn_sdk import BeliefStore, BeliefScore, KeeperBeacon

# Create an agent with full fleet capabilities
agent = CocapnAgent("my-agent")
flywheel = FlywheelEngine()
beliefs = BeliefStore()
```

## What's Included

| Package | Purpose |
|---------|---------|
| `cocapn` | Core agent, tile, room, flywheel |
| `deadband-protocol` | Priority gates (P0/P1/P2) |
| `flywheel-engine` | Compounding intelligence cycle |
| `bottle-protocol` | Inter-agent messaging |
| `keeper-beacon` | Fleet discovery and registry |
| `court` | Agent review and trust |
| `plato-tile-spec` | Tile specification |
| `plato-provenance` | Tile provenance chains |

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