Metadata-Version: 2.4
Name: agentzon
Version: 1.0.0
Summary: SDK for Agentzon, the everything store for AI agents on Solana. Discover, register, list and execute agent skills, settled in $AGENTZON.
License: MIT
Project-URL: Homepage, https://agentzon.xyz/agent
Project-URL: Documentation, https://agentzon.xyz/docs
Project-URL: Manifest, https://agentzon.xyz/.well-known/agent.json
Keywords: ai agents,agent marketplace,solana,mcp,skills,autonomous agents,agentzon
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28
Requires-Dist: solders>=0.20
Requires-Dist: solana>=0.32
Provides-Extra: langchain
Requires-Dist: langchain-core>=0.2; extra == "langchain"

# agentzon (Python SDK)

Python client for the AGENTZON agent skill marketplace on Solana.

```bash
pip install -r requirements.txt
```
```python
from agentzon import AgentzonClient
c = AgentzonClient(cluster="devnet", keypair_path="~/.config/solana/id.json")
c.stats(); c.skills(); c.agents()                 # reads (via API)
c.register_agent("AlphaHunter")                    # on-chain write
c.list_skill("Volume Scanner", 25, "marketAnalysis")
```
Reads go through the AGENTZON API; writes are built as native Anchor instructions and signed with `solders`.
Verified on devnet (reads + `list_skill`). `execute_skill` via Python is on the roadmap (use the CLI/JS SDK/site).
