Skip to main content
Glama

Execution packet

packet
Read-onlyIdempotent

Fetch the complete execution packet for a work item, including goals, hypotheses, decisions, and blocker outcomes, to get full context before starting or resuming work.

Instructions

Full execution packet for one work item as markdown: record, goals and fitness contribution, hypotheses, linked decisions, blocking questions and the outcome of every blocker. Fetch this before starting or resuming any work item; next returns the same bundle only for its single proposal, and show prints the bare record without execution context. cone=true appends multi-hop structural context over blocks edges (cone-depth default 4, cone-max default 50 nodes); deps returns just the blocker ids. An unknown id fails with not found (exit 5).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYeswork item id W-NN
coneNoappend multi-hop structural context on blocks
cone_maxNocone node cap (default 50)
cone_depthNocone BFS hops (default 4)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already state readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral detail beyond that: the markdown return format, the full set of returned components, cone expansion behavior with defaults, and the failure mode ('not found' exit 5). 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every clause earns its place: the packet contents, usage timing, sibling differentiation, cone parameters and defaults, and error behavior. It is dense but well-structured, with the core purpose front-loaded and no filler.

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?

For a read-only retrieval tool with no output schema, the description is complete: it states what the agent receives, when to fetch it, how cone modifies the result, and what happens on invalid ids. The only omitted detail is the exact markdown layout, which is not necessary for correct invocation.

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

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds meaning beyond the schema by explaining that cone appends structural context over blocks edges, clarifying the relationship to deps, and specifying the unknown-id error behavior. It reinforces id's role implicitly through the error case and explains the cone parameters' effects.

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 opens with a specific verb and resource: 'Full execution packet for one work item as markdown' followed by the exact contents. It distinguishes itself from siblings by contrasting with next, show, and deps, so an agent can pick it without opening schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use the tool: 'Fetch this before starting or resuming any work item.' It also names alternatives and their scopes—next returns the bundle for a single proposal and show prints the bare record—so the agent knows exactly when not to use this tool.

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