Skip to main content
Glama

save_sprite

Explicitly saves the active sprite to disk only when requested, preventing unintended overwrites during pixel art editing.

Instructions

Explicitly saves the active sprite to disk. (Saves only when explicitly requested).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations at all, the description carries the full disclosure burden. It does add one genuinely useful behavioral trait: saving is not implicit/automatic and occurs only on explicit request. It does not say whether an existing file is overwritten, which path/target is written, or what happens on failure.

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

Conciseness4/5

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

Two short sentences, front-loaded with the action, with no filler beyond the parenthetical. The parenthetical largely restates 'Explicitly', so there is minor redundancy, but the definition stays tight.

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

Completeness3/5

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

For a zero-parameter tool with no output schema, the core is present, but a disk-mutating tool with no annotations should say more: where the file is written, whether it overwrites, and how it differs from save_sprite_as in the sibling set. Those gaps keep it merely adequate.

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

Parameters4/5

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

The schema has zero parameters, which is the baseline-4 case per the rubric. There is nothing parameter-wise for the description to clarify, and it correctly implies a no-argument call.

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

Purpose4/5

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

States a specific verb and resource ('saves the active sprite to disk'), so the agent knows exactly what the call does. It is separable from the sibling save_sprite_as by name and by the 'to disk' phrasing, but the description never explicitly draws that contrast, so it stops short of full sibling differentiation.

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

Usage Guidelines3/5

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

The parenthetical 'Saves only when explicitly requested' implies the tool should be invoked only on an explicit user save request, which is useful implied guidance. However, it names no alternative (e.g. save_sprite_as for saving under a new name) and gives no preconditions, so usage remains inferential.

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