Skip to main content
Glama
mayjack0312
by mayjack0312

eda_pcb_net_unhighlight_all_nets

Clears highlighting from all nets in the PCB editor, restoring the board to a clean, unmarked state.

Instructions

pcb_Net.unhighlightAllNets() -> Promise 取消高亮所有网络 returns: 操作是否成功

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argsNo按官方签名顺序排列的JSON参数数组
windowIdNo目标EDA窗口ID;省略时使用当前活动窗口

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral burden. It states the expected return is a boolean indicating success, but it doesn't mention side effects like clearing all net highlighting, potential performance implications, or whether it requires an active PCB document. The Chinese note '取消高亮所有网络' adds a bit more but still lacks detail.

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 concise with only the essential information: the function call and a brief explanation in Chinese. It's front-loaded with the API signature, which is helpful. However, it could be more structured with separate sections for description, returns, and usage, but it's not overly verbose.

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?

For a simple tool with no parameters and no output schema, the description is minimal but not fully complete. It lacks context about the scope (e.g., affects only the current PCB document) and any prerequisites. The return value is explained, but an agent might need more reassurance about the operation's impact. Given the tool's simplicity, a more thorough description would improve completeness.

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?

The schema has 100% description coverage for the two parameters: 'args' (JSON parameter array) and 'windowId' (target EDA window ID). The description adds nothing beyond the schema, but since the schema is complete, the baseline 3 applies. The description's function signature hints at no parameters needed, but the schema's generic structure is clear enough.

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 clearly states it unhighlights all nets in the PCB editor, using a specific verb 'unhighlight' and resource 'all nets'. It distinguishes from siblings like 'eda_pcb_net_unhighlight_net' (which targets a single net) and 'eda_pcb_net_highlight_net' (which does the opposite). Although it includes the function signature, the purpose is unambiguous.

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?

The description gives no guidance on when to use this tool versus alternatives. It doesn't mention that it affects all nets in the current PCB document, nor does it exclude cases like when only specific nets need unhiglighting. An agent might not know if it's appropriate for the current context.

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