Metadata-Version: 2.4
Name: stremai
Version: 1.9.2
Summary: One brain for all your coding agents. Persistent memory that syncs across Claude Code, Codex, Cursor, and any MCP client. (StremAI is the current name for the agentbay SDK.)
Author-email: StremAI <hello@stremai.com>
License-Expression: MIT
Project-URL: Homepage, https://www.stremai.com
Project-URL: Repository, https://github.com/thomasjumper/stremai-app
Project-URL: Documentation, https://www.stremai.com/docs/python-sdk
Project-URL: Issues, https://github.com/thomasjumper/stremai-app/issues
Keywords: stremai,coding-agents,agent-memory,persistent-memory,mcp,claude-code,codex,cursor,openclaw,windsurf,claude,agents,llm-memory
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
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 :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: agentbay>=1.9.2
Provides-Extra: crewai
Requires-Dist: agentbay[crewai]>=1.9.2; extra == "crewai"
Provides-Extra: langchain
Requires-Dist: agentbay[langchain]>=1.9.2; extra == "langchain"
Provides-Extra: autogen
Requires-Dist: agentbay[autogen]>=1.9.2; extra == "autogen"
Provides-Extra: llamaindex
Requires-Dist: agentbay[llamaindex]>=1.9.2; extra == "llamaindex"
Provides-Extra: langgraph
Requires-Dist: agentbay[langgraph]>=1.9.2; extra == "langgraph"
Provides-Extra: elevenlabs
Requires-Dist: agentbay[elevenlabs]>=1.9.2; extra == "elevenlabs"
Provides-Extra: pipecat
Requires-Dist: agentbay[pipecat]>=1.9.2; extra == "pipecat"
Provides-Extra: camel
Requires-Dist: agentbay[camel]>=1.9.2; extra == "camel"
Provides-Extra: all
Requires-Dist: agentbay[all]>=1.9.2; extra == "all"

# StremAI — Python SDK

**One brain for all your coding agents.** Persistent memory that syncs across Claude Code, Codex, Cursor, OpenClaw, and any MCP client.

```bash
pip install stremai
```

```python
from stremai import StremAI

brain = StremAI()   # local mode (no signup) — or StremAI(api_key="ab_live_...", project_id="...")
```

`StremAI` is the current name for the SDK previously published as **`agentbay`**. This
package re-exports the same implementation, so `from stremai import AgentBay` also works,
and the legacy `agentbay` package stays fully supported and maintained.

Full API reference: https://www.stremai.com/docs/python-sdk
