Skip to main content
Glama
mgd34msu

vibecheck

by mgd34msu

plan_edit

Idempotent

Add or update project plan tasks atomically, using an expected revision to prevent conflicting edits and maintain coordinator consistency.

Instructions

Atomically add or update plan tasks using the coordinator's expected revision.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
requestYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior4/5

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

The annotations already establish that the tool is mutating, idempotent, and non-destructive. The description adds meaningful behavioral context by stating atomicity and the expected-revision concurrency control. It does not describe failure behavior on revision mismatch, but the core safety profile is already covered by annotations.

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 sentence with the core operation front-loaded and no filler. It communicates atomicity, the action, the resource, and the concurrency expectation efficiently.

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 complex nested mutation tool, the description lacks explicit guidance on when to invoke it instead of plan_publish or plan_ack, and what happens if expected_revision is stale. However, the rich input schema and idempotent/non-destructive annotations cover much of the invocation detail, so the gaps are meaningful but not catastrophic.

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 0%, so the description carries the burden of explaining parameters, but it only clarifies expected_revision and the general add/update operation. It does not explain project_id, request_id, session_id, or the task field semantics beyond what the schema constraints already show. Most parameter meaning must be derived from names and schema structure.

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?

The description clearly identifies the operation (atomically add or update plan tasks) and the key constraint (coordinator's expected revision). It is specific about the resource and action, but it does not explicitly distinguish itself from sibling tools such as plan_publish or plan_ack beyond the 'edit' in the name.

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 about when to use this tool versus alternatives like plan_publish, plan_ack, or plan_read. The description does not mention prerequisites, the role of the session, or what to do if the expected revision does not match. The agent must infer usage context from the schema and sibling names.

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