ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

autonomy-windowed

Time-windowed autonomous task queue. Autonomy works only during specific time windows (e.g., 8 AM - 8 PM UTC), while cron jobs run overnight. Separates concerns by time - day = autonomy, night = maintenance. Use when you want predictable work schedule, controlled token budget, and clear temporal separation between autonomous work and scheduled maintenance.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/luciusrockwing/autonomy-windowed
Or

Windowed Autonomy

Transform your agent from reactive to autonomous worker during specific time windows.


Concept

The agent works autonomously only during defined time windows. Outside windows, the agent only replies HEARTBEAT_OK. Cron jobs run overnight when autonomy is disabled.

šŸŒ™ Overnight (10 PM - 8 AM UTC):  Autonomy OFF
ā˜€ļø Daytime (8 AM - 10 PM UTC):   Autonomy ON

Clear separation: Day = work on queue, Night = cron maintenance


How It Works

1. Time Windows

Define active windows in tasks/QUEUE.md:

## ā° Autonomy Windows

- šŸŒ™ Overnight: 20:00 - 08:00 UTC → Autonomy OFF
- ā˜€ļø Daytime: 08:00 - 20:00 UTC → Autonomy ON

2. Heartbeat Flow

During Active Window:

Heartbeat → Check urgent → No → Read QUEUE → Pick task → Work 15-30 min → Update QUEUE → Log

Outside Active Window:

Heartbeat → Check urgent → No → Reply "HEARTBEAT_OK" → Sleep

Urgent Override:

Heartbeat → Check urgent → YES → Work immediately (even outside window)

3. Window Transitions

Window Opens (8:00 AM):

  • Autonomous mode enabled
  • Start pulling from queue
  • Log to tasks/MODE_HISTORY.md: "Window opened"

Window Closes (8:00 PM):

  • Autonomous mode disabled
  • Wrap up current task if in progress
  • Log transition: "Window closed"
  • Switch to standby mode (HEARTBEAT_OK only)

Schedule Examples

TimeActivityMode
00:00GitHub backup (cron)Overnight (no autonomy)
02:00Heartbeat checkStandby (HEARTBEAT_OK)
03:00Temp cleanup (cron)Overnight (no autonomy)
08:00Window opensāœ… Autonomy ON
09:00Work on taskAutonomy
12:00GitHub backup (cron)Autonomy (pause for backup)
14:00Work on taskAutonomy
20:00Window closesāŒ Autonomy OFF
23:00Daily ops + memory (cron)Overnights (no autonomy)

Queue Structure

# Task Queue

## ā° Autonomy Windows
- šŸŒ™ Overnight: 20:00 - 08:00 UTC → Autonomy OFF
- ā˜€ļø Daytime: 08:00 - 20:00 UTC → Autonomy ON

---

## šŸ”“ Ready (can be picked up during windows)
- [ ] @priority:high [Task description]
- [ ] @priority:medium [Task description]

## 🟔 In Progress
- [ ] @agent: @priority:high [Task description]
  - Started: 2026-02-16 14:00 UTC

## šŸ”µ Blocked
- [ ] @priority:medium [Task] (needs: [what's blocking])

## āœ… Done Today
- [x] @agent: @priority:high [Task]
  - Completed: 2026-02-16 14:25 UTC

## šŸ’” Ideas
- [Idea for future work]

Priority System

Priority affects task selection order during windows:

PriorityWhen to useSelection
@priority:urgentTime-sensitive, deadline < 6hPick FIRST, even outside window
@priority:highImportant, deadline 24hPick first in window
@priority:mediumNormal importancePick second in window
@priority:lowNice to havePick last in window

Window Types

Metadata

Stars1601
Views0
Updated2026-02-27
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-luciusrockwing-autonomy-windowed": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.