Tool Design
A tool that returns correct data can still fail in production because the agent could
not tell when to call it, what to pass, or what to do with the result. "Working" is not
the same as "agent-usable". This skill family treats the agent as the consumer and
designs for it.
The guidance is framework-neutral: it applies to MCP servers, native function calling,
Runtype runtime tools, and any custom loop. It is organized as 54 named patterns across
ten questions; references/pattern-index.md maps every pattern to the skill that owns
it.
The consumer changed, so the design rules changed
| Aspect |
Integration middleware |
Agent tools |
| Consumer |
Applications |
An LLM |
| Routing |
Predetermined flows |
Chosen by the agent at runtime |
| Errors |
Dead-letter queue |
Recovery guidance the agent can act on |
| Documentation |
Written for humans |
Written for machine comprehension |
| Composition |
Orchestrated by a bus |
Chained by the agent, non-deterministic |
Nothing enforces sequence for the agent. The tool descriptions, parameter shapes, result
shapes, and error messages are the only orchestration layer there is.
Four rules that apply to every tool
- Design for the model, not the human. Names, descriptions, parameter names, and
error text are read by an LLM. Be literal, structured, and complete.
- Prompts express intent; code enforces rules. Authorization, secrets, boundaries,
and audit live in the tool layer. Never rely on the agent to police itself.
- Errors teach, not just fail. Every failure says what went wrong, why, and the
exact next call to make.
- Hint at what comes next. Descriptions and results name prerequisites and
follow-ups so the agent builds the workflow without trial and error.
Procedure: design a new tool
- Classify it on the three axes and write the answers down before writing a schema:
- Type:
query (read-only, retryable, cacheable), command (side effects, document
irreversibility), or discovery (reveals what exists, schema, capabilities).
- Integration: API, database, file system, or system operation. Databases and
command tools need idempotency because agents retry on timeout.
- Access pattern: synchronous (most tools; bounded seconds), async job (minutes;
return a job id), streaming, or event-driven.
- Maturity: start atomic. Move to enhanced, composite, or orchestrated only
when traces show the signal (see "Level up on evidence").
- Write the interface with
tool-design-interface: a verb-object name, a description
that says when to use it and when not to, constrained parameters, smart defaults,
natural identifiers, and dependency hints.
- Shape the result with
tool-design-output: flat, token-efficient, paginated by
cursor, summary by default, with GUI links and a next-action hint.
- Design the failure paths with
tool-design-errors: classify every error as
retryable, permanent, needs-user-input, or needs-auth, and attach recovery steps.
- Decide execution semantics with
tool-design-execution: timeout, idempotency
key, transaction or compensation, async job when work exceeds the sync budget.
- Lock the boundary with
tool-design-security: secrets injected server-side,
permission checks in code, declared scopes, audit log, identity anchor.
- Place it in the set with
tool-design-composition: does it bundle a common
sequence, accept a batch, offer preview mode, sit on an abstraction ladder?
- Test it as the agent would. Call it with the inputs an LLM will plausibly send
(natural-language dates, display names instead of ids, a single item where an array
is expected) and read the errors back as if you knew nothing but the description.
Procedure: review an existing tool set
Run this when asked to audit, review, or "figure out why the agent misuses" a toolkit.
- Inventory. List every tool with type (query/command/discovery), parameter count,
required-parameter count, and whether it has side effects. Flag any tool whose type
is not obvious from its name.
- Read every description as the model. For each tool, answer only from the
description: when do I call this? what do I need first? what do I get back? If any
answer is unclear, that is a finding.
- Check the parameters against
tool-design-interface: free-form strings that
should be enums, required parameters that could default, ids where a natural
identifier would do, secrets accepted as parameters (a security finding, not a
style one), ambiguous "one of X or Y" pairs without enforcement.
- Check the results against
tool-design-output: raw upstream payloads, nested
blobs, unbounded lists, missing hasMore and cursor, no GUI link, batch results
that collapse to all-or-nothing.
- Check the errors against
tool-design-errors: raw status codes, messages with
no next step, no retryable/permanent distinction, ambiguity resolved by guessing.
- Check execution and security against
tool-design-execution and
tool-design-security: command tools with no idempotency story, work that cannot
finish inside the timeout, permission logic in the system prompt, no audit trail.
- Check the set as a whole against
tool-design-composition: near-duplicate tools,
sequences the agent always performs together (bundle candidates), N-item loops
(batch candidates), destructive tools without a preview mode, more tools than the
model can hold in context at once.
- Report findings as a table: tool, pattern violated, severity (blocks the agent /
degrades reliability / polish), concrete fix. Lead with the findings that make the
agent choose the wrong tool or fail to recover; those dominate observed failures.
Level up on evidence, not ambition
Start atomic and watch traces. Each signal maps to a specific move:
| Signal in traces |
Move |
| High retry rate on one tool |
Fix description and error guidance first |
| The same tool sequence repeated across runs |
Bundle it into a task tool |
| Per-item loops over the same tool |
Add a batch variant |
| Partial completion of multi-step operations |
Add a transaction boundary or compensation |
| Agent calls a tool it lacks prerequisites for |
Add dependency hints and a discovery tool |
| Agent picks the wrong one of two similar tools |
Merge them or sharpen the "use when / not when" |
| Long-running calls time out |
Convert to an async job |
Do not build the orchestrated version first. Composite tools built before atomic usage
is understood encode guesses about workflows the agent never runs.
Pre-ship checklist
Every tool must pass all of these before it reaches an agent:
- Name is verb-object and unambiguous next to every sibling tool.
- Description says what it does, when to use it, when not to, and what to call first.
- Every string input that has a finite set of valid values is an enum.
- Every optional parameter has a documented default; required parameters are minimal.
- Human-friendly identifiers are accepted and resolved internally.
- Result is flat, token-efficient, and consistent in shape across calls.
- Large results are cursor-paginated with an explicit
hasMore.
- Errors carry a class (retryable / permanent / user input / auth) and a next step.
- Command tools state whether they are idempotent and how.
- Secrets are injected from context, never accepted as parameters.
- Permission checks run in code before the operation.
- Invocations are logged with redacted parameters.
- Destructive or costly commands are gated (approval, preview mode, or both).
references/checklist.md carries the same list with the pattern each row comes from.
On Runtype
Everything above is framework-neutral. Building natively on Runtype, the platform
already implements most of the enforcement, so the job is knowing which mechanism
carries which pattern.
Which tool kind carries which pattern
Tool kind (toolType) |
What it is |
Patterns it carries |
external |
HTTP call defined by url, method, headers, body template |
Tool Adapter, Secret Injection ({{secret:KEY}}), request mapping (the body template) |
custom |
Sandboxed code, 30 s cap, no network egress |
Parameter Coercion, Response Shaper, Error Classification, Natural Identifier resolution |
flow |
A saved flow exposed as one tool, run synchronously |
Task Bundle, Tool Chain, Compensation (per-step errorHandling) |
subagent |
Delegation to a saved or inline agent (agentId or agent) |
Abstraction Ladder (the orchestrated rung), Scatter-Gather, Async Job (detached mode) |
local |
Executed by the client (browser widget or SDK caller) |
Confirmation Request, Resource Reference, anything needing the user's environment |
mcp |
A tool discovered from an MCP server |
Tool Gateway, Tool Registry (discover_mcp_server_tools) |
builtin / Orthogonal |
Platform catalog tools (attached by id, not created) |
Canonical Tool Model, house style for descriptions |
An external tool returns the upstream response as-is; shape it in a flow tool
(api-call step into transform-data) or in a downstream transform-data step. A
custom tool has no network egress, so it cannot make the call itself. Long-running work is not
a flow tool either: a subagent tool with config.execution.mode: "detached" returns
a run handle, and run_flow with async: true returns an execution id (see
tool-design-execution).
The MCP create_tool accepts tool_type in flow, custom, external, graphql,
mcp, local, with name, description, parameters_schema (JSON Schema), and
config. The REST API and SDKs (POST /v1/tools, spelled toolType and
parametersSchema) accept the same set plus subagent; over MCP, delegate instead
through the agent's config.tools.subagentConfig. builtin tools are never created;
attach them by id through config.tools.toolIds. Iterate with update_tool and
get_tool; read get_platform_documentation(topic="external-tools") and
get_platform_documentation(topic="limits") before designing.
What the platform enforces for you
- Credentials:
{{secret:KEY}} references resolve server-side and are the only
credential contract. Never collect secret values in chat; hand the user the intake
URL from get_secret_intake_manifest.
- Context injection:
hiddenParameterNames strips parameters from the model-facing
schema and re-merges them from execution context.
- Permission gate:
config.tools.approval.require pauses the run for a human on the
listed tools; the agent's _approvalReason is display-only, never a control signal.
- Audit: every tool call is traced on the run and visible in Runs, Logs, and
trace_execution.
- Timeouts: a tool call is capped at 30 s; longer work moves to a flow step (5 min
step budget) or a subagent.
- Tool count: 50 runtime tools per request; at 20 the
tool_search meta-tool
activates and only a hot set is loaded each turn.
- Save-time checks:
validate_flow reports several checklist rows as stable codes
(see references/checklist.md, "Checked for you on Runtype").
The test loop
execute_tool with the inputs an agent will plausibly send, including wrong ones,
and read the result and error as the model would.
- Wire it into an agent and run a realistic prompt with
execute_agent or dispatch.
- When a real run misuses the tool, pin it:
add_eval_case_from_execution, then
run_eval_suite after every description or schema change. Read
get_platform_documentation(topic="evals") for tool-use eval layers.
1---2name: tool-design3description: Use when designing, building, or reviewing tools that an AI agent will call: MCP server tools, function-calling schemas, agent toolkits, runtime tools, or an API being wrapped for an LLM. Covers classifying a tool (query, command, discovery; sync or async; atomic to orchestrated), the four rules every tool must satisfy, a pre-ship checklist, and an audit procedure for an existing tool set. Routes deeper work to tool-design-interface, tool-design-output, tool-design-errors, tool-design-composition, tool-design-execution, and tool-design-security. Trigger phrases: "design a tool", "tool schema", "MCP tool", "function calling", "agent can't figure out which tool", "review my tools", "why does the agent keep retrying".4---56# Tool Design78A tool that returns correct data can still fail in production because the agent could9not tell when to call it, what to pass, or what to do with the result. "Working" is not10the same as "agent-usable". This skill family treats the agent as the consumer and11designs for it.1213The guidance is framework-neutral: it applies to MCP servers, native function calling,14Runtype runtime tools, and any custom loop. It is organized as 54 named patterns across15ten questions; `references/pattern-index.md` maps every pattern to the skill that owns16it.1718## The consumer changed, so the design rules changed1920| Aspect | Integration middleware | Agent tools |21| ------------- | ---------------------- | --------------------------------------- |22| Consumer | Applications | An LLM |23| Routing | Predetermined flows | Chosen by the agent at runtime |24| Errors | Dead-letter queue | Recovery guidance the agent can act on |25| Documentation | Written for humans | Written for machine comprehension |26| Composition | Orchestrated by a bus | Chained by the agent, non-deterministic |2728Nothing enforces sequence for the agent. The tool descriptions, parameter shapes, result29shapes, and error messages are the only orchestration layer there is.3031## Four rules that apply to every tool32331. **Design for the model, not the human.** Names, descriptions, parameter names, and34 error text are read by an LLM. Be literal, structured, and complete.352. **Prompts express intent; code enforces rules.** Authorization, secrets, boundaries,36 and audit live in the tool layer. Never rely on the agent to police itself.373. **Errors teach, not just fail.** Every failure says what went wrong, why, and the38 exact next call to make.394. **Hint at what comes next.** Descriptions and results name prerequisites and40 follow-ups so the agent builds the workflow without trial and error.4142## Procedure: design a new tool43441. **Classify it** on the three axes and write the answers down before writing a schema:45 - Type: `query` (read-only, retryable, cacheable), `command` (side effects, document46 irreversibility), or `discovery` (reveals what exists, schema, capabilities).47 - Integration: API, database, file system, or system operation. Databases and48 command tools need idempotency because agents retry on timeout.49 - Access pattern: synchronous (most tools; bounded seconds), async job (minutes;50 return a job id), streaming, or event-driven.51 - Maturity: start **atomic**. Move to enhanced, composite, or orchestrated only52 when traces show the signal (see "Level up on evidence").532. **Write the interface** with `tool-design-interface`: a verb-object name, a description54 that says when to use it and when not to, constrained parameters, smart defaults,55 natural identifiers, and dependency hints.563. **Shape the result** with `tool-design-output`: flat, token-efficient, paginated by57 cursor, summary by default, with GUI links and a next-action hint.584. **Design the failure paths** with `tool-design-errors`: classify every error as59 retryable, permanent, needs-user-input, or needs-auth, and attach recovery steps.605. **Decide execution semantics** with `tool-design-execution`: timeout, idempotency61 key, transaction or compensation, async job when work exceeds the sync budget.626. **Lock the boundary** with `tool-design-security`: secrets injected server-side,63 permission checks in code, declared scopes, audit log, identity anchor.647. **Place it in the set** with `tool-design-composition`: does it bundle a common65 sequence, accept a batch, offer preview mode, sit on an abstraction ladder?668. **Test it as the agent would.** Call it with the inputs an LLM will plausibly send67 (natural-language dates, display names instead of ids, a single item where an array68 is expected) and read the errors back as if you knew nothing but the description.6970## Procedure: review an existing tool set7172Run this when asked to audit, review, or "figure out why the agent misuses" a toolkit.73741. **Inventory.** List every tool with type (query/command/discovery), parameter count,75 required-parameter count, and whether it has side effects. Flag any tool whose type76 is not obvious from its name.772. **Read every description as the model.** For each tool, answer only from the78 description: when do I call this? what do I need first? what do I get back? If any79 answer is unclear, that is a finding.803. **Check the parameters** against `tool-design-interface`: free-form strings that81 should be enums, required parameters that could default, ids where a natural82 identifier would do, secrets accepted as parameters (a security finding, not a83 style one), ambiguous "one of X or Y" pairs without enforcement.844. **Check the results** against `tool-design-output`: raw upstream payloads, nested85 blobs, unbounded lists, missing `hasMore` and cursor, no GUI link, batch results86 that collapse to all-or-nothing.875. **Check the errors** against `tool-design-errors`: raw status codes, messages with88 no next step, no retryable/permanent distinction, ambiguity resolved by guessing.896. **Check execution and security** against `tool-design-execution` and90 `tool-design-security`: command tools with no idempotency story, work that cannot91 finish inside the timeout, permission logic in the system prompt, no audit trail.927. **Check the set as a whole** against `tool-design-composition`: near-duplicate tools,93 sequences the agent always performs together (bundle candidates), N-item loops94 (batch candidates), destructive tools without a preview mode, more tools than the95 model can hold in context at once.968. **Report** findings as a table: tool, pattern violated, severity (blocks the agent /97 degrades reliability / polish), concrete fix. Lead with the findings that make the98 agent choose the wrong tool or fail to recover; those dominate observed failures.99100## Level up on evidence, not ambition101102Start atomic and watch traces. Each signal maps to a specific move:103104| Signal in traces | Move |105| ---------------------------------------------- | ----------------------------------------------- |106| High retry rate on one tool | Fix description and error guidance first |107| The same tool sequence repeated across runs | Bundle it into a task tool |108| Per-item loops over the same tool | Add a batch variant |109| Partial completion of multi-step operations | Add a transaction boundary or compensation |110| Agent calls a tool it lacks prerequisites for | Add dependency hints and a discovery tool |111| Agent picks the wrong one of two similar tools | Merge them or sharpen the "use when / not when" |112| Long-running calls time out | Convert to an async job |113114Do not build the orchestrated version first. Composite tools built before atomic usage115is understood encode guesses about workflows the agent never runs.116117## Pre-ship checklist118119Every tool must pass all of these before it reaches an agent:120121- Name is verb-object and unambiguous next to every sibling tool.122- Description says what it does, when to use it, when not to, and what to call first.123- Every string input that has a finite set of valid values is an enum.124- Every optional parameter has a documented default; required parameters are minimal.125- Human-friendly identifiers are accepted and resolved internally.126- Result is flat, token-efficient, and consistent in shape across calls.127- Large results are cursor-paginated with an explicit `hasMore`.128- Errors carry a class (retryable / permanent / user input / auth) and a next step.129- Command tools state whether they are idempotent and how.130- Secrets are injected from context, never accepted as parameters.131- Permission checks run in code before the operation.132- Invocations are logged with redacted parameters.133- Destructive or costly commands are gated (approval, preview mode, or both).134135`references/checklist.md` carries the same list with the pattern each row comes from.136137## On Runtype138139Everything above is framework-neutral. Building natively on Runtype, the platform140already implements most of the enforcement, so the job is knowing which mechanism141carries which pattern.142143### Which tool kind carries which pattern144145| Tool kind (`toolType`) | What it is | Patterns it carries |146| ---------------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |147| `external` | HTTP call defined by `url`, `method`, `headers`, `body` template | Tool Adapter, Secret Injection (`{{secret:KEY}}`), request mapping (the `body` template) |148| `custom` | Sandboxed code, 30 s cap, no network egress | Parameter Coercion, Response Shaper, Error Classification, Natural Identifier resolution |149| `flow` | A saved flow exposed as one tool, run synchronously | Task Bundle, Tool Chain, Compensation (per-step `errorHandling`) |150| `subagent` | Delegation to a saved or inline agent (`agentId` or `agent`) | Abstraction Ladder (the orchestrated rung), Scatter-Gather, Async Job (detached mode) |151| `local` | Executed by the client (browser widget or SDK caller) | Confirmation Request, Resource Reference, anything needing the user's environment |152| `mcp` | A tool discovered from an MCP server | Tool Gateway, Tool Registry (`discover_mcp_server_tools`) |153| `builtin` / Orthogonal | Platform catalog tools (attached by id, not created) | Canonical Tool Model, house style for descriptions |154155An `external` tool returns the upstream response as-is; shape it in a `flow` tool156(`api-call` step into `transform-data`) or in a downstream `transform-data` step. A157`custom` tool has no network egress, so it cannot make the call itself. Long-running work is not158a `flow` tool either: a `subagent` tool with `config.execution.mode: "detached"` returns159a run handle, and `run_flow` with `async: true` returns an execution id (see160`tool-design-execution`).161162The MCP `create_tool` accepts `tool_type` in `flow`, `custom`, `external`, `graphql`,163`mcp`, `local`, with `name`, `description`, `parameters_schema` (JSON Schema), and164`config`. The REST API and SDKs (`POST /v1/tools`, spelled `toolType` and165`parametersSchema`) accept the same set plus `subagent`; over MCP, delegate instead166through the agent's `config.tools.subagentConfig`. `builtin` tools are never created;167attach them by id through `config.tools.toolIds`. Iterate with `update_tool` and168`get_tool`; read `get_platform_documentation(topic="external-tools")` and169`get_platform_documentation(topic="limits")` before designing.170171### What the platform enforces for you172173- Credentials: `{{secret:KEY}}` references resolve server-side and are the only174 credential contract. Never collect secret values in chat; hand the user the intake175 URL from `get_secret_intake_manifest`.176- Context injection: `hiddenParameterNames` strips parameters from the model-facing177 schema and re-merges them from execution context.178- Permission gate: `config.tools.approval.require` pauses the run for a human on the179 listed tools; the agent's `_approvalReason` is display-only, never a control signal.180- Audit: every tool call is traced on the run and visible in Runs, Logs, and181 `trace_execution`.182- Timeouts: a tool call is capped at 30 s; longer work moves to a flow step (5 min183 step budget) or a subagent.184- Tool count: 50 runtime tools per request; at 20 the `tool_search` meta-tool185 activates and only a hot set is loaded each turn.186- Save-time checks: `validate_flow` reports several checklist rows as stable codes187 (see `references/checklist.md`, "Checked for you on Runtype").188189### The test loop1901911. `execute_tool` with the inputs an agent will plausibly send, including wrong ones,192 and read the result and error as the model would.1932. Wire it into an agent and run a realistic prompt with `execute_agent` or `dispatch`.1943. When a real run misuses the tool, pin it: `add_eval_case_from_execution`, then195 `run_eval_suite` after every description or schema change. Read196 `get_platform_documentation(topic="evals")` for tool-use eval layers.