Skip to main content
Glama
holeyfield33-art

Aletheia Token Guard (ATG)

load_checkpoint

Retrieve the most recent in-progress checkpoint for a work ID, enabling agents to resume paused tasks and continue tracking progress across sessions.

Instructions

Load the latest in-progress checkpoint for work_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
work_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description must carry the full behavioral burden. It explains what is loaded but does not disclose side effects, what happens when no checkpoint exists, whether loading is read-only or restores state, or any requirements such as prior save_checkpoint usage.

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?

The description is a single concise sentence with no filler or redundant detail. It front-loads the core operation and scoping parameter effectively.

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?

The tool is simple, has one parameter, and an output schema is present, so return values do not need explanation. Still, the description omits important behavioral context such as error handling, side effects, and the relationship between loading and saving checkpoints, making it only minimally complete.

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

Parameters2/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. It only mentions work_id as the scope for loading, adding little beyond the schema's existing 'Work Id' title; it does not clarify format, origin, or relationship to other tools.

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 ('load') and a specific resource ('latest in-progress checkpoint') scoped by 'work_id'. This clearly distinguishes it from sibling tools like save_checkpoint, list_checkpoints, and mark_done.

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 implies usage: use this tool when you need the latest in-progress checkpoint for a work_id. However, it does not explicitly explain when to prefer list_checkpoints or save_checkpoint, nor does it state any exclusions.

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