superserve agents commands manage your deployed agents.
List Agents
View all deployed agents:Example Output
Filter by Status
| Filter | Matches |
|---|---|
ready | Agents ready to run |
deploying | Dependencies currently installing |
failed | Dependency installation failed |
JSON Output
Get Agent Details
View detailed information about a specific agent:Example Output
JSON Output
Delete Agent
Delete a deployed agent:y to confirm.
Skip Confirmation
Example Output
Command Reference
superserve agents list
List all deployed agents.
Filter agents by status (e.g.,
ready, deploying, failed)Output as JSON
superserve agents get
Get details of a specific agent.
Agent name or ID (e.g.,
my-agent or agt_abc123def456)Output as JSON
superserve agents delete
Delete a deployed agent.
Agent name or ID (e.g.,
my-agent or agt_abc123def456)Skip confirmation prompt
Agent Status
Agents have one of these statuses:| Status | Description |
|---|---|
READY | Agent is deployed and ready to run |
DEPLOYING | Dependencies are currently installing |
FAILED | Dependency installation failed |
Check Status
After deploying, check when dependencies finish installing:READY, you can run the agent:
Failed Status
If the status isFAILED, dependency installation encountered an error:
- Review your
requirements.txtorpackage.json - Ensure all dependencies are compatible with Linux x86_64
- Redeploy:
Agent IDs vs Names
All commands accept either:- Agent name: Human-readable name (e.g.,
my-agent) - Agent ID: Unique identifier (e.g.,
agt_abc123def456)
Using Names
Using IDs
agt_ and are globally unique.
Playground Links
Each agent has a Playground URL where you can interact with it in the browser:Examples
List Only Ready Agents
Get Agent Info as JSON
Delete Multiple Agents
Check if Agent Exists
Troubleshooting
”Agent not found”
Verify the agent name is correct:”No agents found”
You haven’t deployed any agents yet. Deploy one:Best Practices
- Use descriptive names - Name agents after their purpose (e.g.,
customer-support,data-analyst) - Clean up old agents - Delete unused agents to keep your list organized
- Use IDs for automation - Agent IDs never change, making them safer for scripts
- Check status after deploy - Ensure
READYstatus before running the agent