Skip to main content
Glama

pandaone_unlock

Idempotent

Unlock files with protected extensions to remove restrictions and allow AI coding agents to modify them during development.

Instructions

解锁所有受保护扩展名的文件

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rootYes.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.14

TDQS

C2.6/5.0
Behavior2/5

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

Annotations already declare idempotentHint=true and destructiveHint=false, and the description adds no behavioral context beyond the literal action of 'unlocking'. It does not disclose side effects (e.g., what changes are made to file permissions), prerequisites, or what 'protected' means. Since annotations carry the safety profile, the description adds minimal value, and no additional behavior is revealed.

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 a single, short sentence with no redundant phrases. It is front-loaded with the verb and target. While concise, it is so brief that it sacrifices useful detail, but as a standalone statement it is appropriately sized and has no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that this is a mutating operation (readOnlyHint=false) with no output schema and an unexplained parameter, the description is notably incomplete. It does not explain the meaning of 'root', the process of unlocking, any required permissions, or the potential impact on files. The agent would need to guess important details, making the description inadequate for safe and correct invocation.

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

Parameters1/5

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

The input schema has one parameter, 'root', with zero description coverage (schema_description_coverage=0%). The tool description does not mention 'root' at all, so the agent has no guidance on what this parameter controls (e.g., directory scope, default behavior, file selection). With no description coverage and no parameter explanation, the agent cannot properly understand how to set this parameter, resulting in a critical gap.

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 verb ('unlock') and resource ('files with protected extensions'), which clearly distinguishes it from sibling tools like pandaone_lock. It conveys the core action and scope, though it does not explicitly tie the action to the 'root' parameter (it says 'all files' without noting the root scope). Slight ambiguity remains, but the purpose is generally clear.

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?

No explicit guidance on when to use this tool versus alternatives. The sibling pandaone_lock implies the inverse, but the description does not mention it or any conditions for choosing unlock over lock. Usage context is only implied by the name and action, leaving the agent to infer when this is appropriate.

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