controlled-waiting
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.
适合你,如果需要在模拟环境中等待时间依赖过程完成
npx oh-my-skill add zjunlp/skillnet/controlled-waitingcurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- zjunlp/skillnet/controlled-waitingnpx oh-my-skill verify zjunlp/skillnet/controlled-waiting怎么用
商店整理自技能原文 · 版本 7bb9a48 · 表述以原文为准装上后,Claude会使用'wait'或'wait1'动作来推进模拟时钟,使时间依赖的过程(如植物生长、化学反应等)继续,然后检查是否达到目标状态。如果未达到,则重复等待和检查。
当您启动了一个需要时间延迟的过程,且没有其他可操作动作时触发,例如等待植物生长或化学反应的完成。
技能原文 SKILL.md
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.