Skip to main content
Glama

Renforge Run Scenario

renforge_run_scenario

Run a multi-step live Ren'Py scenario (clicks, waits, assertions) in one call. On failure, captures screenshots and compact diagnostics automatically.

Instructions

Run a multi-step live scenario (click/wait/assert/...) in one call.

On failure, captures a screenshot and compact diagnostics automatically. Supported step actions: set, eval, click, click_at, advance, scroll, wait, assert, select_choice, capture, save, load, control, send_input.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoscenario
stepsYes
timeoutNo
project_pathYes
state_profileNominimal
stop_on_failureNo
capture_on_failureNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden and does add real value: it discloses that failures auto-capture a screenshot and compact diagnostics, which explains the capture_on_failure behavior. It does not state that this is a state-mutating live run (click/advance/save/load/control) or what permissions/timeouts govern it, so disclosure is partial.

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?

Front-loaded with the core purpose and failure behavior before the step-action enumeration. The 15-item action list is long but earns its place by telling the agent what the steps array can contain; overall structure is efficient.

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?

An output schema exists so return values need not be described. However, with 7 params at 0% schema coverage and no annotations, gaps remain around what project_path and state_profile mean and what timeout measures, leaving the agent partially under-informed for a complex multi-step execution tool.

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

Parameters2/5

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

Schema description coverage is 0% across 7 parameters, so the description must compensate and largely does not: timeout, project_path, state_profile, name, and stop_on_failure are never explained. It lists supported step actions, which is the only meaningful parameter-adjacent information, but that list maps to the steps array content rather than to the declared properties.

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?

States a specific verb+resource ('Run a multi-step live scenario') and the key differentiator 'in one call', which distinguishes it from the many single-step siblings like renforge_click_at, renforge_advance, and renforge_wait_until. It does not explicitly name those siblings as alternatives, so it falls just short of the top tier.

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?

The phrase 'in one call' implies this is the batch alternative to issuing many individual step calls, and the step-action list hints at scope. But there is no explicit when-to-use/when-not guidance or named alternative, leaving the agent to infer the composite-vs-single distinction.

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