Skip to main content
Glama
speedofred

io.github.speedofred/ami-survey

by speedofred

ami_write_findings

Write the judgement sections of an agent workflow run's scorecard after retrieving its brief with ami_get_scorecard, grounding each narrative in the run's own evidence.

Instructions

Write the judgement sections of a run's scorecard. The server computes every number and the three sections that follow from them; these four are readings of the work that no arithmetic produces, so they are yours to write. Call ami_get_scorecard first and use narration_brief.sections_awaiting_you - it carries the brief for each. Ground every sentence in the run's own evidence; do not invent industry context you were not given.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
run_idYesThe submitted run.
key_findingNoOptional. Overrides the derived summary if you have read the output and know better than the arithmetic does.
industry_next_stepNoOne thing the business should decide or standardise.
workflow_next_stepNoOne concrete change, specific enough to act on this week.
industry_opportunityNoWhat this workflow being agent-run means commercially. Say so plainly if you were given no industry context.
workflow_opportunityNoThe single biggest improvement available to this workflow. Name the stage.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries the behavioral burden, and it does so well: it discloses what the server computes vs. what the agent supplies, and imposes a grounding constraint ('Ground every sentence in the run's own evidence; do not invent industry context'). That is exactly the kind of non-obvious behavior an agent needs to know.

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?

Three sentences, each earning its place: purpose, prerequisite, and grounding constraint. Front-loaded and no 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 write tool with no annotations and no output schema, it explains the division of labor, the prerequisite read, and the evidence constraint. It doesn't mention failure modes or confirmation, but the essentials are covered.

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 baseline is 3. The description adds the concept of narration_brief.sections_awaiting_you but not per-parameter nuance; it does not describe how the five optional fields map to those sections. Schema handles the individual parameters.

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 verb and resource: 'Write the judgement sections of a run's scorecard.' It clearly distinguishes these from server-computed numbers and sections, and it names the exact prerequisite call (ami_get_scorecard). This makes the tool's purpose unmistakable and distinct from sibling tools like ami_get_scorecard.

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?

Explicitly instructs the agent to call ami_get_scorecard first and use narration_brief.sections_awaiting_you, which gives clear context for when to use this tool. It does not explicitly list when not to use it or name alternative tools, but the prerequisite and task boundary are clear enough.

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