Skip to main content
Glama
qddfxp

task-checkpoint

by qddfxp

tc_save

Save a task step checkpoint to preserve progress and enable resumption after interruptions. Optionally close the task to prevent further saves.

Instructions

保存一个任务层步骤。close=true 时关闭任务且不再接受保存。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nextNo下一步
rootYes工作区根目录
closeNo
pathsNo预留路径范围参数;当前必须为空数组
titleYes步骤标题
task_idNo任务 id。省略时使用当前活动任务
verifiedNo
conclusionNo这一步的结论
descriptionNo为什么这么做
open_questionsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
gitYes这一步的 git 指针。git 是增强:ok 为 false 或 reason 说明没建 ref(不是仓库、TC_GIT=off、ref 重名等)时存档仍然有效
indexYes
titleYes步骤标题
closedYes
groupsYes
statusYesopen / suspended / closed
task_idYes任务 id。省略时使用当前活动任务
idempotentYes
skipped_pathsYesskipped paths (e.g. symlinks pointing outside the workspace)
active_task_changedYes本次调用是否把活动任务切走了(传了 task_id 且不是当前活动任务时会发生)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.2/5.0
Behavior3/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 a meaningful behavioral trait: close=true closes the task and rejects further saves. However, for a save/mutation tool with zero annotations, it doesn't mention persistence semantics, error behavior, or what happens on overwrite, leaving significant gaps.

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?

Two short, front-loaded sentences with zero filler. The primary action is stated first, followed by the important close behavior. Appropriately sized for the tool's role, though it could be slightly more informative without becoming verbose.

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?

With 10 parameters, 70% schema coverage, and an output schema present, the description is thin. It captures the core purpose and the close semantics but omits context around the step-save workflow (e.g., what constitutes a valid step, interaction with active task selection) that would help an agent invoke it correctly. The output schema reduces the return-format burden, but the overall guidance is minimal.

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 coverage is 70% with 10 parameters. The description adds value by clarifying the close parameter's behavioral effect (closes task, no further saves), which goes beyond the bare boolean schema type. However, it doesn't address the undocumented parameters (verified, open_questions, paths constraint) beyond what the schema's descriptions provide.

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 states a specific action ('保存一个任务层步骤' – save a task-layer step) with a clear verb and resource. It is distinguishable from siblings like tc_capture, tc_init, and tc_switch, though it doesn't explicitly name any alternative. The close=true semantic adds useful context to the purpose.

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?

The description provides no guidance on when to use this tool versus its siblings (tc_capture, tc_restore, tc_compress, etc.). The only behavioral note is the close=true behavior, which is a parameter effect rather than usage guidance. An agent gets no direction on choosing this tool over alternatives.

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