Agent Specifications
Agent specifications define runtime behavior, capabilities, and UX defaults for individual agents.
Overviewโ
Agents are stored flat under agentspecs/agents/ and include explicit version.
Use versioned references in linked fields:
skills:
- github:0.0.1
mcp_servers:
- tavily:0.0.1
Generated catalogs expose both id and id:version aliases.
Required Fieldsโ
id (string)โ
Unique identifier (kebab-case).
version (string)โ
Spec version (currently 0.0.1).
name (string)โ
Display name shown in the UI
description (string)โ
Agent capabilities description (1-2 sentences)
Optional Fieldsโ
tags (list of strings)โ
Categorization tags for filtering and search
tags:
- finance
- visualization
- charts
enabled (boolean)โ
Whether agent is active (default: true)
mcp_servers (list of strings)โ
MCP server references. Prefer id:version format.
mcp_servers:
- alphavantage:0.0.1
- chart:0.0.1
- github:0.0.1
skills (list of strings)โ
Skill references. Prefer id:version format.
skills:
- github:0.0.1
- events:0.0.1
environment_name (string)โ
Runtime environment name (default: "ai-agents")
model (string)โ
AI model ID to use for this agent. References a model spec in models/ directory by its id field. If omitted, the system default model is used.
model: "bedrock:us.anthropic.claude-sonnet-4-5-20250929-v1:0"
model: "openai:gpt-4.1"
model: "anthropic:claude-opus-4-20250514"
icon (string)โ
UI icon identifier (e.g., "trending-up", "code", "database")
emoji (string)โ
UI emoji identifier (e.g., "๐", "๐ป", "๐")
color (string)โ
Hex color code for UI theming
color: "#3B82F6" # Blue
color: "#10B981" # Green
color: "#F59E0B" # Amber
color: "#6366F1" # Indigo
suggestions (list of strings)โ
Chat examples to show users what the agent can do (3-5 recommended)
suggestions:
- Show me the stock price history for AAPL
- Create a chart comparing MSFT and GOOGL
- Analyze the trading volume trends for Tesla
welcome_message (string)โ
Greeting message shown when agent starts
welcome_message: >
Welcome! I'm the Financial Visualization Agent. I can help you analyze
stock market data, track financial instruments, and create charts to
visualize market trends.
system_prompt (string)โ
Base system prompt for the agent. Defines the agent's role and capabilities.
system_prompt: >
You are a financial market analyst with access to Alpha Vantage market data
and chart generation tools. You can fetch stock prices, analyze trading volumes,
create visualizations, and track market trends.
system_prompt_codemode_addons (string)โ
Additional instructions for Code Mode execution environment. This field provides guidance on how to use the 4 core Codemode tools (list_servers, search_tools, get_tool_details, execute_code).
system_prompt_codemode_addons: >
## IMPORTANT: Be Honest About Your Capabilities
NEVER claim to have tools or capabilities you haven't verified.
## Core Codemode Tools
Use these 4 tools to accomplish any task:
1. **list_servers** - List available MCP servers
2. **search_tools** - Progressive tool discovery by natural language query
3. **get_tool_details** - Get full tool schema and documentation
4. **execute_code** - Run Python code that composes multiple tools
## Recommended Workflow
1. **Discover**: Use list_servers and search_tools to find relevant tools
2. **Understand**: Use get_tool_details to check parameters
3. **Execute**: Use execute_code to perform multi-step tasks
welcome_notebook (string)โ
Jupyter notebook path to show on agent creation (optional)
welcome_document (string)โ
Lexical document path to show on agent creation (optional)