Metadata-Version: 2.4
Name: uag-sdk
Version: 0.1.0
Summary: Universal Autonomy Gateway SDK for robotics and intelligent systems
Author: Kevin Price
License: MIT
Project-URL: Homepage, https://github.com/yourname/uag-sdk
Keywords: robotics,autonomy,gateway,sdk,control,websocket,rest,robot
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Universal Autonomy Gateway (UAG) SDK

The **UAG SDK** provides a clean, unified interface for controlling autonomous systems through REST or WebSocket adapters. It enables robots, simulators, and intelligent agents to communicate with the Sovereign Autonomy Engine (SAE) using a simple, stable API.

## Features
- REST + WebSocket adapters
- Unified command envelope
- Lightweight integration layer
- Works with any robotics stack
- Zero engine exposure

## Installation
## Quickstart
```python
from uag.adapters import PythonAdapter

client = PythonAdapter("ws://localhost:8765")
client.send({"goal": "navigate"})
response = client.receive()
print(response)
