Build

From strategy to running agent.

Everything you need to build on Silvana — quickstart, API surface, and the hosting model that fits your security perimeter.

Three entry points

Pick where to start.

The guide gets you running. The reference gives you the full surface. Agent Deployment decides where your agent lives and who holds the keys.

SDK guide

Install, onboard, configure, run. Zero to live agent.

API reference

Four gRPC services, the two-phase flow, and every capability they expose.

Agent Deployment

Agent types and hosting models — where your agent runs and who holds the keys.

From install to live

A running agent, in an afternoon.

Install the CLI, authenticate, and scaffold your first agent. Then it's the same two-phase flow everywhere — prepare, then execute.

zsh — silvana
$ curl -fsSL https://get.silvana.one | shsilvana 0.4.0 installed$ silvana login✓ authenticated as you@org$ silvana agent new my-first-agent✓ scaffolded · running locally on :7070
// Configure the agent and connect to Silvanalet agent = Agent::new(config).connect().await?; // Two-phase flow: prepare, then executelet prepared = agent.prepare(intent).await?;let result = agent.execute(prepared).await?; println!("agent live: {}", result.id);

Install to live agent — start now.

Follow the guide, wire in the API, then choose where your agent runs.