IceCube Tasks
by @ares521521-design
π§ IceCube Tasks β Task orchestration and tracking for AI agents. Manage tasks across sessions, track progress, handle blockers, and maintain execution conti...
clawhub install icecube-tasksπ About This Skill
name: icecube-tasks description: "π§ IceCube Tasks β Task orchestration and tracking for AI agents. Manage tasks across sessions, track progress, handle blockers, and maintain execution continuity. When users mention 'task management', 'to-do list', 'task tracking', 'project management', 'blockers', 'pending tasks'." metadata: openclaw: requires: {}
π§ IceCube Tasks
Tasks that survive session restarts.
Chat-based task lists die when context compacts. IceCube Tasks lives in files, tracked across sessions.
What This Skill Does
1. Task Persistence
state/tasks/ directory2. Task Lifecycle
inbox β spec β in_progress β blocked β done
β
cancelled
3. Task Orchestration
4. Blocker Management
File Structure
state/tasks/
βββ current_dispatch.yaml # What's being worked on NOW
βββ current_schedule.yaml # What's scheduled
βββ unclosed_work.yaml # All open items
βββ task_ledger/
β βββ TASK-001.yaml
β βββ TASK-002.yaml
β βββ ...
βββ completed/
βββ TASK-000.yaml
βββ ...
Task File Format
state/tasks/task_ledger/TASK-001.yaml:
id: TASK-001
title: "Publish IceCube Skills to ClawHub"
status: in_progress # inbox|spec|in_progress|blocked|done|cancelled
created_at: 2026-03-31 01:53 CST
updated_at: 2026-03-31 02:15 CSTWhat
description: |
Create and publish IceCube Skills series to ClawHub marketplace.
Why
context: |
Boss wants to explore creating tools and selling them.
AI agent memory is an underserved market.
How
steps:
- id: STEP-1
task: "Create icecube-memory skill"
status: done
completed_at: 2026-03-31 01:53 CST
- id: STEP-2
task: "Create icecube-heartbeat skill"
status: done
completed_at: 2026-03-31 01:53 CST
- id: STEP-3
task: "Create icecube-evolution skill"
status: done
completed_at: 2026-03-31 01:53 CST
- id: STEP-4
task: "Create icecube-reddit-scout skill"
status: done
completed_at: 2026-03-31 02:08 CST
- id: STEP-5
task: "Publish to ClawHub"
status: blocked
blocked_reason: "GitHub account needs 14 days age"
blocked_until: 2026-04-10Dependencies
depends_on: []
blocks: []Assignment
assigned_to: main_agent # main_agent|worker_1|userPriority
priority: high # critical|high|medium|low
deadline: nullSuccess Criteria
success_criteria:
- All 4 skills published to ClawHub
- Skills are installable by users
- Documentation is completeMetadata
tags: [skills, clawhub, monetization]
estimated_effort: 2h
actual_effort: 1hHistory
history:
- timestamp: 2026-03-31 01:53 CST
event: created
- timestamp: 2026-03-31 01:53 CST
event: step_completed
step: STEP-1
- timestamp: 2026-03-31 02:10 CST
event: blocked
reason: "ClawHub requires 14-day-old GitHub account"
Commands
Create Task
# Write to state/tasks/task_ledger/TASK-XXX.yaml
id: TASK-XXX
title: "Task title"
status: inbox
created_at:
Start Task
# Update task file
status: in_progress
updated_at:
assigned_to: Update current_dispatch.yaml
focused_task: TASK-XXX
Block Task
# Update task file
status: blocked
blocked_reason: "Why blocked"
blocked_until: "When it might be resolved"
updated_at: Update unclosed_work.yaml
Add blocker note
Complete Task
# Update task file
status: done
completed_at: Move to completed/
Update current_dispatch.yaml
focused_task: null
Orchestration Patterns
Pattern 1: Sequential
TASK-001 β TASK-002 β TASK-003
Each task blocks the next.Pattern 2: Parallel
TASK-001 ββ¬β TASK-003
TASK-002 ββ
TASK-003 depends on both.Pattern 3: Delegated
main_agent β worker_agent (TASK-001)
β worker_agent (TASK-002)
Subagents execute parallel tasks.Pattern 4: User-Blocked
TASK-001 β [waiting for user] β TASK-001 continues
Agent can't proceed without user input.Anti-Patterns
β Don't:
β Do:
Integration with IceCube Suite
icecube-heartbeat: Checks for stale tasks during heartbeat icecube-evolution: Failed tasks feed improvement queue icecube-memory: Task context loaded on startup
Task Recovery
If agent crashes or restarts:
1. Read state/tasks/current_dispatch.yaml
2. Find focused_task
3. Read task file from task_ledger/
4. Resume from last completed step
Metrics
Track in state/tasks/metrics.yaml:
total_created: 47
total_completed: 42
total_cancelled: 3
currently_open: 5
avg_completion_time: 2.3h
blocker_rate: 15%
License
MIT β Use freely.
*Tasks in files survive. Tasks in chat die.*