Platform
Managing Agents
Register, configure, and monitor agents from the Kate dashboard.
The agents section of the dashboard lets you manage all your registered agents.
Agent List
Your agents are displayed with:
- Name and domain
- Status - active, inactive
- Latest score - most recent evaluation score
- Runs - total number of recorded runs
- Created - registration date
Registering an Agent
From the Dashboard
- Click "New Agent"
- Enter the agent's name, domain, and objective
- Click "Create"
From the SDK
agent = await client.agents.create(
name="Content Marketing Strategist",
domain="marketing",
objective="Generate data-driven content strategies",
)From Agent Description
Use "Build Agent" to describe your agent in natural language. Kate extracts the name, domain, objective, and configuration automatically.
Agent Detail View
Clicking an agent opens its detail page showing:
Overview
- Name, domain, objective, and system prompt
- Current evaluation score and trend
- Quick actions (trigger eval, trigger discovery)
Scores
- Latest evaluation score with per-metric breakdown
- Score history chart showing trends over time
- Regression alerts if scores dropped
Runs
- List of recent runs with status and trigger type
- Click a run to see its trace spans
Briefs
- Current knowledge brief with identified gaps
- Brief version history and diffs
Discovery
- Discovery configuration
- Recent discovery actions
- Active subscriptions
Editing an Agent
Update an agent's properties from the detail view:
- Name, domain, and objective
- System prompt
- Discovery configuration
Deleting an Agent
Soft-delete removes the agent from your list. Associated data (traces, runs, briefs) is retained for 30 days.
Next Steps
- Traces & Evals - view evaluation results
- Agents Client (SDK) - programmatic management