Skip to main content
Glama

ateam_get_progress

What this build has already ACHIEVED — read it FIRST when continuing a run, before any orientation call. Returns the CURRENT status per step (latest entry wins) plus recent history.

Then build only the steps that are ABSENT or not yet verified.

ABSENT IS NOT "NOTHING WAS DONE" — the journal may predate a step, or a run may have died before writing. It is a fast path, not a new source of truth: check before rebuilding something expensive.

Complements ateam_get_lessons, which records what BROKE. This records what WORKS.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHistory entries to return (default 60). `steps` is always complete.
solution_idYesThe solution ID

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description must carry the behavioral burden, and it does well by disclosing that 'latest entry wins' and cautioning that ABSENT does not mean nothing was done, because the journal may predate a step or a run may have died before writing. It clearly frames the tool as a fast path rather than a source of truth. It does not discuss error conditions or auth, but the key interpretation pitfalls are covered.

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 longer than average but each section earns its place: it front-loads the most critical instruction ('read it FIRST'), then states the return shape, then explains the non-obvious ABSENT semantics, and finally disambiguates from the sibling. There is no filler, and the warnings are essential rather than redundant.

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?

Given there is no output schema and no annotations, the description does a strong job of covering what the tool returns, when to call it, how to interpret the returned status, and how it relates to ateam_get_lessons. It could still be more explicit about the exact shape of the step entries or verified values, but the essential guidance for correct invocation and interpretation is present.

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 100%, and both parameters have explicit descriptions in the schema: solution_id is documented and limit has both a default and the note that steps is always complete. The description reinforces the semantics of limit by contrasting 'history entries' with the always-complete steps, but it does not add substantial 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 opens with a concrete statement of what the build has achieved and immediately states the tool returns 'CURRENT status per step (latest entry wins) plus recent history.' It also differentiates from the sibling ateam_get_lessons by explicitly framing this tool as recording what WORKS versus what BROKE, so an agent can distinguish them.

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?

It gives explicit when-to-use instructions: 'read it FIRST when continuing a run, before any orientation call,' and prescribes the action to take afterward: 'build only the steps that are ABSENT or not yet verified.' It also names the complementary alternative, ateam_get_lessons, and clarifies the division of responsibility.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, with detailed descriptions that differentiate similar functions like chain polling vs. chain inspection. However, there is slight overlap between ateam_design_advisor, ateam_get_spec, and ateam_spec_search, which all serve design guidance, potentially causing confusion if descriptions are not read carefully.

Naming Consistency4/5

The naming mostly follows a consistent verb_noun pattern with the 'ateam_' prefix (e.g., ateam_get_solution, ateam_create_connector, ateam_test_skill). Minor deviations include ateam_patch (missing object) and ateam_redeploy (verb only), but overall the pattern is predictable and clear.

Tool Count3/5

With 47 tools, the count is high and exceeds the typical 15-tool threshold for a well-scoped set. However, the tools cover a broad and complex platform (auth, deployment, testing, GitHub integration, scaffolding), and each tool appears to have a distinct role, making the count borderline acceptable rather than excessive.

Completeness4/5

The tool set covers the full lifecycle of building, deploying, testing, and managing A-Team solutions, including design, GitHub integration, and verification. Minor gaps exist, such as no explicit tool for deleting individual files (though patching can overwrite) and no standalone skill listing, but these are not critical dead ends for an agent.