Skip to main content
Glama
j0hanz
by j0hanz

Generate Review Summary

generate_review_summary
Read-onlyIdempotent

Summarizes code diffs and assesses risk level. Auto-infers repository language for streamlined code review.

Instructions

Summarize diff and risk level. Prerequisite: generate_diff. Auto-infer repo/language.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
languageNoPrimary language (e.g. TypeScript, Python, JavaScript, Go, Rust, Java). Auto-infer from files.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYesWhether the tool completed successfully.
resultNoSuccessful result payload.
errorNoError payload when ok is false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.12.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint; description adds auto-inference behavior and prerequisite, but does not clarify risk level generation or potential side effects beyond annotations.

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 sentences, front-loaded with key action, prerequisite, and auto-inference; no wasted words.

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?

Given a single optional parameter and presence of output schema, the description covers prerequisite and auto-inference adequately; no gaps for agent invocation.

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?

Single parameter 'language' has full schema description coverage; description redundantly mentions auto-inference, offering no additional meaning beyond the schema.

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 clearly states the tool summarizes a diff and risk level, with a prerequisite of generate_diff, distinguishing it from sibling tools like analyze_pr_impact which may have a broader scope.

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?

Explicitly states prerequisite (generate_diff), but does not provide guidance on when not to use it or differentiate from alternatives like analyze_pr_impact.

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