Skip to main content
Glama

post_decision

Record a decision in the shared decision area so all agents see and follow it. Use for protocols, trade-offs, and pitfalls, with agent and timestamp for traceability.

Instructions

写决策:往共享决策区追加一条约定,所有终端 get_board 时都能读到。 用于定协议、记方案取舍、留踩坑结论——凡是"需要别人看见并遵守"的内容。

共享决策区的内容会被保留和累积,不随认领表滚动清理; 追加时带上 agent 和时间戳,方便追溯是谁、在什么时候定的。

参数: agent 你的名字/代号(要和认领时一致) decision 决策内容,一句话讲清楚"定了什么、为什么"

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentYes
projectNo
decisionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the disclosure burden. It explicitly discloses persistence ('会被保留和累积,不随认领表滚动清理'), visibility via get_board, and traceability via agent/timestamp. These go beyond the schema; only minor operational details like duplicate/overwrite behavior are absent.

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?

The description is front-loaded with purpose, then retention behavior, then parameter guidance, with bullet-style parameter lines. It is not padded and each section adds value. Minor redundancy with the schema list is acceptable because it adds usage guidance.

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?

For a simple append tool, the core behavior and the two required parameters are well covered, and output schema exists so return details needn't be described. However, the project parameter is entirely undocumented both in schema and description, and no explicit 'when not to use' boundary is given. This leaves a small but real gap.

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 0%, so the description must document parameters. It explains agent ('要和认领时一致') and decision format ('一句话讲清楚定了什么、为什么'), but says nothing about the optional project parameter. Since one of three parameters remains undefined, compensation is incomplete.

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?

Description opens with '写决策:往共享决策区追加一条约定' and states visibility via get_board. It lists concrete use cases (定协议、记方案取舍、留踩坑结论), which distinguishes it from sibling note/claim tools. This is a specific verb+resource with clear differentiation.

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 says '用于定协议、记方案取舍、留踩坑结论——凡是"需要别人看见并遵守"的内容', giving clear context. It does not explicitly name alternatives like send_note or state when not to use it, but the category '需要别人看见并遵守' implies the boundary.

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