Agent Skills
› zjunlp/SkillNet
› scienceworld-conditional-placer
scienceworld-conditional-placer
GitHub根据测量条件(如温度阈值)将物体分拣到指定容器的技能。执行获取工具、测量数值、判断条件并放置物体的完整流程,适用于基于规则的分类任务。
Trigger Scenarios
需要根据数值条件对物体进行分类存放
执行包含测量步骤的自动化分拣任务
Install
npx skills add zjunlp/SkillNet --skill scienceworld-conditional-placer -g -y
SKILL.md
Frontmatter
{
"name": "scienceworld-conditional-placer",
"description": "Places an object into one of several designated containers based on a measured condition, such as a temperature threshold. Use this skill when you have completed a measurement or assessment and the task requires sorting or storing the object into one of multiple containers according to a rule (e.g., \"if temperature > X, place in container A; otherwise container B\")."
}
Skill: Conditional Object Placer
Purpose
Place a target object into the correct container based on a measured condition (e.g., temperature threshold, conductivity result). This skill executes the full measure-then-sort workflow.
Core Workflow
- Locate & Acquire Measurement Tool:
teleport to LOCthenpick upthe measurement device (e.g., thermometer). - Locate & Acquire Target Object:
teleport to LOCthenpick upthe object to be measured (e.g., metal fork). - Identify Target Containers: Use
look aroundto find the designated containers (e.g., blue box, orange box). - Perform Measurement:
use OBJ on OBJ(e.g.,use thermometer on metal fork) to obtain the value. - Evaluate Condition & Place: Compare the measured value against the threshold, then
move OBJ to OBJto place the object in the correct container.
Key Actions
| Action | Purpose |
|---|---|
teleport to LOC |
Navigate between rooms |
look around |
Survey a room for objects |
pick up OBJ |
Acquire tools or target object |
use OBJ on OBJ |
Perform measurement |
move OBJ to OBJ |
Place object into selected container |
Example
Task: "Measure the temperature of the metal fork. If above 50C, place in the orange box. Otherwise, place in the blue box."
teleport to kitchenlook around— find thermometer and metal forkpick up thermometerpick up metal forkuse thermometer on metal fork— reads 72 degrees- 72 > 50, so:
move metal fork to orange box
Important Notes
- All containers are pre-opened. Do not use
openorcloseactions. - The measurement tool and target object must be picked up and used from inventory.
- Room names, object names, thresholds, and container names vary per task — adapt accordingly.
Version History
- 7bb9a48 Current 2026-07-25 11:52


