Agents are the entry point for AI and deep analysis in Honeydew. Each agent defines which domain the AI can access and which context it loads into analysis sessions.Documentation Index
Fetch the complete documentation index at: https://honeydew.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Creating an Agent
Agents can be created in a few ways:- Honeydew Studio — use the agent builder in the UI
- Git repository — commit a file to the
ai/agents/directory in your workspace - Coding agent — use a coding agent connected via MCP to create and manage agents (see MCP agent tools)
Context References
Thecontext field accepts
context item names
and glob patterns.
| Pattern | Matches |
|---|---|
skills/analysis/funnel-analysis | Exact item by full name |
skills/analysis/* | All items directly under skills/analysis/ |
knowledge/** | All items with the knowledge/ prefix |
* | All context items |
Access Control
Users are granted access to specific agents. Access to an agent grants access to the underlying domain and all referenced context items. The same domain can be exposed through multiple agents with different context sets — for example, afinance-analyst agent and a
sales-analyst agent can both access the revenue domain while
loading different context.
YAML Schema
Each agent is defined by a Markdown file with YAML frontmatter in Git.-
type: Required. Must beagent -
name: Required. Unique identifier for the agent within the workspace -
display_name: Human-readable name shown in the UI -
description: What this agent does -
welcome_message: Text shown to users at the start of a session -
sample_questions: Suggested questions; auto-generated in Honeydew Studio if empty -
domain: Required. The domain the agent has access to -
context: List of context item names or glob patterns (see Context References) -
owner: Team or user responsible for this agent -
model: Overrides the default LLM for deep analysis sessions started by this agent. Accepts a Honeydew model ID or a provider-specific model ID (e.g.,claude-sonnet-4-6). When not set, the workspace default model is used. The model must be supported by the workspace’s LLM provider. Supported Honeydew model IDs:Model ID Display name CLAUDE_4_5_SONNETClaude Sonnet 4.5 CLAUDE_4_5_OPUSClaude Opus 4.5 CLAUDE_4_6_SONNETClaude Sonnet 4.6 CLAUDE_4_6_OPUSClaude Opus 4.6 OPEN_AI_GPT_5_2OpenAI GPT-5.2 OPEN_AI_GPT_5_3OpenAI GPT-5.3 OPEN_AI_GPT_5_4OpenAI GPT-5.4 OPEN_AI_GPT_5_5OpenAI GPT-5.5 GEMINI_3_1_PROGemini 3.1 Pro