Metadata-Version: 2.4
Name: plato-edge
Version: 0.1.1
Summary: Edge-optimized Cocapn fleet packages for ARM64 devices with limited resources
Author: Cocapn Fleet Team
License: MIT
Project-URL: Homepage, https://github.com/SuperInstance/plato-edge
Project-URL: Repository, https://github.com/SuperInstance/plato-edge
Project-URL: Issues, https://github.com/SuperInstance/plato-edge/issues
Keywords: arm64,edge,embedded,iot,jetson,lightweight
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: Topic :: System :: Networking
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Dynamic: license-file

# ⚡ Plato Edge

> Fleet modules for constrained edge devices — zero dependencies, offline-capable

Run PLATO operations on Jetson Orin, Raspberry Pi, and other edge hardware. No network required — queue tiles offline and sync when connected.

## Install

```bash
pip install plato-edge
```

## Quick Start

```python
from plato_edge import EdgeClient, OfflineQueue

# Queue tiles offline
queue = OfflineQueue()
queue.add({"room": "edge-ops", "question": "Sensor reading?", "answer": "Temp: 72F", "confidence": 0.9})

# Sync when connected
client = EdgeClient(server_url="http://keeper:8847")
client.sync_queue(queue)
```

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