Skip to main content
Glama

wb_manage

Add entries with AI-based classification, mark tasks done, and issue or revoke API keys. Write operations require explicit confirmation for safety.

Instructions

管理域:add(全类型录入 AI 判类)/ done(打标)/ key(API Key 签发/清单/吊销)。写操作需 confirm;key 域建议直接终端操作。(本域含写操作)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsNo命令参数数组(推荐,长文安全):如 ["note","add","这里是500字正文,含空格换行都不会被切碎","#工作笔记"]。数组元素原样作为 argv 传给 wb-cli,不按空白切分。command 仍需传(可传命令串本身),实际执行以 args 为准。
commandYeswb-cli 命令串(不含 wb-cli 前缀),如 "t todo"、"todo list --open"、"dev-task show dt_xxx"。与 args 二选一:传了 args 时 args 优先。各域允许的首词见 tool description。
confirmNo写操作必传 true(安全门)。判定为写操作的命令(add/done/edit/del/stage/item 等)缺 confirm 会被拒绝。

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv5.10.1

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 carries the safety burden: it explicitly flags that the domain contains write operations and that confirm is mandatory. It doesn't describe effects, errors, or return behavior, but the confirm gate is the most important behavioral trait.

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 tight sentences front-load the command inventory and follow with the safety caveat. Every phrase earns its place; there is no filler or repetition.

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 description plus schema is almost sufficient to construct a valid call, and the confirm gate is clear. But with no annotations and many sibling tools, the boundary between wb_manage and specialized add/done/key tools remains implicit, so an agent may struggle to decide between them.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers 100% of parameters, and the command parameter description explicitly points to the tool description for allowed first words. The description supplies those command words (add/done/key), which adds meaning beyond the schema.

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 identifies a concrete management domain with specific sub-operations: add (all-type entry with AI classification), done (tagging), and key (API key issuance/list/revocation). It is actionable and coherent, but it doesn't explicitly distinguish wb_manage from specialized siblings like wb_add or wb_note_add.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states that write operations require confirm and that key operations are better performed directly in a terminal, which is useful context. However, it doesn't explain when wb_manage should be chosen over the many sibling tools that cover add/edit/done/tag operations.

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