An agent can't actually pause between calls; this injects a real delay for polling, backoff, or rate-limiting.
Developer Tools
Pauses execution for a specified number of seconds (up to 30) before returning. Useful for rate-limiting, polling loops, or adding a deliberate delay between steps.
You need a real inline delay for pacing a polling loop, retry backoff, or rate-limiting.
Firing an action later without blocking, or waits longer than 30 seconds (use schedule).
information
Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.
curl -X POST "https://skill.askfaro.com/skills/timer/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"prompt":"Wait 5 seconds then continue"}}'Example requests