Skip to main content
Glama
qddfxp

task-checkpoint

by qddfxp

tc_init

Create a new task and automatically suspend any active task instead of closing it, preserving progress for later resumption.

Instructions

创建任务。已有活动任务会挂起而不是关闭。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNo任务目标
nameYes任务名
rootYes工作区根目录
storeNo存档目录;省略时用工作区内 .checkpoints
constraintsNo约束

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes任务名
noteYes存档位置提示
storeYes存档目录
task_idYes新任务 id
prev_suspendedNo
store_is_externalYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. It discloses a key side effect: existing active tasks are suspended rather than closed. This adds value beyond the name. However, it does not cover other traits like idempotency, failure modes, or whether the operation is destructive beyond the suspension note. The disclosure is partial but meaningful.

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?

Two short sentences, front-loaded with the core purpose and immediately followed by the key behavioral caveat. No wasted words or redundant details.

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 that the schema fully documents parameters and an output schema exists, the description covers the essential behavioral context (creation and suspension of active tasks). It does not explain relationships to sibling tools, but that is not strictly required for invocation. The description is sufficiently complete for a create operation.

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 every parameter already has a description in the input schema. The tool description does not add any parameter-specific meaning. Per the baseline rule for high coverage, a 3 is appropriate.

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 states '创建任务' (create task), a specific verb and resource, and the additional sentence about suspending active tasks distinguishes it from sibling tools like tc_capture, tc_switch, etc. which imply other operations. The purpose is unambiguous and clearly differentiated.

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 provides clear context that this tool is for creating a task and discloses a relevant condition (active tasks will be suspended). However, it does not explicitly name alternatives or state when not to use it, so it stops short of full guidance. The behavioral note gives useful context for invocation.

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