Skip to main content
Glama

Confirm behavior correction

correction_confirm
Idempotent

Confirm a pending behavior correction to permanently apply it, writing the correction to memory and refreshing the persona.

Instructions

Confirm a pending behavior correction (from corrections.json, usually extracted by memory_extract rule mode). On confirmation: writes a correction memory and refreshes the persona. ID comes from memory_pending correction entries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesCorrection ID (from memory_pending)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.0

TDQS

A4.7/5.0
Behavior5/5

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

Discloses side effects beyond the idempotentHint annotation: 'writes a correction memory and refreshes the persona.' This gives the agent a clear understanding of what happens on confirmation.

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 concise sentences that convey purpose, source, and effects without extraneous detail. Well-structured and easy to parse.

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 simple tool, the description is complete: it specifies the input source, the action, and the effects. No missing information that would prevent an agent from using it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The argument 'id' is well described both in the schema and the tool description as 'Correction ID (from memory_pending)'. Schema coverage is 100%, and the description reinforces the source.

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?

States a specific action ('Confirm') on a specific resource ('pending behavior correction') and clearly describes the effects. Differentiates from sibling tools by referencing corrections.json and memory_pending entries.

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?

Provides context on when to use: for pending corrections from memory_extract rule mode, with ID from memory_pending. Does not explicitly contrast with correction_reject but implies it by focusing on confirmation.

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