work-tracking

Installation
SKILL.md

Step 1: Initialize Work Directory (If Needed)

Before checking for active work, ensure agent-work directory exists:

if [ ! -d "agent-work" ]; then
  echo "Initializing work directory..."
  cp -r .claude/skills/work-tracking/scaffold agent-work
  echo "Work directory initialized from scaffold"
fi

What this does:

  • Checks if agent-work/ directory exists
  • If not, copies the scaffold structure from .claude/skills/work-tracking/scaffold/
  • Creates the necessary bin/ and completed/ subdirectories
  • Sets up the work tracking system ready for use

Installs
11
First Seen
Jan 28, 2026