Skip to main content
Glama

create_frame

Add a blank animation frame after a specific frame or at the end to extend an Aseprite animation sequence.

Instructions

Creates a new blank animation frame after the specified frame or at the end.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
durationNoFrame duration in ms (default 100)
afterFrameNoInsert after this frame number (defaults to end)

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, the description carries the full behavioral burden. It discloses that the new frame is blank and where it is placed, but says nothing about side effects such as selection changes, undo behavior, or sprite modification.

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?

A single, well-formed sentence with no wasted words. The key operation and placement behavior are front-loaded and easy to parse.

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 simple two-parameter mutation tool, the description is adequate but not complete. It omits when to use this versus duplicating a frame, and it does not mention whether the new frame becomes selected or how errors are handled.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents both parameters fully. The description adds only the 'specified frame or at the end' placement concept, which is already covered by the afterFrame parameter description.

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?

States a specific verb and resource ('Creates a new blank animation frame') and clarifies the insertion position. The word 'blank' distinguishes it from duplicate_frame, which would copy an existing frame.

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?

The description explains where the frame is inserted but gives no guidance on when to choose this tool over duplicate_frame or other frame creation approaches. No prerequisites or alternatives are mentioned.

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