alfworld-receptacle-preparer
This skill verifies and prepares a target receptacle for receiving an object. It is triggered before placing an item into a receptacle (e.g., a garbage can) to ensure the receptacle is accessible and suitable. The skill involves navigating to the receptacle, observing its state (e.g., open/closed, occupied), and performing any necessary preparatory actions like opening it, resulting in a ready-to-use target location.
适合你,如果需要在放置物品前确保容器可用
npx oh-my-skill add zjunlp/skillnet/alfworld-receptacle-preparercurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- zjunlp/skillnet/alfworld-receptacle-preparernpx oh-my-skill verify zjunlp/skillnet/alfworld-receptacle-preparer怎么用
商店整理自技能原文 · 版本 7bb9a48 · 表述以原文为准当Claude需要把物品放入某个容器(如垃圾桶)时,它会在放入前先走到容器旁,观察它是否开着、有没有被占用,如果关着就打开,确保容器已准备就绪,然后再进行放置操作。
当你的指令要求Claude将物体放入某个容器中时(例如“把苹果放在碗里”),这个技能就会先触发,检查并准备好目标容器。
技能原文 SKILL.md
Instructions
Trigger: This skill is invoked when the agent's goal requires placing an object into a target receptacle (e.g., "put X in/on Y").
Core Procedure
- Navigate: Use
go to {target_receptacle}to move to the target receptacle's location. - Observe: Upon arrival, carefully read the environment's observation. It will describe the receptacle's state and any contents.
- Analyze & Prepare: Based on the observation, determine if the receptacle is ready.
- Ready State: The receptacle is described as present and accessible (e.g., "On the garbagecan 1, you see a cd 1."). No further action is needed. Proceed to place the object.
- Blocked/Closed State: If the receptacle is closed, latched, or obstructed, use the appropriate action (
open {recep},toggle {obj} {recep}) to prepare it. - Invalid Target: If the observation indicates the receptacle does not exist or cannot be interacted with ("Nothing happened"), you must abort this skill and re-plan your task strategy.
- Confirm: After any preparatory action, observe the environment's feedback to confirm the receptacle is now ready.
Key Principles
- Efficiency: This skill is a preparatory step. Do not spend turns searching for the object to be placed here. That is a separate "search" skill.
- Context: The observation text is your only source of truth about the receptacle's state. Interpret it literally.
- Idempotency: If the receptacle is already ready, this skill completes immediately with no action required beyond observation.
Example from Trajectory
Goal Context: "find two pen and put them in garbagecan." Skill Execution:
- Thought: "I'll check the garbage can first to ensure it's open and ready to receive items."
- Action:
go to garbagecan 1 - Observation: "On the garbagecan 1, you see a cd 1."
- Analysis: The garbage can is present and accessible (a CD inside does not block new items). It is ready.
- Outcome: Skill completes. The agent proceeds to
put pen 3 in/on garbagecan 1.