Skip to main content
Glama

prumo_check

Read-onlyIdempotent

Checks agent context files against the git index, reporting broken wikilinks, missing paths, undefined commands, and invalid configs. Records findings in a baseline without writing.

Instructions

Checks the context files a coding agent reads (CLAUDE.md, AGENTS.md, SKILL.md, .cursor/rules and the rest) against the git index of a repository. Reports paths whose letter case disagrees with git, broken [[wikilinks]], markdown links and heading anchors, paths that no longer exist, commands naming a script or target no package.json, Makefile or composer.json defines, agent configuration that points at nothing (a rule whose globs match no file, a skill without a description, an MCP server or a hook naming a missing script), and notes an index never mentions. Findings recorded in a .prumo-baseline.json at the repository root are held back and counted in stats.baselined. Nothing is written.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repoNoPath to the git repository. Defaults to the current working directory of the server.
targetsNoMarkdown files or folders to check, relative to the repository. Omit to auto-detect CLAUDE.md, AGENTS.md, installed SKILL.md files and the rest.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

Beyond the readOnly/destructive/idempotent hints, the description discloses a genuinely non-obvious behavior: findings recorded in .prumo-baseline.json at the repository root are held back and counted in stats.baselined. It also explicitly confirms 'Nothing is written.' No contradiction with annotations.

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 long but front-loaded: purpose first, then a detailed finding taxonomy, then baseline behavior, then the read-only guarantee. The enumeration of finding types is verbose yet earns its place because it is exactly what an agent needs to decide whether to invoke the check; slightly tighter phrasing would reach 5.

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

Completeness4/5

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

For a read-only checker with no output schema, the description exhaustively covers what is checked, discloses the baseline suppression mechanism, and explicitly guarantees no writes. The only gap is the unstated output/return format (stats.baselined is mentioned but not the overall response shape), which is minor given the tool's clearly defined purpose.

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 description coverage is 100%, so the baseline is 3. The description adds marginal value by spelling out the auto-detected file set (CLAUDE.md, AGENTS.md, SKILL.md, .cursor/rules and 'the rest'), which fleshes out what omitting targets means, but the schema already documents both parameters adequately.

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 uses a specific verb ('Checks') with a well-scoped resource: the context files a coding agent reads, compared against the git index of a repository. It enumerates nine concrete categories of findings, and the closing 'Nothing is written' separates it cleanly from the prumo_fix sibling. This goes far beyond a restatement of the name.

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 makes the tool's nature clear — a read-only validation pass over agent context files — and 'Nothing is written' implicitly contrasts with prumo_fix. However, it never explicitly names alternatives or states when to prefer this tool over prumo_fix or prumo_drift, so usage guidance stays at the implied level.

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

Deploy Server

Other Tools