agentic infrastructure

Deploy AI
Agents
Like Functions.

Write a Cell. Run ribo deploy. Get a live URL with SQL storage, object storage, and scheduling built in — no servers, no config, no cold starts.


// platform primitives
Cells
compute
Write Cells in JavaScript, Rust, or Python — compiled to WASM or run as-is. Each Cell runs in a V8 isolate — no servers to manage, no infrastructure to provision.
c3
sql · sqlite
SQL API backed by SQLite. exec, batch, and prepared statements. Persistent storage your Cell reads and writes on every request.
g7
object storage
S3-compatible object storage. Serve files, store agent state, cache embeddings. Declared in one line — no keys in code.
pulse
scheduler
Cron-based scheduler. One [[pulse]] block in ribo.toml fires your Cell on any schedule, UTC, 5-field POSIX cron.
// workflow

From idea to live URL in seconds.

Write a cell.js. Add a ribo.toml. Run ribo deploy. That's the whole workflow — no Docker, no IAM policies, no infrastructure to manage.

start deploying →
# ribo.toml [cell] name = "agent" js = "./cell.js" [[bindings]] type = "c3" binding = "DB" database = "agent-db" [[bindings]] type = "files" binding = "FILES" dir = "./public" [[pulse]] schedule = "*/5 * * * *"