tool-design
Design or audit an AI agent toolset; route naming, schemas, output, errors, execution, and security to focused guides.
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
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-executionand
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:
hiddenParameterNamesstrips parameters from the model-facing
schema and re-merges them from execution context.
- Permission gate:
config.tools.approval.requirepauses 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_searchmeta-tool
activates and only a hot set is loaded each turn.
- Save-time checks:
validate_flowreports several checklist rows as stable codes
(see references/checklist.md, "Checked for you on Runtype").
The test loop
execute_toolwith 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_agentordispatch. - 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.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/runtypelabs/skills/skills/tool-design/SKILL.md