Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage tasks with automatic creation, SQLite tracking, heartbeat updates, notifications, stuck task detection, and recovery in a complete lifecycle system.
Manage tasks with automatic creation, SQLite tracking, heartbeat updates, notifications, stuck task detection, and recovery in a complete lifecycle system.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
One skill for complete task lifecycle management.
./install.sh Or manually add to PATH: export PATH="$HOME/.openclaw/agents/main/workspace/skills/task-system/scripts:$PATH"
# Create task task-system.sh create "Your request here" # Update heartbeat task-system.sh heartbeat $TASK_ID # Mark complete task-system.sh complete $TASK_ID "Optional notes" # Check stuck task-system.sh stuck # Daily status task-system.sh status
CREATE TABLE IF NOT EXISTS tasks ( id INTEGER PRIMARY KEY AUTOINCREMENT, request_text TEXT NOT NULL, status TEXT DEFAULT 'pending', priority INTEGER DEFAULT 5, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, started_at DATETIME, completed_at DATETIME, last_updated DATETIME DEFAULT CURRENT_TIMESTAMP, notes TEXT ); -- Key indexes CREATE INDEX IF NOT EXISTS idx_tasks_status_updated ON tasks(status, last_updated); CREATE INDEX IF NOT EXISTS idx_tasks_priority ON tasks(priority ASC);
See scripts/ directory: task-system.sh β Main CLI (create, heartbeat, complete, stuck, status) create-task.sh β Create new task heartbeat.sh β Update last_updated complete-task.sh β Mark complete stuck-check.sh β Find stuck tasks
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.