Skip to content

SkilleoOpen source AI infrastructure and agent runtime

pip install skilleo — call a stable /v1 contract on Skilleo Cloud at api.skilleo.org. GPU bills stay with your provider.

Call Cloud in four lines

bash
pip install skilleo
python
from skilleo import Client

client, signup = Client.signup("dev@example.com")
client.providers.connect("runpod")  # you set RUNPOD_API_KEY in your secret store
run = client.capabilities.run("research.gather", version="1", input={"topic": "Kenya"})
print(client.runs.wait(run["id"])["data"]["output"])

Default base URL is https://api.skilleo.org. Override only if you run a compatible /v1 server yourself.

Open source vs Skilleo Cloud

Open source (pip install skilleo)Skilleo Cloud
Python SDKHosted control plane
Capability specificationAuthentication
Provider interfaces (RunPod GPU; MiniMax/ElevenLabs voice)Subscriptions and billing
Agent SDK and examplesManaged execution
CLI and local runtimeProduction orchestration

Same /v1 either way. Quickstart · Open source and Cloud

Skilleo — /v1 at api.skilleo.org