Use when the agent needs to check whether an ALFWorld task objective has been met after completing a sub-action (e.g., placing an object). This skill parses the task goal, evaluates the latest environment observation, and outputs a verification decision — task complete, task incomplete, or action ineffective — to guide the next step.
77
96%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Trigger this skill when:
put {obj} in/on {recep})Extract from the original task description:
Evaluate the most recent Observation: text from the environment:
| Condition | Decision | Output |
|---|---|---|
| All required objects confirmed in target receptacle | Complete | Verification: Task complete. No further action needed. |
| Some but not all objects placed | Incomplete | Verification: Task incomplete. Continue searching for {missing object(s)}. |
| Observation says "Nothing happened" | Ineffective | Verification: Last action was ineffective. Re-assess and try a different approach. |
| Object placed in wrong receptacle | Incorrect | Verification: Object placed in wrong location. Retrieve and redirect to {correct receptacle}. |
Output only the verification decision. Do not output the next action. This skill informs the planning for the next step, not the execution.
Task: "Find two pen and put them in garbagecan."
Action: put pen 3 in/on garbagecan 1
Observation: You put the pen 3 in/on the garbagecan 1.
> Verification: Task incomplete. Continue searching for pen (1 of 2 placed).
Action: put pen 1 in/on garbagecan 1
Observation: You put the pen 1 in/on the garbagecan 1.
> Verification: Task complete. No further action needed.Example — Failed action:
Action: put pen 3 in/on garbagecan 1
Observation: Nothing happened.
> Verification: Last action was ineffective. Re-assess and try a different approach.7bb9a48
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.