Agent Skills
› zjunlp/SkillNet
› controlled-waiting
controlled-waiting
GitHub用于在模拟环境中执行受控等待,通过wait或wait1动作推进时钟,以处理植物生长、化学反应等时间依赖型流程。
Trigger Scenarios
需要等待时间依赖过程完成
启动延迟进程后无其他操作
Install
npx skills add zjunlp/SkillNet --skill controlled-waiting -g -y
SKILL.md
Frontmatter
{
"name": "controlled-waiting",
"description": "Executes timed waiting using 'wait' or 'wait1' actions to advance the simulation clock. Use when a time-dependent process like plant growth, chemical reaction, or mechanical cycle must progress before you can continue the task."
}
Skill: Controlled Waiting
When to Use
After initiating a process with a time delay, when no other productive actions are possible.
Procedure
- Confirm the process is active (seeds planted, device activated, etc.).
wait(advances 10 steps) for long processes, orwait1(1 step) for fine-grained observation.look aroundorexamine <OBJECT>to check if the target state has been reached.- If not reached, repeat steps 2-3. If reached, exit and resume the main task.
Duration guidance: Use wait for biological growth stages. Use wait1 when observing rapid changes or when close to the expected transition.
Example
Task: Wait for a banana tree to produce fruit after planting.
- Confirm seeds are planted and watered.
wait(advances 10 steps)look around— check if banana is visible on the tree.- No banana yet →
waitagain. look around— observe: "a banana tree (with a banana)" → exit skill and proceed to harvest.
Refer to references/botanical_growth_patterns.md for common plant growth stage timings.
Version History
- 7bb9a48 Current 2026-07-25 11:53


