Skip to main content
Glama

report_done

Report completed work to release your file claim, log the change, and automatically check for collisions with other agents.

Instructions

汇报:干完了。做三件事: 1. 把自己的占用中认领标记为"已汇报"(释放文件); 2. 在"最新变更"里写一条流水(最多保留 MAX_HISTORY 条,旧的自动剪掉); 3. 自动检查这次改动有没有和别人撞车(如果撞了会提醒,不拦截)。 如果自己的认领已超 TTL 过期,会提示先重新 claim_files 再汇报。

参数: agent 你的名字/代号(要和认领时一致) summary 干了什么、结果如何 files 这次实际改动的文件,逗号分隔(建议填,用于自动查冲突)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentYes
filesNo
projectNo
summaryYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.6/5.0
Behavior5/5

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

There are no annotations to carry the safety or side-effect profile, so the description takes full responsibility. It explicitly discloses three side effects, including that file claims get released, history is pruned to MAX_HISTORY, and conflict checking is non-blocking (reminds but does not block). It also discloses TTL expiration behavior. This is high-quality behavioral disclosure.

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 well-structured: a one-line summary, a numbered list of effects, an edge-case condition, and parameter clarifications. Every sentence contributes useful information, and the most important behavioral details are front-loaded.

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 tool with three side effects, an edge case, and no annotations, the description covers the essential behavioral and parameter context quite thoroughly. An output schema exists for return values, so that is not needed here. The only notable gap is the undocumented project parameter, which keeps this from being fully complete.

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?

The schema provides no descriptions (0% coverage), so the description must compensate. It explains agent (must match the claim), summary (what was done/result), and files (comma-separated, recommended for conflict checking). However, the project parameter is not explained, leaving one of four parameters undocumented.

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 names a specific action (reporting task completion) and enumerates three concrete effects: marking a claim as reported, appending a history entry with automatic pruning, and checking for conflicting changes. This clearly differentiates it from siblings like release_claim or send_note, which have narrower purposes.

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 context is clear: this is the tool to call when claimed work is finished. It also gives a conditional rule—if the claim has expired, re-run claim_files first—which helps an agent decide when not to call it directly. It does not explicitly name alternative tools or exclusion cases, but the usage scenario is strongly implied and actionable.

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