Skip to main content
Glama

create_iteration

Add a versioned iteration to PLAN.md with title, version, and optional goal, status, agent, or path. Enables tracking of project lifecycle updates without direct file editing.

Instructions

Create ### vX.Y.Z — Title iteration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNo
agentNoOptional agent id tag written as [agent: id] on touched lines.
majorNo
titleYes
statusNo
versionYes
plan_pathNoOptional path to PLAN.md (relative to cwd or absolute). Default: walk up from cwd to nearest PLAN.md.
descriptionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

D1.5/5.0
Behavior1/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 merely says 'Create' and omits whether the tool writes to a file, modifies a plan, requires an existing plan, or is reversible.

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

Conciseness2/5

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

The description is extremely short, but this is under-specification rather than effective conciseness. The single template string does not provide enough information to be useful.

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

Completeness1/5

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

With 8 parameters, no output schema, no annotations, and a large sibling set, the description is far from complete. An agent would be guessing about required behavior, parameter roles, and expected results.

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?

Schema description coverage is only 25%, so the description must compensate for undocumented parameters. It adds a weak formatting hint for version and title, but says nothing about goal, major, status, description, or how the parameters relate to the created iteration.

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

Purpose2/5

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

The description uses a verb and a template-like resource ('Create ### vX.Y.Z — Title iteration'), but it never explains what an iteration is, what side effect 'Create' produces, or how this differs from sibling tools like create_plan and create_major. The placeholder format is suggestive rather than clarifying.

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

Usage Guidelines1/5

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

There is no guidance on when to use this tool versus alternatives. With 21 siblings including create_plan, create_major, start_iteration, and set_iteration_goal, an agent has no basis for selecting this tool.

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