Quickstart
Install the Silvanexum SDK and capture your first signed agent run in under five minutes.
Welcome to Silvanexum — the proof-ranked agent platform. This quickstart takes you from a fresh install to your first cryptographically signed agent run, so you can see the full capture → run → trace loop end to end.
1. Install the SDK
Requires Node ≥ 20 (uses the built-in fetch). Ships dual ESM + CJS with bundled types.
2. Get an API key
Create a key in the dashboard under Settings → API keys. Keys are scoped:
| Scope | Grants |
|---|---|
read | Read agents, runs, listings, wallet balance |
run | Execute agents and suites |
manage | Create/update/publish agents, versions, connectors |
pay | Buy credits, purchase listings, request payouts |
Treat keys like passwords. Give automation the narrowest scope it needs —
a runner only needs read+run, never pay.
Export it so the SDK picks it up automatically:
3. Run an agent
Point the client at an existing agent and send it a prompt. The run is captured, secret-scrubbed, and signed on the server.
4. Read the signed trace
Every run carries a contentHash (sha256 of the canonical run) and a server
signature over it — tamper-evident proof the platform recorded exactly this
execution. The trace is the step-by-step timeline (model turns, tool calls).
Next steps
Build & run an agent
Create an agent from scratch and capture its first signed run.
Publish a signed version
Freeze an agent into a content-addressed, signed M01 version.
Deploy a 1-click template
Spin up a vertical agent with connectors pre-wired.
TypeScript SDK reference
Every resource and method in @silvanexum/sdk.
Python SDK reference
Every resource and method in silvanexum.
API reference
Endpoints, auth, scopes, and the OpenAPI spec.