scienceworld-container-item-retriever
This skill retrieves a specified item from a container by using the 'pick up' action. It should be triggered when the agent has identified a needed item inside an open container (e.g., a jar, box, or hive) and must transfer it to inventory for later use. The skill handles the object transfer, assuming the container is already accessible, and outputs confirmation that the item is now in the agent's inventory.
适合你,如果需要在游戏或模拟环境中从容器中拾取物品。
npx oh-my-skill add zjunlp/skillnet/scienceworld-container-item-retrievercurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- zjunlp/skillnet/scienceworld-container-item-retrievernpx oh-my-skill verify zjunlp/skillnet/scienceworld-container-item-retriever怎么用
商店整理自技能原文 · 版本 7bb9a48 · 表述以原文为准装上这个技能后,当你让Claude从已经打开的容器(如罐子、盒子)里拿某个物品时,它会执行“拾取”动作,把物品放进自己的背包,并告诉你物品已成功拿到。
当Claude发现需要的物品在已经打开的容器内,并且你的目标是把它拿到手里或背包里时触发。
技能原文 SKILL.md
Skill: Retrieve Item from Container
Purpose
Transfer a specified item from an open, accessible container into the agent's inventory using the pick up action.
Trigger Conditions
Use this skill when all of the following are true:
- The agent has identified a specific item needed for a task.
- The item is located inside a container (e.g., jar, box, hive, closet).
- The container is already open and accessible (no
openaction required). - The agent's immediate goal is to possess the item for later use.
Core Action
Execute the pick up <ITEM> action, where <ITEM> is the exact name of the target object as observed in the environment.
Execution Workflow
- Verify Context: Ensure the target item is present in the current room's observation and is inside an open container.
- Execute Transfer: Perform the
pick up <ITEM>action. - Confirm Success: The expected observation is:
"You move the <ITEM> to the inventory."If a different result occurs, consult the troubleshooting guide.
Important Notes
- Pre-condition: This skill assumes the container is already open. If the container is closed, you must use the
openaction first. - Ambiguity: If multiple identical items exist (e.g., "avocado seed, avocado seed, avocado seed"), the
pick upaction will typically retrieve one. The skill does not handle selecting a specific instance. - Post-condition: After successful execution, the item is in the agent's inventory and can be used in subsequent steps.
Example
Task: Retrieve an avocado seed from a jar for planting.
look around— observe: "a jar (containing an avocado seed)"pick up avocado seed- Expected observation: "You move the avocado seed to the inventory."