Loading...
Loading...
This skill should be used when loading tasks from a project directory into the current Claude Code session. It reads task JSON files from session subdirectories, recreates them in the current session, and sets the active project marker.
npx skill4agent add codyswanngt/lisa tasks-loadprojects/$ARGUMENTS/tasks//clearprojects/$ARGUMENTS/tasks/
├── {session-1-uuid}/
│ ├── 1.json
│ └── 2.json
└── {session-2-uuid}/
├── 1.json
└── 2.jsonfind projects/$ARGUMENTS/tasks -name "*.json" 2>/dev/null | head -5ls -dt projects/$ARGUMENTS/tasks/*/ 2>/dev/null | head -10echo "$ARGUMENTS" > .claude-active-projectfind projects/$ARGUMENTS/tasks -name "*.json" -type f{ "project": "$ARGUMENTS" }Loaded X tasks from projects/$ARGUMENTS/tasks/
- Sessions found: N
- Pending: Y
- Completed: Z
Active project set to: $ARGUMENTS
New tasks will automatically sync to this project.