Metadata-Version: 2.4
Name: stremai
Version: 1.9.3
Summary: StremAI Python SDK. Shared memory layer for AI coding agents; connected agents can recall lessons across Claude Code, Codex, Cursor, and any MCP client.
Author-email: StremAI <hello@stremai.com>
License-Expression: MIT
Project-URL: Homepage, https://stremai.com
Project-URL: Repository, https://github.com/thomasjumper/agentbay
Project-URL: Documentation, https://stremai.com/docs/python-sdk
Project-URL: Issues, https://github.com/thomasjumper/agentbay/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.** StremAI is a shared memory layer for AI coding agents. Connected agents can store what they learn while working, and other connected agents can recall it later 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 product 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 supported for compatibility.

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