Skip to main content
Glama

goal_show

Retrieve a complete goal overview with objective, done criteria, exclusions, constraints, and item counts, so workers can confirm planned work aligns before starting.

Instructions

One goal in full — objective, what done means, what is explicitly excluded, constraints — with its item counts. A worker should read this before starting, so it can tell whether what it is about to build actually serves the goal.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cwdNoDirectory identifying the project and the tree. Defaults to this session's working directory, which in a git worktree is that worktree.
nameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations are absent, so the description carries the full burden. It discloses exactly what the operation returns and frames the tool as a read action by saying the worker 'should read this', implying no side effects. It does not discuss errors or auth, but for a simple show operation this is adequate.

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 tight sentences with no filler. The first sentence front-loads the output content; the second provides the usage directive. Every sentence earns its place.

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 single-goal retrieval tool, this description covers the return content and the when-to-use guidance, and the schema covers cwd. It does not explain not-found behavior or output format, but those are minor gaps given the simplicity of the tool.

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 only 50%: the cwd parameter is documented but the required name parameter is not. The description never mentions either parameter, so it does not compensate for the gap. The agent must infer that 'name' selects the goal to show.

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 clearly states what the tool returns: one full goal with objective, definition of done, exclusions, constraints, and item counts. It lacks an explicit verb like 'retrieve' or 'display', but the phrase 'One goal in full' plus the tool name make the purpose clear and distinguish it from a goal list.

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?

It explicitly tells the worker when to call this tool: before starting work, so it can verify that what it builds serves the goal. It does not mention alternative tools or when not to use it, so it misses the top score.

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