Skip to main content
Glama

eco_create

Create an engineering change order record that captures changes as a diffable ECO, optionally computing lockfile where-used impact in the same call.

Instructions

Build an ECO change-order record (issue #142, C3) — turn a change into a record, not a silent mutation (the diff IS the change order, mapping onto a git commit/PR). Optionally compute its where-used impact over a lockfile in the same call, so the blast radius travels with the record.

id: the ECO id (e.g. "ECO-0001"). affected: the list of changed item / component ids. disposition: the change disposition (use_as_is | rework | scrap | revise | ...). effectivity: a dict with exactly one of date|serial|revision (when it takes effect). title / note: optional human description recorded on the record. interface_change: true if a published interface moved (the §9 stale trigger). lockfile: optional path — when given, the result embeds an impact report. out: optional path — write the git-diffable ECO sidecar there.

Returns the ECO object (with impact when a lockfile is supplied); a malformed ECO fails loudly.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
outNo
noteNo
titleNo
affectedYes
lockfileNo
dispositionYes
effectivityYes
interface_changeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries real behavioral weight: it discloses that a lockfile embeds an `impact` report, that `out` writes a git-diffable sidecar, and that a malformed ECO 'fails loudly'. It omits permission/auth requirements and rate behavior, but the mutation and side-effect profile is otherwise well disclosed.

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?

Front-loads the core purpose, then uses compact per-parameter lines, so it is easy to scan. It is a touch long and a few parentheticals (issue number, section reference) do not earn their space, but there is little filler.

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

Completeness4/5

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

For a 9-parameter, nested-object mutation tool with no annotations and no output schema, the description explains both the return ('the ECO object, with `impact` when a lockfile is supplied') and failure behavior, which is what an agent needs. Missing only auth/permission context.

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

Parameters5/5

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

Schema coverage is 0%, yet the description documents every meaningful parameter: id, affected list, disposition (with candidate values), effectivity (exactly one of date|serial|revision), title/note, interface_change, lockfile, and out. This fully compensates for the bare schema and even supplies the enum values the schema lacks.

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 concrete verb+resource ('Build an ECO change-order record') and crisply frames its role as recording a change rather than performing a silent mutation, which distinguishes it from mutating siblings like lifecycle_apply_change. The internal jargon '(issue #142, C3)' and '§9 stale trigger' add little for an outside agent, and there's no explicit differentiation from change_impact or eco_validate.

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?

It notes that where-used impact can optionally be computed 'in the same call' via a lockfile, implying a workflow against change_impact, but never states when to pick eco_create over eco_validate, change_impact, or lifecycle_apply_change. Usage is inferable rather than prescribed.

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

Deploy Server

Other Tools