Skip to main content
Glama
Deraiven
by Deraiven

zadig_build_template_diff

Compare a current Zadig build template against a desired template payload to pinpoint configuration differences and guide updates.

Instructions

Diff current Zadig build template detail against desired template payload.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
templateYes
template_idNo
template_nameNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It clearly indicates a comparison between current and desired template state, but it does not explicitly state that the operation is non-destructive, whether it has side effects, or what the diff output represents beyond the existence of an output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence with no filler. Every word contributes to the core purpose, and it is appropriately sized for the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The output schema exists, but the tool's identification semantics and side-effect profile are under-specified: the required template is a free-form object, the roles of template_id and template_name are unstated, and no connection is made to the related update or apply tools. An agent cannot reliably determine what payload to pass from this description alone.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0% description coverage, and the description only references 'desired template payload', which loosely maps to the required template object. It does not explain how template_id or template_name identify the current template, nor how the desired template payload should be structured, leaving most parameter semantics ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb ('Diff'), a concrete resource ('current Zadig build template detail') and the comparison target ('desired template payload'), which clearly separates it from sibling tools like build_template_get, build_template_update, or build_template_apply. The diff suffix itself marks it as a compare operation rather than a mutation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool instead of build_template_update, build_template_apply, or build_template_get. The phrase 'against desired template payload' implies a diff-before-apply workflow, but the agent must infer this from the name and sibling list rather than from explicit instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.