SpinupSpinup Docs
CLI

Inspect a Spinup Agent

Inspect one Spinup Agent with `spinup agents get`, including its model, harnesses, capabilities, and environment status.

Run by agent ID:

spinup agents get agent_01hxyz...

Or run by slug:

spinup agents get --slug support-agent

The ID form first resolves the agent through your selected workspace, then loads the agent by slug. Use --slug when you already know the slug and want to skip that lookup.

Example output:

Workspace: acme
ID: agent_01hxyz...
Name: Support Agent
Slug: support-agent
Primary Model: openrouter/openai/gpt-4o-mini
Default Harness: openclaw
Supported Harnesses: openclaw, hermes
Runtime: 4096 MiB memory, 4 GiB disk
Skills: 1 skill
Capabilities: 1 capability
Status: ready
Reconciliation: applied
Reconciliation Error: -
Ready At: 2026-04-17T10:06:00.000Z
Last Error: -
Created At: 2026-04-17T10:00:00.000Z
Updated At: 2026-04-17T10:05:00.000Z

JSON output

Use --json for the full public inspection payload:

spinup agents get --slug support-agent --json

The JSON response includes the agent ID and slug, model, harnesses, capabilities, runtime sizing and network policy, environment status, environment attention, and runtime reconciliation state. Environment variable values and secret references are not returned.

Choose or override the workspace

Persist the default workspace once:

spinup workspaces use acme

Or override it for one command:

SPINUP_WORKSPACE=acme spinup agents get --slug support-agent