Skip to main content
Glama

compile_execution_context

Build a compact execution package for a contract family or slice, so agents or workers can run with all required context and deterministic inputs.

Instructions

Produce a compact deterministic execution package for IntakeGov/CogC or a worker.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slice_idNo
family_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

C2.7/5.0
Behavior2/5

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

With zero annotations, the description carries the full burden of behavioral disclosure but only reveals output characteristics ('compact deterministic'), not operational behavior. It doesn't state whether producing the package has side effects (persistence, upload, caching), requires permissions, or fails when inputs are absent. An agent cannot predict the consequences of invoking it.

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?

A single efficient sentence with the verb front-loaded and zero filler words. The brevity, however, comes at the cost of needed context: 'IntakeGov/CogC' is unexplained jargon and 'execution package' is underspecified. Well-structured but too sparse.

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?

The output schema exists so return values don't need coverage, but with 0% parameter description, no annotations, and a jargon-heavy domain with 31 siblings, the description should explain what an execution package consists of and what 'deterministic' means operationally. It leaves critical gaps for an agent deciding whether and how to call 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 description coverage is 0%, so the description must compensate, yet it never mentions family_id or slice_id. An agent is left to infer from the tool name and sibling names (create_family, start_slice) that family_id identifies the family and slice_id optionally selects a slice. That inference is exactly the compensation the description should have provided.

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 names a specific verb ('Produce'), a resource ('execution package'), and distinguishing qualifiers ('compact deterministic'), plus a target ('IntakeGov/CogC or a worker'). However, it doesn't explicitly differentiate from siblings like read_context, which could plausibly serve an overlapping need, and the 'IntakeGov/CogC' jargon is unexplained. Clear on the verb+resource but short of full sibling differentiation.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus the 31 siblings. There is no 'use this when...' or 'use X instead' language, and no prerequisites are mentioned (e.g., whether a family must exist or a slice must be active). The phrase 'for IntakeGov/CogC or a worker' hints at a use case, but nothing is explicit.

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