GETTING STARTED
Quick Start
Stand up a minimal Syra workflow with one network, one agent, and one task.
Bootstrap the runtime
Start the control plane
bash
syra server start --port 8000 --host 0.0.0.0The dashboard mirrors the local control plane state. If you refresh the browser after making CLI changes, the UI should reflect the same resources.
Define a simple workflow
Provision network, agent, and task
bash
syra network add --name base-sepolia --rpc https://sepolia.base.org --chain-id 84532syra agent create --name release-analyst --model gpt-4-turbo --network base-sepoliasyra task create --agent release-analyst --prompt "Summarize active release risks"Expected outcome
network: base-sepolia added
agent: release-analyst created
task: queued and waiting for execution