Tools/timer
Wait

Wait

Active

An agent can't actually pause between calls; this injects a real delay for polling, backoff, or rate-limiting.

1 tool

Pause for a set number of seconds, then continue. Lets an agent inject a real delay inline, for pacing a polling loop, retry backoff, or rate-limiting between calls, which a model cannot do on its own. For delayed actions or long waits, use the schedule namespace instead.

Developer Toolswaitsleepdelaypausepolling

Tools (1)

wait

Wait (block) for a number of seconds, up to 30, then return.

Free

Example prompts

  • Wait 10 seconds
  • Pause for 20 seconds before checking again
  • Wait 5 seconds then retry

Parameters

secondsnumberrequired

How many seconds to wait (0-30). Values above 30 are capped to 30.

API Usage

curl -X POST "https://skill.askfaro.com/skills/timer/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Wait 10 seconds"
  }
}'

CLI Usage

askfaro describe timer/timer.wait

Install pip install askfaro-cli, then askfaro auth login.