Skip to main content
Glama

scout_run_plan

Execute up to 20 UI actions in one call to automate mechanical sequences like form fills and wizards, reducing round-trips. Aborts on the first new violation or failed step and returns a transcript of progress.

Instructions

Execute up to 20 actions in ONE call — use for mechanical sequences (fill a form, walk a wizard) so each step doesn't cost a round-trip. Targets resolve at execution time by semantic locator: 'testid=…', 'text=…', or 'label=…' (never snapshot refs). An upload step attaches a file as scout_upload does (target required — the file input or the control that opens its chooser; value = a fixture kind or a project-relative path). The plan ABORTS at the first NEW oracle violation, policy refusal, or failed step, returning a transcript of how far it got; repeats of already-reported violations do not abort (they stay logged for the report).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stepsYes
sessionNoTarget this session directly instead of the active one — pass it explicitly when dispatching to MULTIPLE sessions in one turn (e.g. two scout_click calls with different `session`), which then run CONCURRENTLY rather than queueing. Omit for single-session sequential use.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.1.0

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description carries the full burden. It discloses the abort-on-new-violation/failure behavior, else it returns a transcript of how far it got, and specifies that repeated violations do not abort. It also explains semantic locator resolution at execution time and upload step specifics—all beyond schema and highly valuable for an agent.

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 starts with purpose, then flows to target resolution, upload exception, and abort behavior—logical and front-loaded. Every sentence earns its place, though the density of technical details makes it slightly heavy to parse. Could benefit from bullet points, but it remains concise for the information conveyed.

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 complex multi-step tool with no annotations and no output schema, the description covers essential operational semantics: execution limits, target resolution, upload steps, and abort conditions. It lacks detail on the transcript format and domain terms like 'oracle violation', but enough is provided for an agent to invoke it correctly.

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?

Schema coverage is 50% (session described well, steps not). The description compensates by explaining the steps' target syntax ('testid=…', 'text=…', 'label=…'), upload behavior, and the abort semantics. This adds meaning beyond the schema's bare enum, though not every action type is individually expanded.

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 opens with 'Execute up to 20 actions in ONE call' and specifies the use case ('mechanical sequences (fill a form, walk a wizard)'), clearly distinguishing this from single-action siblings like scout_click and scout_type. It names the resource and action explicitly.

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?

It explicitly says when to use this tool: for mechanical sequences to avoid round-trip cost. It does not explicitly name alternatives or state when not to use it, but the context makes it clear that individual single actions belong to the sibling tools. This is strong guidance but lacks formal exclusions.

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