Skip to main content
Glama

record_outcome

Record a task's verified outcome with status and evidence, allowing AI agents to reuse proven approaches and avoid repeating failures.

Instructions

Record the verified outcome of the current task, e.g. status='success', evidence='pytest -q passed'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
evidenceYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the burden. It discloses that this is a write operation but not whether repeated calls overwrite, whether it finalizes the task, or any authorization requirements. For a mutation tool with zero annotation coverage, this is a significant gap.

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?

One sentence plus an example, with no filler. The key action and example are 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 simple two-parameter tool with an output schema, the core call is well specified. However, absence of annotations leaves open questions about side effects and repeatability that a more complete description would address.

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 0%, so the description must compensate. The example maps status and evidence to concrete values ('success', 'pytest -q passed'), which clarifies intended usage, but it doesn't explain acceptable evidence formats or edge cases beyond the schema's enum.

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 action ('record') and resource ('verified outcome of the current task') with a concrete example. It is clearly distinct from sibling tools, though it doesn't explicitly contrast with them.

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?

The phrase 'verified outcome' and 'current task' give contextual guidance for when to call: after verifying a task result. It doesn't explicitly state when not to use it or mention alternatives, but siblings serve different functions.

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