Turn any GitHub repo into an AI agent in one command
Project description
AgentEazy
Turn any Python utility into a callable AI tool in one command.
Your code becomes a live API that any AI agent can find, call, and pay — without rewriting a single line.
Website · Dashboard · Registry · Docs
Try it right now
No install needed. Call a live agent from your terminal:
curl -s -X POST https://simondusable--agenteazy-gateway-serve.modal.run/agent/zxcvbn-python/ \
-H "Content-Type: application/json" \
-d '{"verb":"DO","payload":{"data":{"password":"monkey123"}}}' | python3 -m json.tool
{
"status": "completed",
"output": {
"score": 1,
"feedback": {
"warning": "This is a very common password.",
"suggestions": ["Add another word or two. Uncommon words are better."]
}
}
}
That's a real GitHub repo (zxcvbn-python), auto-wrapped and live. 18+ more in the registry.
Deploy your own agent
pip install agenteazy
agenteazy signup your-github-username --email you@example.com
agenteazy deploy github.com/you/your-repo
Done. Your repo is live. Every AI agent on earth can now find and call it.
What happens under the hood
- Analyze — Clones the repo, parses the AST, detects the main public API function
- Wrap — Generates a FastAPI wrapper that handles imports, dependencies, and dispatch
- Upload — Pushes to serverless infrastructure (idle agents cost $0)
- Register — Adds to the public registry so other agents can discover it
Python SDK
from agenteazy import AgentEazy
client = AgentEazy()
# Discover agents
agents = client.find("password strength")
# Call agents
result = client.do("zxcvbn-python", {"password": "monkey123"})
# → {"score": 1, "feedback": {"warning": "This is a very common password."}}
result = client.do("dateparser", {"date_string": "tomorrow at 3pm"})
# → "2026-03-17T15:00:00"
result = client.do("langdetect", {"text": "Bonjour le monde"})
# → "fr"
result = client.do("python-ftfy", {"text": "émile dupont"})
# → "émile dupont"
result = client.do("autopep8", {"source": "x= 1\nif x==1:\n print( 'hello' )"})
# → "x = 1\nif x == 1:\n print('hello')\n"
LangChain Integration
Every agent becomes a LangChain BaseTool:
pip install agenteazy[langchain]
from agenteazy.integrations.langchain import AgentEazyTool, AgentEazyToolkit
tool = AgentEazyTool.from_agent("zxcvbn-python")
result = tool.invoke({"password": "test123"})
# Discover multiple tools from the registry
toolkit = AgentEazyToolkit()
tools = toolkit.get_tools(query="text processing", limit=5)
CrewAI Integration
pip install agenteazy[crewai]
from agenteazy.integrations.crewai import AgentEazyCrewTool
tool = AgentEazyCrewTool.from_agent("zxcvbn-python")
Live Agent Registry
18 agents you can call right now, all auto-wrapped from real GitHub repos:
| Agent | What it does | Try it |
|---|---|---|
| zxcvbn-python | Password strength scoring | {"password":"monkey123"} → score 1/4 |
| langdetect | Detect text language | {"text":"Bonjour"} → "fr" |
| dateparser | Parse natural language dates | {"date_string":"tomorrow at 3pm"} → datetime |
| python-ftfy | Fix broken Unicode | {"text":"émile"} → "émile" |
| autopep8 | Format Python to PEP 8 | {"source":"x= 1"} → "x = 1\n" |
| validators | Validate emails, URLs, IPs | {"value":"test@example.com"} → true |
| python-slugify | Text to URL slug | {"text":"Hello World!"} → "hello-world" |
| emoji | Emojize/demojize text | {"string":":thumbs_up:"} → 👍 |
| xmltodict | XML to JSON dict | {"xml_input":"<a>1</a>"} → {"a":"1"} |
| mistune | Fast Markdown → HTML | {"s":"**bold**"} → "<strong>bold</strong>" |
| dateutil | Parse date strings | {"timestr":"March 5th 2024"} → datetime |
| arrow | Date/time with timezone | {} → current datetime |
| prettytable | Parse HTML tables | HTML → structured rows |
| python-markdown2 | Markdown → HTML | {"text":"# Hello"} → "<h1>Hello</h1>" |
| python-markdownify | HTML → Markdown | {"html":"<h1>Hello</h1>"} → "# Hello" |
| num2words | Numbers to words | {"number":42} → "forty-two" |
| shortuuid | Generate short UUIDs | {} → "N6nquzbtjAF..." |
| humanize | Natural language lists | {"items":["Alice","Bob"]} → "Alice and Bob" |
Browse all at agenteazy.com/agents.
What repos work best
AgentEazy auto-detects the right entry point for stateless Python utilities — functions that take input and return output.
| Works great | Examples |
|---|---|
| Text processing | slugify, ftfy, emoji, markdown2 |
| Validation & parsing | validators, dateparser, dateutil |
| Security tools | zxcvbn (passwords), nh3 (HTML sanitization) |
| Code formatting | autopep8 |
| Data conversion | xmltodict, markdownify, num2words |
| Language detection | langdetect |
Needs --entry flag |
Why |
|---|---|
| Large repos with many functions | Auto-detect may pick a helper instead of the main API |
| Class-based APIs | Specify --entry "file.py:Class.method" |
| Not a good fit | Why |
|---|---|
| HTTP clients (requests, boto3) | They make outbound calls, not pure functions |
| Frameworks (Flask, Django) | Already have their own endpoints |
| Heavy ML models | Cold start too slow for serverless |
Override the entry point when needed:
agenteazy deploy github.com/you/repo --entry "mypackage/core.py:process"
agenteazy deploy github.com/you/repo --entry "mypackage/model.py:MyClass.predict"
TollBooth — Agent Credits
Agents can charge credits per call. Set a price and the gateway handles billing.
agenteazy deploy github.com/you/your-repo --price 10
- Free by default — no credits needed to call free agents
- You set the price — 1 credit, 10, 100 — your choice
- 80/20 split — you keep 80%, platform takes 20% for infrastructure
- 50 free credits on signup, buy more at agenteazy.com/dashboard
AgentLang — 10 Universal Verbs
One protocol for all agents. One HTTP POST, one envelope:
POST /agent/{name}/
{"verb": "DO", "payload": {"data": {"input": "hello"}}}
| Verb | What it does | Status |
|---|---|---|
| DO | Execute the agent's main function | Live ✅ |
| ASK | Query capabilities and parameters | Live ✅ |
| FIND | Search the registry for agents | Live ✅ |
| PAY | Transfer credits between agents | Live ✅ |
| SHARE | Pass context between calls | Live ✅ |
| REPORT | Get audit log | Live ✅ |
| STOP | Halt a running task | Live ✅ |
| WATCH | Subscribe to events | Planned |
| TRUST | Authenticated sessions | Planned |
| LEARN | Ingest new knowledge | Planned |
CLI Reference
# Deploy
agenteazy deploy <repo> # Full pipeline
agenteazy deploy <repo> --local # Test locally first
agenteazy deploy <repo> --price 10 # Paid agent
agenteazy deploy <repo> --entry "f.py:fn" # Override entry point
agenteazy deploy <repo> --env KEY=VALUE # Inject env vars
# Analyze & Wrap
agenteazy analyze <repo> # Inspect without deploying
agenteazy wrap <repo> # Generate wrapper only
agenteazy batch-deploy <repos.txt> # Deploy from file
# Account
agenteazy signup <username> --email <email> # Get API key + 50 credits
agenteazy balance # Check credits
agenteazy transactions # View history
# Registry
agenteazy search "query" # Find agents
agenteazy list # List all agents
agenteazy status # Health check
Architecture
agenteazy deploy <repo>
│
├── ANALYZE → Clone, parse AST, detect public API function
├── WRAP → Generate FastAPI wrapper with full import handling
├── UPLOAD → Push to serverless volume (idle = $0)
├── REGISTER → Add to searchable registry
└── LIVE → Callable at gateway/agent/{name}/
Gateway (serves all agents) ←→ Registry (search + credits)
│ │
└── Agent Volume └── TollBooth
/agents/zxcvbn-python/ Signup, balance,
/agents/langdetect/ deduct, earn, transfer
/agents/dateparser/
... (36 agents)
Contributing
Best first contribution: OpenAI Function Calling integration. Same pattern as the LangChain wrapper — one file, self-contained. See agenteazy/integrations/langchain.py as a template.
git clone https://github.com/SimonSliman/agenteazy
cd agenteazy
pip install -e ".[dev]"
pytest tests/ -q # 82 tests
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agenteazy-0.2.5.tar.gz.
File metadata
- Download URL: agenteazy-0.2.5.tar.gz
- Upload date:
- Size: 65.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fb27afca1236ceeb60644f74ff372708ba3a67d55cce4bb3287d46c33c9189e
|
|
| MD5 |
a2d9387e9959d7919fc628c327c5a44d
|
|
| BLAKE2b-256 |
0fe6debd3cc5447f84fce160e39d4b12f42be3e0b010e2578814fdf9e775077a
|
Provenance
The following attestation bundles were made for agenteazy-0.2.5.tar.gz:
Publisher:
publish.yml on SimonSliman/agenteazy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agenteazy-0.2.5.tar.gz -
Subject digest:
0fb27afca1236ceeb60644f74ff372708ba3a67d55cce4bb3287d46c33c9189e - Sigstore transparency entry: 1113360984
- Sigstore integration time:
-
Permalink:
SimonSliman/agenteazy@e6b3ed7a45c142c9ded68bb8cb0ffda1ae766968 -
Branch / Tag:
refs/tags/v0.2.5 - Owner: https://github.com/SimonSliman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e6b3ed7a45c142c9ded68bb8cb0ffda1ae766968 -
Trigger Event:
release
-
Statement type:
File details
Details for the file agenteazy-0.2.5-py3-none-any.whl.
File metadata
- Download URL: agenteazy-0.2.5-py3-none-any.whl
- Upload date:
- Size: 68.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
426f799cfc1e4ccd64cebb39597d81f06dd4f7f6ffc674abbaba04bf20a61aaf
|
|
| MD5 |
6f651dd0f659cf8732acecbd9bd57812
|
|
| BLAKE2b-256 |
bcdebdad70920aae4605a4f8627e97e9fe33193c6e34fb1080771be58e57424b
|
Provenance
The following attestation bundles were made for agenteazy-0.2.5-py3-none-any.whl:
Publisher:
publish.yml on SimonSliman/agenteazy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agenteazy-0.2.5-py3-none-any.whl -
Subject digest:
426f799cfc1e4ccd64cebb39597d81f06dd4f7f6ffc674abbaba04bf20a61aaf - Sigstore transparency entry: 1113361024
- Sigstore integration time:
-
Permalink:
SimonSliman/agenteazy@e6b3ed7a45c142c9ded68bb8cb0ffda1ae766968 -
Branch / Tag:
refs/tags/v0.2.5 - Owner: https://github.com/SimonSliman
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e6b3ed7a45c142c9ded68bb8cb0ffda1ae766968 -
Trigger Event:
release
-
Statement type: