Skip to main content
Glama

DoR breakdown

dor
Read-onlyIdempotent

Check a work item's definition-of-ready conjuncts to confirm it is startable before resuming work. Returns pass/fail per condition and a final result.

Instructions

Definition-of-Ready breakdown for one work item: one line per conjunct with its current pass or fail and a final result line. Run it before resume to confirm a work item is actually startable; set status=progress consults the same conjuncts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYeswork item id W-NN

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral details: the line-per-conjunct output format, pass/fail evaluation, final result line, and its relationship to the resume/status workflow.

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 sentences, front-loaded with the core function and output shape, followed by actionable usage context. Every clause earns its place with no redundant or filler content.

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

Completeness5/5

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

For a read-only, single-parameter tool with no output schema, the description explains what the tool returns, when to invoke it, and how it relates to the surrounding workflow. Nothing essential is missing.

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?

The single parameter id is fully documented in the schema with the description 'work item id W-NN', so the schema carries the semantic weight. The tool description adds no additional parameter-level meaning beyond referring to 'one work item', which is consistent but not augmentative.

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?

The description states a specific action and object: it produces a Definition-of-Ready breakdown for one work item, with one line per conjunct, pass/fail status, and a final result line. This clearly distinguishes it from sibling tools like ready, status, and resume.

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

Usage Guidelines5/5

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

The description explicitly says to run it before resume to confirm a work item is startable, and it names set status=progress as an alternative that consults the same conjuncts. This gives concrete when-to-use guidance and points to a related behavior.

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