SleepTool

What it is

SleepTool is a specialized tool available only in KAIROS proactive mode that lets the autonomous agent yield control explicitly — choosing when to go dormant and for how long. It replaces the naive approach of running a tick on every event loop cycle with agent-directed scheduling.

Why it exists

In KAIROS's always-on tick loop, every tick without useful work is a wasted API call. The agent needs a way to say "nothing to do right now, wake me in 5 minutes" without the system burning tokens on empty ticks. SleepTool solves this by making sleep a first-class tool call with an explicit cost trade-off.

The tool description surfaces the economics directly to the model: "Each wake-up costs an API call, but the prompt cache expires after 5 minutes of inactivity — balance accordingly." The agent decides its own rhythm: how long to sleep, when to wake early for a slow process, when to stay awake during active monitoring.

What depends on it

Trade-offs and limitations

Key claims

Relationships

Evidence