Installation

clawhub install rikouu/agent-task-tracker

Summary

Maintain a live task state file so context survives session resets/compaction.

SKILL.md

Task Tracker

Maintain a live task state file so context survives session resets/compaction.

State File

memory/tasks.md โ€” single source of truth.

When to Write

  1. Task received โ†’ add entry with status ๐Ÿ”„ ่ฟ›่กŒไธญ
  2. Background process started โ†’ record session ID, PID, server, command
  3. Progress update โ†’ update status/notes
  4. Task completed โ†’ mark โœ… ๅฎŒๆˆ, record results/links
  5. Task failed โ†’ mark โŒ ๅคฑ่ดฅ, record error
  6. Session start โ†’ read memory/tasks.md to resume awareness

Format

markdown
# Active Tasks

## [task-id] Short description
- **Status**: ๐Ÿ”„ ่ฟ›่กŒไธญ | โœ… ๅฎŒๆˆ | โŒ ๅคฑ่ดฅ | โธ๏ธ ๆš‚ๅœ
- **Requested**: YYYY-MM-DD HH:MM
- **Updated**: YYYY-MM-DD HH:MM
- **Background**: session-id (PID) on server-name โ€” `command`
- **Notes**: progress details, partial results
- **Result**: final output, links, summary

# Completed (recent)
<!-- Move completed tasks here, keep last 10, prune older -->

Rules

  • Update the file BEFORE reporting to user (write-first)
  • Include enough detail to resume without prior conversation context
  • For background processes: always record session ID + what server + what command
  • For multi-step tasks: update after each step
  • Keep it concise โ€” this isn't a log, it's a state snapshot
  • Size limit: keep under 50 lines / 2KB โ€” this file is read every session start
  • Completed tasks: collapse to one-line summary, reference daily notes for details
  • Prune completed tasks older than 3 days
  • If Active is empty, write ๏ผˆๆ— ๏ผ‰ to make it obvious

Recommended skills

Browse all โ†’

Related guides

Hand-picked reading to help you choose, install, and use agent skills.