removedInput schema / $schema
Removed value: -"http://json-schema.org/draft-07/schema#"
removedInput schema / additionalProperties
Removed value: -false
addedInput schema / properties / errorStrategy
Added value: +{
+ "default": "abort",
+ "description": "abort stops at the first error; continue runs all steps; capture_image screenshots, then aborts",
+ "enum": [
+ "abort",
+ "continue",
+ "capture_image"
+ ],
+ "type": "string"
+}
changedInput schema / properties / parallel / description
Previous value: -"Array of tab groups to execute in parallel across tabs."New value: +"Tab groups to run in parallel"
removedInput schema / properties / parallel / items / additionalProperties
Removed value: -false
changedInput schema / properties / parallel / items / properties / steps / description
Previous value: -"Steps to execute on this tab"New value: +"Steps for this tab"
changedInput schema / properties / parallel / items / properties / tab / description
Previous value: -"Tab ID (targetId) to execute steps on"New value: +"Tab ID (targetId)"
removedInput schema / properties / resume / additionalProperties
Removed value: -false
changedInput schema / properties / resume / description
Previous value: -"Resume a previously suspended plan."New value: +"Resume a suspended plan"
changedInput schema / properties / resume / properties / answer / description
Previous value: -"Agent's answer to the suspend question"New value: +"Answer to the suspend question"
changedInput schema / properties / resume / properties / planId / description
Previous value: -"ID of the suspended plan to resume"New value: +"ID of the suspended plan"
changedInput schema / properties / steps / description
Previous value: -"Array of tool steps to execute sequentially."New value: +"Tool steps to run in order"
removedInput schema / properties / steps / items / additionalProperties
Removed value: -false
changedInput schema / properties / steps / items / properties / if / description
Previous value: -"Condition expression — step runs only if true. Use $varName for variables. Example: \"$pageTitle === 'Login'\""New value: +"Run the step only if this expression is true, e.g. \"$pageTitle === 'Login'\""
changedInput schema / properties / steps / items / properties / params / description
Previous value: -"Parameters for the tool. Use $varName for variable substitution."New value: +"Tool parameters; $name substitutes a variable"
changedInput schema / properties / steps / items / properties / saveAs / description
Previous value: -"Save step result as variable (accessible via $name in later steps)"New value: +"Save the result as $name for later steps"
removedInput schema / properties / steps / items / properties / suspend / additionalProperties
Removed value: -false
changedInput schema / properties / steps / items / properties / suspend / description
Previous value: -"Suspend plan at this step to ask the agent a question"New value: +"Pause here to ask the agent a question"
changedInput schema / properties / steps / items / properties / suspend / properties / condition / description
Previous value: -"Condition expression — suspend AFTER step if true. Uses $varName syntax."New value: +"Suspend after the step if this $-expression is true"
changedInput schema / properties / steps / items / properties / suspend / properties / context / description
Previous value: -"Context to include: 'capture_image' captures the page"New value: +"capture_image: attach a screenshot"
changedInput schema / properties / steps / items / properties / suspend / properties / question / description
Previous value: -"Question to ask the agent when suspending"New value: +"Question for the agent"
changedInput schema / properties / steps / items / properties / tool / description
Previous value: -"Tool name to execute (e.g. 'click', 'type', 'press_key', 'navigate', 'scroll')"New value: +"Tool name"
changedInput schema / properties / use_operator / description
Previous value: -"Operator mode (rule engine + Micro-LLM). Requires the executeOperator hook to be registered."New value: +"Operator mode (rule engine + micro-LLM); needs the executeOperator hook"
addedInput schema / properties / vars
Added value: +{
+ "additionalProperties": {},
+ "description": "Initial variables, available as $name",
+ "type": "object"
+}