Skip to main content
Glama

Generate roadmap

generate_roadmap

Generate a sprint-by-sprint roadmap based on your feature set and experience level, or finalize it to store and complete the session.

Instructions

Draft or finalize a sprint-by-sprint roadmap. Without finalize, returns a sprint breakdown sized to the feature set and experience level. With finalize: true and data, stores the roadmap and completes the session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
finalizeNo
session_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A4.1/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose the most important side effects: finalizing stores the roadmap and completes the session. The phrase 'completes the session' is not fully elaborated, but the key behavioral traits are present.

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?

The description is compact and front-loaded: two sentences immediately convey the default behavior and the finalization path. Every clause earns its place with no redundant wording.

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

Completeness3/5

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

The tool has nested objects and no output schema, so more return-value detail would help. The description explains what draft mode returns at a high level, but it does not describe the return format, prerequisites like an existing session, or what happens when finalize is true without sufficient data.

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 0%, so the description should compensate for parameter meaning. It adds real meaning to finalize by explaining the conditional behavior, but it does not describe data shape or session_id semantics beyond what the schema already provides.

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: 'Draft or finalize a sprint-by-sprint roadmap.' It also distinguishes two modes, so an agent can tell drafting from finalizing and understand the tool's unique role among siblings.

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?

The description gives clear conditional usage guidance: without finalize it drafts a breakdown; with finalize: true and data it stores the roadmap. It does not explicitly name sibling alternatives or exclusions, but the mode-based guidance is strong enough to steer invocation.

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