Skip to main content
Glama
qddfxp

task-checkpoint

by qddfxp

tc_export

Export a handoff package to an existing directory while excluding sensitive file contents, enabling task resumption across sessions.

Instructions

导出交接包到一个已存在的目录。敏感文件内容不会导出。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYes已存在的导出父目录
rootYes工作区根目录

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes交接包目录
filesNo
filteredYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does add a meaningful behavioral constraint: '敏感文件内容不会导出' (sensitive file contents will not be exported), and it implies the destination must already exist. However, it does not disclose overwrite behavior, failure modes, or what happens if the directory does not exist.

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 two short sentences with no wasted words. The primary action is stated first, and the sensitive-content caveat is a valuable second sentence that earns its place.

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 an output schema, so return values need not be described. However, for an export operation with no annotations, the description omits important context such as whether files are overwritten, whether the directory must be empty, and how this relates to sibling tools like tc_compress. It is adequate but not complete.

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%, so the schema already documents both parameters. The description adds no new parameter-level meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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 clearly states the verb '导出' (export), the resource '交接包' (handover package), and the destination '已存在的目录' (existing directory). It is specific enough to understand the tool's core function, but it does not explicitly differentiate itself from siblings like tc_save or tc_capture.

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 is given about when to use this tool versus alternatives such as tc_capture, tc_save, or tc_compress. The description only states what the tool does, not under what circumstances it should be chosen.

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