Skip to main content
Glama

write_think

Append a manual reflection to think.md to capture lessons learned during coding tasks, with an optional task association for audit and review.

Instructions

向 think.md 追加一条手动反思记录。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskNo关联的任务名称(可选)
lessonYes反思内容 / 教训描述

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/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 disclosure burden. It does convey that the operation is an append rather than an overwrite, which is useful, but it does not mention whether the file is created if missing, what side effects occur, or any error/conflict behavior.

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?

One short sentence with no filler. The core action and target are front-loaded, and every word earns its place.

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 simple 2-parameter append tool, the combination of the description and the fully documented schema is adequate. It could mention return values or failure behavior, but the operation is straightforward and the missing detail is minor.

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 the schema already explains `lesson` as the reflection content and `task` as an optional related task name. The description adds no parameter-specific meaning beyond the schema's coverage.

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 verb (追加/append), a specific resource (think.md), and a specific kind of content (manual reflection). This clearly distinguishes it from sibling read-oriented tools like get_think and read_think_md.

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?

There is no explicit guidance on when to use this tool versus alternatives. The phrase '手动反思记录' gives an implied use case, but no exclusions, prerequisites, or alternative tool references are provided.

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

Deploy Server

Other Tools