Skip to main content
Glama

octri_retry_build

Retry failed languages in place within an existing build, or specify languages to rerun. Omit languages to retry only failures.

Instructions

Re-run only the named languages of an existing build, in place. Omit languages to retry exactly the ones that failed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
build_idYes
languagesNo
project_idNoProject id. Optional, falls back to the CLI's selected project.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

A3.7/5.0
Behavior3/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. "In place" usefully signals that existing build state is mutated rather than a new build created, but it omits auth/permission requirements, what happens to already-succeeded languages, and how partial failures surface.

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?

Two tight sentences with zero redundancy, and the in-place scoping plus the omit-to-retry rule are both front-loaded.

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 3-param mutation tool with no annotations and no output schema, the description covers the core behavior but leaves out side effects on prior successful artifacts and any permission prerequisites, which an agent would want before invoking it.

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 coverage is only 33% (only project_id is documented in the schema). The description rescues `languages` semantics (named languages; omit to retry failures), but adds nothing about build_id, and project_id's fallback behavior is already in the schema.

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+resource+scope: re-running selected languages of an existing build, in place. It is clearly distinguishable from octri_trigger_build (which creates a new build), though it never names that sibling explicitly.

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

Usage Guidelines4/5

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

Gives explicit conditional behavior: omit `languages` to retry only the failed ones. That tells the agent when the omission path applies, but it does not state when to prefer this tool over triggering a fresh build or diffing/validating instead.

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