Skip to main content
Glama

noetic.commit

Validate and persist a session's records, checking ownership, state, and base freshness to ensure data consistency.

Instructions

Persist a session's produced records (validates ownership, state, non-stale base).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sessionIdNo
changeRefsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.2/5.0
Behavior3/5

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

No annotations are present, so the description carries the full burden. It discloses that the tool validates ownership, state, and non-stale base before persisting, which is useful. However, it omits side effects, failure behavior, permissions, or what happens when validations fail, all of which an agent needs for a committing action.

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, tight sentence. It front-loads the action and resource, and the parenthetical packs useful validation context without padding.

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?

A commit-like session operation needs more guidance: what 'non-stale base' means, what the validation failures imply, or what the return result looks like. There is no output schema and no parameter descriptions, so the description leaves too many practical details unspecified.

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 coverage is 0% and the description does not explain the parameters beyond implicit hints: 'session' likely maps to sessionId, 'produced records' to changeRefs. It does not define what changeRefs should contain, whether it is optional, or what shape the data should take, leaving an agent to guess.

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 uses a specific verb and resource: 'Persist a session's produced records', which clearly names the action. It also scopes the operation to a session and cites validations, which helps distinguish it from generic persistence siblings like noetic.persist, though it does not explicitly name a sibling.

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 gives implied usage: it is for session-scoped production records at commit time, and mentions validation conditions. However, it does not explicitly state when to use it in preference to alternatives, nor does it give exclusion criteria or name any sibling tools.

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