duely
Track recurring maintenance tasks from the command line. Use when scheduling, checking, and logging periodic tasks like backups, reviews, or any repeating chore. Shows overdue items and keeps an execution log.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/halbotley/duelyduely
A CLI for tracking recurring maintenance tasks. Know what's due, mark it done, and keep a log.
Why duely?
- Simple recurring tasks — No calendar overhead for maintenance chores
- Overdue alerts — See what you've been putting off
- Execution log — Know when things last ran
Installation
brew tap halbotley/tap
brew install duely
Commands
Add a recurring task
duely add backups --name "Database backups" --every 1d
duely add vault-review --name "Vault review" --every 3d
duely add oil-change --name "Oil change" --every 90d --start 2025-06-01
Intervals: 12h, 1d, 3d, 1w, 30d, 90d, etc.
List all tasks
duely list
Show tasks that are due now
duely due
Shows overdue tasks with ⚠️ warnings.
Mark a task as done
duely run backups
duely run backups --notes "Full backup completed"
Skip a task (reschedule without running)
duely skip vault-review
duely skip vault-review --reason "On vacation"
View execution log
duely log
Remove a task
duely remove old-task
Agent Integration
duely works well with agent heartbeats or cron-triggered checks:
# Check for due tasks and act on them
duely due
# After completing the task:
duely run <task-id> --notes "Completed by agent"
Notes
- Task IDs must be lowercase with no spaces
--startdefaults to now if not specified--everyaccepts hours (h), days (d), and weeks (w)- Data stored locally in
~/.duely/
Metadata
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 skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-halbotley-duely": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
session-hygiene
Prevent sessions.json bloat from accumulating isolated sessions (hooks, crons, subagents). Sets up a cron to archive stale sessions to daily JSONL files and keep sessions.json lean. Use when sessions.json grows large, the gateway becomes slow or unresponsive, or as preventive maintenance on any OpenClaw instance with hooks or crons. Related to openclaw/openclaw#15225.
calmly
Manage macOS Calendar events from the command line using EventKit. Use when creating, listing, or viewing calendar events on macOS without AppleScript dialogs or UI prompts. Supports all-day events, multi-day events, and timed events. Works with iCloud, local, and CalDAV calendars.
timely
Manage Apple Reminders from the command line with geofencing support. Use when creating reminders on macOS with optional location-based triggers (arrive/depart), due dates, or time-based alerts. Works with iCloud-synced reminder lists.