Metadata-Version: 2.4
Name: agentledger-mysql
Version: 1.2.3
Summary: MySQL StateStore adapter package for AgentLedger
Project-URL: Homepage, https://github.com/yaogdu/AgentLedger
Project-URL: Repository, https://github.com/yaogdu/AgentLedger
Project-URL: Documentation, https://github.com/yaogdu/AgentLedger/tree/main/docs
Project-URL: Issues, https://github.com/yaogdu/AgentLedger/issues
Author: AgentLedger Contributors
License: Apache-2.0
Keywords: agents,mysql,runtime,state-store
Requires-Python: >=3.11
Requires-Dist: agentledger-runtime<2,>=1.2
Requires-Dist: pymysql>=1.1
Description-Content-Type: text/markdown

# agentledger-mysql

MySQL StateStore adapter package for AgentLedger.

```bash
pip install agentledger-mysql
pip install "agentledger-runtime[mysql]"
```

```python
from agentledger_mysql import MySQLStore, MySQLStoreConfig

store = MySQLStore(MySQLStoreConfig.from_env())
store.init()
```

This package keeps the runtime core dependency-light while making MySQL an explicit opt-in. It re-exports the adapter classes from `agentledger.storage_mysql` in the `1.2.x` line.

Certification:

```bash
python3 -m agentledger adapter certify --kind mysql --adapter-version 1.2.3
```

Production hardening still requires real MySQL service validation, concurrency/load checks, backup/restore drills, and deployment-specific permission review.
