skilly. Buy ad slot
All skills
Community / AGENT SKILL

source-command-wait-to-test

uurien/meanwaile
0 installs 3 GitHub stars
0

Wait N seconds (default 20) via a blocking Node.js timer, for testing

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# source-command-wait-to-test

Use this skill when the user asks to run the migrated source command `wait-to-test`.

## Command Template

Wait for a period of time by running a blocking Node.js command. Useful for testing timing-dependent behavior.

1. Determine the number of seconds to wait:
   - If an argument was given (e.g. `/wait-to-test 12`), use it as the seconds.
   - Otherwise, default to 20 seconds.

2. Convert seconds to milliseconds (seconds * 1000).

3. Run the following, substituting the computed milliseconds, and wait for it to finish:
   `node -e "setTimeout(() => {}, <milliseconds>)"`
   Set the Bash tool's `timeout` a few seconds above the wait duration so it doesn't cut the wait short.

4. Report how many seconds were waited.