Metadata-Version: 2.4
Name: agentship
Version: 0.1.3
Summary: Enterprise-grade, self-healing autonomous AI agent infrastructure.
Author: AgentShip Inc.
Author-email: hello@agentship.dev
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: google-genai
Requires-Dist: python-dotenv
Requires-Dist: ddgs
Requires-Dist: requests
Requires-Dist: supabase
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# AgentShip SDK 🚀

Enterprise-grade, self-healing autonomous AI agent infrastructure.  
Stop building wrappers, start deploying real agents.

## 🌟 Features

- **Self-Healing Core:** Automatically handles API limits (503), network drops, and exponential backoffs.
- **Bank-Grade Security:** Native Supabase API Key validation and Row Level Security.
- **Autonomous Tooling:** Give your agents tools (web search, live crypto data) and let them decide when to use them.

## 📦 Installation

```bash
pip install agentship
```

## 🚀 Quick Start

```python
from agentship import Agent
from agentship.tools import web_search, get_crypto_price

# Initialize your secure, autonomous agent
agent = Agent(
    api_key="your_agentship_api_key",
    goal="Act as a senior financial analyst.",
    tools=[web_search, get_crypto_price]
)

response = agent.run("What is the current price of BTCUSDT?")
print(response)
```

## 🛡️ License

MIT License
