From tasklist
저장된 Task List를 선택하여 새 Claude Code 세션에 로드합니다. Trigger: "/tasklist:load", "태스크 리스트 불러와", "태스크 리스트 로드", "task list 열어줘", "태스크 리스트 로드해줘"
How this skill is triggered — by the user, by Claude, or both
Slash command
/tasklist:loadThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
저장된 Task List를 선택하여 새 Warp 세션에 spawn합니다.
저장된 Task List를 선택하여 새 Warp 세션에 spawn합니다.
$ARGUMENTS가 있으면 목록 조회를 건너뛰고 바로 Spawn으로 진행한다.
python3 -c "
import json, os, glob, re
base = os.path.expanduser('~/.claude/tasks')
dirs = sorted([d for d in os.listdir(base)
if os.path.isdir(os.path.join(base, d))
and not re.match(r'^[0-9a-f]{8}-', d)])
for i, name in enumerate(dirs, 1):
path = os.path.join(base, name)
files = glob.glob(os.path.join(path, '*.json'))
total = len(files)
if total == 0:
continue
done = 0; prog = 0; pend = 0
for f in files:
try:
s = json.load(open(f)).get('status','')
if s == 'completed': done += 1
elif s == 'in_progress': prog += 1
elif s == 'pending': pend += 1
except: pass
print(f' {i:2d}) {name:<35s} {done}/{total} done, {prog} in progress, {pend} pending')
"
출력 후 AskUserQuestion으로 선택받는다:
선택 즉시 spawn. 상세 태스크 목록은 표시하지 않음 (새 세션에서 Ctrl+T로 확인).
osascript -e '
set the clipboard to "CLAUDE_CODE_TASK_LIST_ID=<selected-id> claude"
tell application "System Events"
tell process "stable"
click menu item "New Terminal Tab" of menu "File" of menu bar 1
delay 3
click menu item "Paste" of menu "Edit" of menu bar 1
delay 1
keystroke return
end tell
end tell
'
CRITICAL rules (from spawn skill):
"stable", NOT "Warp"Edit > Paste menu, NOT Cmd+VFile > New Terminal Tab menu, NOT Cmd+Tkeystroke return at end is REQUIREDDone — '<name>' 로드됨. Warp 새 탭에서 Ctrl+T로 확인하세요.
npx claudepluginhub namho-hong/team-offlight-claude-code-plugins --plugin tasklistResumes saved Claude Code sessions from docs/context-sessions/. Lists pending tasks, loads selected session, tracks progress per completion, deletes file when done.
Converts structured project TASKS.md files into executable Claude Code task lists with dependency management and persistence setup. Integrates with Arness planning workflow.
Manages tasks using native Claude Code subagent tools (TaskCreate, TaskUpdate, TaskList, TaskGet). Tracks TODOs, checkpoints progress, and resumes work across sessions.