Kibana Agent Builder
Create, inspect, update, delete, and test Agent Builder tools and agents. Ground LLM responses in Elasticsearch
data through scoped search tools, parameterized ES|QL, and workflow integrations.
Environment Configuration
This skill executes Elasticsearch operations through the elastic CLI. If the
elastic CLI is not installed, tell the user what it is needed for. Do
not guess credentials, call the HTTP API directly, or attempt other workarounds.
This skill references operations in HTTP-shorthand form (e.g., GET /, GET /_cat/indices, GET /{index}/_mapping,
GET /{index}/_settings/index.mode, POST /_query). The Operations table at the end of this document
maps each shorthand to the equivalent elastic CLI command — always use the CLI rather than calling the HTTP API
directly.
Resource model
Agent Builder exposes three distinct resource kinds — do not conflate them:
| Kind |
Purpose |
Typical API |
| Tool |
Reusable function an agent invokes to retrieve or act on data (index_search, esql, workflow) |
POST kbn:/api/agent_builder/tools |
| Agent |
LLM entity with instructions and a curated toolset |
POST kbn:/api/agent_builder/agents |
| Chat / conversation |
Ephemeral messaging session with an existing agent |
POST kbn:/api/agent_builder/converse/async |
Creating a tool does not create an agent. Listing or chatting with an agent does not create a tool. When the
user asks to "create an agent" or "create a tool," identify which resource they mean before calling a write API.
Built-in tools use the platform.core.* prefix (for example platform.core.search). Custom tools and agents are
user-defined. Read architecture-guide.md for built-in tool inventory, context
engineering, and security notes.
Process
Classify the task. Decide whether the user needs a tool, an agent, or chat with an existing agent. If
they ask what already exists ("what agents are there?", "list agents"), treat the request as read-only discovery
— answer from live data before proposing any create, update, or delete.
Discover existing resources before any write. When creating or updating:
- Call
GET kbn:/api/agent_builder/tools to list available tools (built-in and custom). Do not invent tool IDs.
- Call
GET kbn:/api/agent_builder/agents to list existing agents and avoid duplicate IDs or names.
When the user only asks what agents exist, stop after GET kbn:/api/agent_builder/agents. Enumerate each agent's id
and name. If the list is empty, say so plainly — do not fabricate agents. Only proceed to creation when the user
explicitly asks to create one and you have confirmed the target id is unused.
Choose the tool type (for tool tasks). Match intent to the narrowest tool type:
- Open-ended search over a known index pattern →
index_search with a specific pattern (for example
customer-feedback-*), never * or all-indices scope unless the user explicitly requires it.
- Fixed analytics, aggregations, or parameterized queries →
esql with ?param placeholders and a params
object (use {} when there are no parameters).
- Multi-step automation beyond retrieval →
workflow referencing an existing workflow id.
For ES|QL syntax and query design, follow the elasticsearch-esql skill. For workflow YAML, follow the
kibana-workflows skill.
Build the tool payload. Required fields: id, type, description, configuration. Optional: tags.
API constraints (violations return 400):
- POST accepts only
id, type, description, configuration, tags. name is not valid on tools.
- Index search configuration uses
"pattern", not "index".
- ES|QL tools require
"params" even when empty: "params": {}.
- Each param accepts only
type and description — not default or optional. Hard-code defaults in the query.
- PUT on tools accepts only
description, configuration, and tags. id and type are immutable.
Index search example (scoped pattern):
{
"id": "customer_feedback_search",
"type": "index_search",
"description": "Searches customer feedback and support tickets in the customer-feedback indices.",
"configuration": {
"pattern": "customer-feedback-*"
}
}
ES|QL example (parameterized, with LIMIT):
{
"id": "feedback_sentiment_trend",
"type": "esql",
"description": "Returns positive vs negative feedback counts by product category over a lookback window.",
"configuration": {
"query": "FROM customer-feedback-* | WHERE @timestamp >= NOW() - ?lookback_days::integer * 1d | STATS positive = COUNT(*) WHERE sentiment == \"positive\", negative = COUNT(*) WHERE sentiment == \"negative\" BY product_category | SORT negative DESC | LIMIT 20",
"params": {
"lookback_days": {
"type": "integer",
"description": "Number of days to look back, e.g. 7, 30, 90"
}
}
}
}
Create and verify the tool. Call POST kbn:/api/agent_builder/tools with the payload. Confirm success by calling
GET kbn:/api/agent_builder/tools/{toolId} and reporting the created id, type, description, and configuration back
to the user — do not claim success without a live API response.
Optionally validate ES|QL tools with POST kbn:/api/agent_builder/tools/_execute, passing tool_id and
tool_params. Always include | LIMIT N in ES|QL queries to control token use.
Build the agent payload (for agent tasks). Required fields: id, name, description, configuration.
Configuration must include instructions and a tools array with tool_ids drawn from Step 2 — only IDs returned
by GET kbn:/api/agent_builder/tools.
Derive a stable id from the name (lowercase, hyphens, alphanumeric). Check Step 2's agent list for conflicts before
posting.
{
"id": "customer-feedback-agent",
"name": "Customer Feedback Analyst",
"description": "Analyzes customer sentiment and feedback trends.",
"configuration": {
"instructions": "Always use tools to retrieve data. Never answer data questions from memory.",
"tools": [
{
"tool_ids": ["customer_feedback_search", "platform.core.search"]
}
]
}
}
Agent update constraints: PUT accepts only description, configuration, and tags (plus avatar/labels when
applicable). Do not send immutable fields like id, name, or type on update — they cause 400 errors.
Create and verify the agent. Call POST kbn:/api/agent_builder/agents. Confirm with
GET kbn:/api/agent_builder/agents or GET kbn:/api/agent_builder/agents/{agentId}. Report the live response.
Update or delete (when requested). Confirm destructive actions with the user first.
- Update tool:
PUT kbn:/api/agent_builder/tools/{toolId}
- Delete tool:
DELETE kbn:/api/agent_builder/tools/{toolId}
- Update agent:
PUT kbn:/api/agent_builder/agents/{agentId}
- Delete agent:
DELETE kbn:/api/agent_builder/agents/{agentId}
Chat (when requested). Chat is not agent or tool creation. Use POST kbn:/api/agent_builder/converse/async with
an existing agent_id and user input. Expect multi-step reasoning and tool calls; allow sufficient time for
streaming completion.
Guidelines
- Discover before create. Always list agents (and tools when relevant) before creating resources. When asked "what
agents exist?", answer that question first — read-only — even if the user also mentions wanting a new agent later.
- Scope index search narrowly. Prefer
customer-feedback-* over *. Broad patterns increase noise, token cost, and
RBAC surface area.
- Write descriptive tool descriptions. The agent selects tools based on descriptions alone — include when to use
each tool and example trigger phrases.
- Minimize toolsets. Every assigned tool adds tokens to the agent system prompt on every turn.
- Validate ES|QL before deployment. Execute the tool after creation when parameters or query shape are non-trivial.
- Use aggregations and KEEP. Prefer summary stats over raw document dumps for analytics questions.
Examples
Create an index search tool (eval pattern)
User: "Create a custom Agent Builder tool that searches the customer-feedback-* index. Use the tool id
'eval-feedback-search'."
- List tools — confirm
eval-feedback-search does not already exist.
- Choose
index_search scoped to customer-feedback-* (not *).
- POST the tool with id, description, and
configuration.pattern.
- GET the tool by id and confirm creation to the user.
Answer "what agents already exist?" before creating
User: "I want to create a new agent in Kibana Agent Builder. What agents already exist?"
- Call
GET kbn:/api/agent_builder/agents — read-only.
- Enumerate existing agent ids and names (or state that none exist).
- Do not create, update, or delete anything in this step.
- Only if the user then asks to create, pick an unused id informed by the list above.
Create an agent after discovery
User: "Create a sales-helper agent using the esql-sales-data tool."
- List tools — confirm
esql-sales-data exists.
- List agents — confirm no conflicting id.
- POST agent with instructions and selected tool IDs.
- GET agent to verify and report back.
References
- architecture-guide.md — Built-in tools, context engineering, token optimization,
MCP/A2A integration, permissions
- use-cases.md — Playbooks for customer feedback, marketing campaign, and contract analysis
agents with example tool and agent payloads
Operations
| HTTP API (shorthand) |
elastic CLI command |
GET kbn:/api/agent_builder/tools |
elastic kb agent-builder get-agent-builder-tools |
POST kbn:/api/agent_builder/tools |
elastic kb agent-builder post-agent-builder-tools --id '<id>' --type '<type>' --description '<desc>' --configuration '<json>' |
GET kbn:/api/agent_builder/tools/{toolId} |
elastic kb agent-builder get-agent-builder-tools-toolid --tool-id '<toolId>' |
PUT kbn:/api/agent_builder/tools/{toolId} |
elastic kb agent-builder put-agent-builder-tools-toolid --tool-id '<toolId>' [--description '<desc>'] [--configuration '<json>'] |
DELETE kbn:/api/agent_builder/tools/{toolId} |
elastic kb agent-builder delete-agent-builder-tools-toolid --tool-id '<toolId>' [--force] |
POST kbn:/api/agent_builder/tools/_execute |
elastic kb agent-builder post-agent-builder-tools-execute --tool-id '<toolId>' --tool-params '<json>' |
GET kbn:/api/agent_builder/agents |
elastic kb agent-builder get-agent-builder-agents |
POST kbn:/api/agent_builder/agents |
elastic kb agent-builder post-agent-builder-agents --id '<id>' --name '<name>' --description '<desc>' --configuration '<json>' |
GET kbn:/api/agent_builder/agents/{agentId} |
elastic kb agent-builder get-agent-builder-agents-id --id '<agentId>' |
PUT kbn:/api/agent_builder/agents/{agentId} |
elastic kb agent-builder put-agent-builder-agents-id --id '<agentId>' [--description '<desc>'] [--configuration '<json>'] |
DELETE kbn:/api/agent_builder/agents/{agentId} |
elastic kb agent-builder delete-agent-builder-agents-id --id '<agentId>' |
POST kbn:/api/agent_builder/converse/async |
elastic kb agent-builder post-agent-builder-converse-async --agent-id '<agentId>' --input '<message>' |
1---2name: kibana-agent-builder3description: Create and manage Kibana Agent Builder agents and custom tools. Use when asked to create, update, delete, test, or inspect agents or tools in Agent Builder, or when the user wants to understand what agents or tools already exist.4---5
6# Kibana Agent Builder
7
8Create, inspect, update, delete, and test Agent Builder **tools** and **agents**. Ground LLM responses in Elasticsearch
9data through scoped search tools, parameterized ES|QL, and workflow integrations.
10
11<!-- begin-partial: preamble -->
12
13## Environment Configuration
14
15This skill executes Elasticsearch operations through the `elastic` CLI. If the
16[`elastic` CLI](https://github.com/elastic/cli#configuration) is not installed, tell the user what it is needed for. Do
17not guess credentials, call the HTTP API directly, or attempt other workarounds.
18
19This skill references operations in HTTP-shorthand form (e.g., `GET /`, `GET /_cat/indices`, `GET /{index}/_mapping`,
20`GET /{index}/_settings/index.mode`, `POST /_query`). The [Operations](#operations) table at the end of this document
21maps each shorthand to the equivalent `elastic` CLI command — always use the CLI rather than calling the HTTP API
22directly.
23
24<!-- end-partial: preamble -->
25
26## Resource model
27
28Agent Builder exposes three distinct resource kinds — do not conflate them:
29
30| Kind | Purpose | Typical API |
31| ----------------------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------- |
32| **Tool** | Reusable function an agent invokes to retrieve or act on data (`index_search`, `esql`, `workflow`) | `POST kbn:/api/agent_builder/tools` |
33| **Agent** | LLM entity with instructions and a curated toolset | `POST kbn:/api/agent_builder/agents` |
34| **Chat / conversation** | Ephemeral messaging session with an existing agent | `POST kbn:/api/agent_builder/converse/async` |
35
36Creating a tool does **not** create an agent. Listing or chatting with an agent does **not** create a tool. When the
37user asks to "create an agent" or "create a tool," identify which resource they mean before calling a write API.
38
39Built-in tools use the `platform.core.*` prefix (for example `platform.core.search`). Custom tools and agents are
40user-defined. Read [architecture-guide.md](references/architecture-guide.md) for built-in tool inventory, context
41engineering, and security notes.
42
43## Process
44
451. **Classify the task.** Decide whether the user needs a **tool**, an **agent**, or **chat** with an existing agent. If
46 they ask what already exists ("what agents are there?", "list agents"), treat the request as **read-only discovery**
47 — answer from live data before proposing any create, update, or delete.
48
492. **Discover existing resources before any write.** When creating or updating:
50 - Call `GET kbn:/api/agent_builder/tools` to list available tools (built-in and custom). Do not invent tool IDs.
51 - Call `GET kbn:/api/agent_builder/agents` to list existing agents and avoid duplicate IDs or names.
52
53 When the user only asks what agents exist, stop after `GET kbn:/api/agent_builder/agents`. Enumerate each agent's id
54 and name. If the list is empty, say so plainly — do not fabricate agents. Only proceed to creation when the user
55 explicitly asks to create one and you have confirmed the target id is unused.
56
573. **Choose the tool type (for tool tasks).** Match intent to the narrowest tool type:
58 - **Open-ended search over a known index pattern** → `index_search` with a **specific pattern** (for example
59 `customer-feedback-*`), never `*` or all-indices scope unless the user explicitly requires it.
60 - **Fixed analytics, aggregations, or parameterized queries** → `esql` with `?param` placeholders and a `params`
61 object (use `{}` when there are no parameters).
62 - **Multi-step automation beyond retrieval** → `workflow` referencing an existing workflow id.
63
64 For ES|QL syntax and query design, follow the `elasticsearch-esql` skill. For workflow YAML, follow the
65 `kibana-workflows` skill.
66
674. **Build the tool payload.** Required fields: `id`, `type`, `description`, `configuration`. Optional: `tags`.
68
69 **API constraints** (violations return 400):
70 - POST accepts only `id`, `type`, `description`, `configuration`, `tags`. **`name` is not valid** on tools.
71 - Index search configuration uses `"pattern"`, **not** `"index"`.
72 - ES|QL tools require `"params"` even when empty: `"params": {}`.
73 - Each param accepts only `type` and `description` — not `default` or `optional`. Hard-code defaults in the query.
74 - PUT on tools accepts only `description`, `configuration`, and `tags`. `id` and `type` are immutable.
75
76 **Index search example** (scoped pattern):
77
78 ```json
79 {
80 "id": "customer_feedback_search",
81 "type": "index_search",
82 "description": "Searches customer feedback and support tickets in the customer-feedback indices.",
83 "configuration": {
84 "pattern": "customer-feedback-*"
85 }
86 }
87 ```
88
89 **ES|QL example** (parameterized, with LIMIT):
90
91 ```json
92 {
93 "id": "feedback_sentiment_trend",
94 "type": "esql",
95 "description": "Returns positive vs negative feedback counts by product category over a lookback window.",
96 "configuration": {
97 "query": "FROM customer-feedback-* | WHERE @timestamp >= NOW() - ?lookback_days::integer * 1d | STATS positive = COUNT(*) WHERE sentiment == \"positive\", negative = COUNT(*) WHERE sentiment == \"negative\" BY product_category | SORT negative DESC | LIMIT 20",
98 "params": {
99 "lookback_days": {
100 "type": "integer",
101 "description": "Number of days to look back, e.g. 7, 30, 90"
102 }
103 }
104 }
105 }
106 ```
107
1085. **Create and verify the tool.** Call `POST kbn:/api/agent_builder/tools` with the payload. Confirm success by calling
109 `GET kbn:/api/agent_builder/tools/{toolId}` and reporting the created id, type, description, and configuration back
110 to the user — do not claim success without a live API response.
111
112 Optionally validate ES|QL tools with `POST kbn:/api/agent_builder/tools/_execute`, passing `tool_id` and
113 `tool_params`. Always include `| LIMIT N` in ES|QL queries to control token use.
114
1156. **Build the agent payload (for agent tasks).** Required fields: `id`, `name`, `description`, `configuration`.
116 Configuration must include `instructions` and a `tools` array with `tool_ids` drawn from Step 2 — only IDs returned
117 by `GET kbn:/api/agent_builder/tools`.
118
119 Derive a stable `id` from the name (lowercase, hyphens, alphanumeric). Check Step 2's agent list for conflicts before
120 posting.
121
122 ```json
123 {
124 "id": "customer-feedback-agent",
125 "name": "Customer Feedback Analyst",
126 "description": "Analyzes customer sentiment and feedback trends.",
127 "configuration": {
128 "instructions": "Always use tools to retrieve data. Never answer data questions from memory.",
129 "tools": [
130 {
131 "tool_ids": ["customer_feedback_search", "platform.core.search"]
132 }
133 ]
134 }
135 }
136 ```
137
138 **Agent update constraints:** PUT accepts only `description`, `configuration`, and `tags` (plus avatar/labels when
139 applicable). Do not send immutable fields like `id`, `name`, or `type` on update — they cause 400 errors.
140
1417. **Create and verify the agent.** Call `POST kbn:/api/agent_builder/agents`. Confirm with
142 `GET kbn:/api/agent_builder/agents` or `GET kbn:/api/agent_builder/agents/{agentId}`. Report the live response.
143
1448. **Update or delete (when requested).** Confirm destructive actions with the user first.
145 - Update tool: `PUT kbn:/api/agent_builder/tools/{toolId}`
146 - Delete tool: `DELETE kbn:/api/agent_builder/tools/{toolId}`
147 - Update agent: `PUT kbn:/api/agent_builder/agents/{agentId}`
148 - Delete agent: `DELETE kbn:/api/agent_builder/agents/{agentId}`
149
1509. **Chat (when requested).** Chat is not agent or tool creation. Use `POST kbn:/api/agent_builder/converse/async` with
151 an existing `agent_id` and user input. Expect multi-step reasoning and tool calls; allow sufficient time for
152 streaming completion.
153
154## Guidelines
155
156- **Discover before create.** Always list agents (and tools when relevant) before creating resources. When asked "what
157 agents exist?", answer that question first — read-only — even if the user also mentions wanting a new agent later.
158- **Scope index search narrowly.** Prefer `customer-feedback-*` over `*`. Broad patterns increase noise, token cost, and
159 RBAC surface area.
160- **Write descriptive tool descriptions.** The agent selects tools based on descriptions alone — include when to use
161 each tool and example trigger phrases.
162- **Minimize toolsets.** Every assigned tool adds tokens to the agent system prompt on every turn.
163- **Validate ES|QL before deployment.** Execute the tool after creation when parameters or query shape are non-trivial.
164- **Use aggregations and KEEP.** Prefer summary stats over raw document dumps for analytics questions.
165
166## Examples
167
168### Create an index search tool (eval pattern)
169
170User: "Create a custom Agent Builder tool that searches the customer-feedback-\* index. Use the tool id
171'eval-feedback-search'."
172
1731. List tools — confirm `eval-feedback-search` does not already exist.
1742. Choose `index_search` scoped to `customer-feedback-*` (not `*`).
1753. POST the tool with id, description, and `configuration.pattern`.
1764. GET the tool by id and confirm creation to the user.
177
178### Answer "what agents already exist?" before creating
179
180User: "I want to create a new agent in Kibana Agent Builder. What agents already exist?"
181
1821. Call `GET kbn:/api/agent_builder/agents` — read-only.
1832. Enumerate existing agent ids and names (or state that none exist).
1843. Do **not** create, update, or delete anything in this step.
1854. Only if the user then asks to create, pick an unused id informed by the list above.
186
187### Create an agent after discovery
188
189User: "Create a sales-helper agent using the esql-sales-data tool."
190
1911. List tools — confirm `esql-sales-data` exists.
1922. List agents — confirm no conflicting id.
1933. POST agent with instructions and selected tool IDs.
1944. GET agent to verify and report back.
195
196## References
197
198- [architecture-guide.md](references/architecture-guide.md) — Built-in tools, context engineering, token optimization,
199 MCP/A2A integration, permissions
200- [use-cases.md](references/use-cases.md) — Playbooks for customer feedback, marketing campaign, and contract analysis
201 agents with example tool and agent payloads
202
203## Operations
204
205| HTTP API (shorthand) | `elastic` CLI command |
206| ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------- |
207| `GET kbn:/api/agent_builder/tools` | `elastic kb agent-builder get-agent-builder-tools` |
208| `POST kbn:/api/agent_builder/tools` | `elastic kb agent-builder post-agent-builder-tools --id '<id>' --type '<type>' --description '<desc>' --configuration '<json>'` |
209| `GET kbn:/api/agent_builder/tools/{toolId}` | `elastic kb agent-builder get-agent-builder-tools-toolid --tool-id '<toolId>'` |
210| `PUT kbn:/api/agent_builder/tools/{toolId}` | `elastic kb agent-builder put-agent-builder-tools-toolid --tool-id '<toolId>' [--description '<desc>'] [--configuration '<json>']` |
211| `DELETE kbn:/api/agent_builder/tools/{toolId}` | `elastic kb agent-builder delete-agent-builder-tools-toolid --tool-id '<toolId>' [--force]` |
212| `POST kbn:/api/agent_builder/tools/_execute` | `elastic kb agent-builder post-agent-builder-tools-execute --tool-id '<toolId>' --tool-params '<json>'` |
213| `GET kbn:/api/agent_builder/agents` | `elastic kb agent-builder get-agent-builder-agents` |
214| `POST kbn:/api/agent_builder/agents` | `elastic kb agent-builder post-agent-builder-agents --id '<id>' --name '<name>' --description '<desc>' --configuration '<json>'` |
215| `GET kbn:/api/agent_builder/agents/{agentId}` | `elastic kb agent-builder get-agent-builder-agents-id --id '<agentId>'` |
216| `PUT kbn:/api/agent_builder/agents/{agentId}` | `elastic kb agent-builder put-agent-builder-agents-id --id '<agentId>' [--description '<desc>'] [--configuration '<json>']` |
217| `DELETE kbn:/api/agent_builder/agents/{agentId}` | `elastic kb agent-builder delete-agent-builder-agents-id --id '<agentId>'` |
218| `POST kbn:/api/agent_builder/converse/async` | `elastic kb agent-builder post-agent-builder-converse-async --agent-id '<agentId>' --input '<message>'` |