Skip to main content
Glama

abort_behavior

Halt, pause, or resume autonomous behavior execution and disengage active inputs to regain control.

Instructions

Immediately halt, pause, or resume behavior execution and disengage active inputs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes
reasonNo
projectNo
trace_idNo
execution_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

C2.6/5.0
Behavior2/5

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

Because no annotations are provided, the description carries the full burden of disclosing side effects. It mentions 'disengage active inputs' but does not explain whether abort is destructive, whether pause/resume preserves state, whether the operation is immediate across all running behaviors, or what side effects occur. This is insufficient for a control action.

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 a single front-loaded sentence with no filler. It efficiently lists the supported operations and the affected resource. The slight synonym confusion between 'halt' and 'pause' prevents a perfect score, but structurally it is concise.

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

Completeness2/5

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

For a tool with five parameters, no output schema, and no annotations, one sentence is not enough. The description omits which parameters are relevant for each action, whether optional parameters are required in certain cases, and what the agent should expect after the call. This leaves significant gaps for correct invocation.

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

Parameters1/5

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

Schema description coverage is 0%, so the description must compensate for the five parameters, but it does not. reason, project, trace_id, and execution_id are left unexplained, and the description only restates the action enum values (halt/pause/resume) without adding parameter-level meaning.

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 description identifies a concrete resource (behavior execution) and a specific control scope (halt, pause, or resume). It differentiates from sibling tools that load, configure, or observe behaviors. However, 'halt' and 'pause' overlap semantically, and the tool name 'abort_behavior' implies a narrower purpose than the description provides.

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

Usage Guidelines2/5

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

There is no guidance about when to use this tool versus alternatives such as manage_behaviors, load_behavior, or set_parameters. The description also does not clarify when abort should be chosen over pause or resume. All usage context is left to inference.

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