Skip to main content
Glama

Produce the run report

run_report

Generates a plain-text report of a checklist run with step marks, respondents, notes, counts, and signature block. Optionally saves the report to a .txt file when an output path is provided.

Instructions

The run as plain text on every tier: every step with its mark, who answered it, the notes, the counts and a signature block or the recorded signature. Pro also writes it to out_path as a .txt file.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
runYesThe run id, e.g. RUN-2026-0001, or its title when only one carries it
out_pathNoWhere to write the .txt file. Pro only. Omit to get the report back as text, which every tier can do
overwriteNoReplace out_path if a file is already there. Default false, and an existing file is refused with nothing written

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.21.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It does disclose the output format, the report contents, and the file-writing side effect for Pro. However, it does not address the existing-file/overwrite outcome, error behavior, or whether the operation is read-only with respect to the run itself.

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?

The description is compact and front-loaded, with two sentences covering report contents and the optional file write. The only weakness is that the first sentence is a noun phrase ('The run as plain text...') rather than a complete, explicit instruction, which slightly hurts readability.

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?

The description covers what the report contains, the text return mode, and the Pro-only file writing mode, which is sufficient for a simple 3-parameter tool. The overwrite behavior is already documented in the schema, so its absence from the description is not a significant gap.

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 description coverage is 100%, so the parameters are already well documented. The description reinforces the out_path behavior and the '.txt' format, but adds little beyond the schema and does not mention the overwrite parameter. This fits the baseline for high schema coverage.

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 title supplies the verb ('Produce') and the description specifies the resource (run report) plus its contents: every step, mark, answerer, notes, counts, and signature. It is clear, but it does not explicitly contrast itself with siblings like run_show or run_status, so the differentiation is implied rather than stated.

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?

The description gives useful context: the text form is available on every tier, and Pro can additionally write to out_path. However, it does not state when to prefer this tool over run_show, run_status, or run_list, nor does it mention any exclusion conditions.

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