Back to list
charles-cooper

taskman

by charles-cooper

task manager system for agents

5🍴 0📅 Jan 18, 2026

SKILL.md


name: taskman description: Agent memory and task management CLI. Use this skill when you need to persist context across sessions, track tasks, hand off work, or store temporary agent scratch data. Provides the taskman CLI for init, sync, describe, and history operations.

Taskman

Version-controlled agent memory and task management. The .agent-files/ directory is scratch space for ANY agent work that should persist across sessions - task tracking, memory, handoffs, notes, or temporary files.

Structure

.agent-files/
  STATUS.md           # Task index, current session state
  LONGTERM_MEM.md     # Architecture knowledge (months+)
  MEDIUMTERM_MEM.md   # Patterns, gotchas (weeks)
  tasks/
    TASK_<slug>.md    # Active tasks
    _archive/         # Completed tasks
  (any other scratch files)

STATUS.md: Operational state - task index, current focus, blockers, next steps. Update, don't overwrite.

LONGTERM_MEM.md: System architecture, component relationships. Rarely changes.

MEDIUMTERM_MEM.md: Reusable patterns and gotchas. NOT session logs.

Task files: One per user-facing work unit. Format:

# TASK: <title>

## Meta
Status: planned|in_progress|blocked|complete
Priority: P0|P1|P2
Created: YYYY-MM-DD
Completed: YYYY-MM-DD

## Problem
<what, why>

## Design
<decisions, alternatives rejected>

## Checklist
- [ ] item
- [x] completed item

## Attempts
### Attempt N (YYYY-MM-DD HH:MM)
Approach: ...
Result: ...

## Summary
Current state: ...
Key learnings: ...
Next steps: ...

## Notes
<breadcrumbs - pointers to recoverable info>

## Budget (optional)
Estimate: <tokens> (planning: X, impl: Y, validation: Z)
Variance: low|med|high
Intervention: autonomous|checkpoints|steering|collaborative
Spent: <tokens>

Budget uses tokens (measurable) not time. Variance = estimate spread (low=tight, high=wide). Intervention = human engagement pattern, not duration.

Scratch space: Store any temporary agent work here - it's version-controlled separately from the main repo.

Progressive Disclosure

Store breadcrumbs (pointers), not content. Recover on-demand via Read/Bash/WebFetch.

<slug>: <recovery-instruction>

Examples: auth-flow: src/auth/login.ts:45-80 | build-status: run make build`` | prev-attempt: jj diff -r @--

Store inline only: decisions, key insights, non-reproducible errors.

See /handoff for writing breadcrumbs, /continue for expanding them.

Commands

CommandUse when
/continueResuming work from a previous session
/handoffSaving context mid-task for next session
/rememberPersisting learnings to memory files
/completeFinishing and archiving a task
/syncSyncing .agent-files with origin
/describeCreating a named checkpoint
/history-searchSearching history for patterns
/history-diffsViewing diffs across revisions
/history-batchFetching file content at revisions
/wtSetting up .agent-files in a git worktree

When a command is invoked, read the corresponding .md file in this skill directory for detailed instructions.

jj Snapshotting

jj does NOT auto-snapshot on file changes alone. A jj command must be run to trigger a snapshot. Run jj st periodically (after edits or batches of edits) to capture history. Without this, intermediate states are lost.

Important

.agent-files/ should never be committed. Add it to .gitignore.

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon