From tasklist
저장된 Task List 목록과 진행률을 조회합니다. Trigger: "/tasklist:list", "어떤 태스크 리스트 있어?", "태스크 리스트 목록"
How this skill is triggered — by the user, by Claude, or both
Slash command
/tasklist:listhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
`~/.claude/tasks/`에 저장된 Task List를 진행률과 함께 표시합니다.
~/.claude/tasks/에 저장된 Task List를 진행률과 함께 표시합니다.
단일 Bash 호출로 UUID 디렉토리를 제외하고 이름 있는 리스트만 출력합니다:
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)
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')
"
결과를 마크다운 테이블로 정리해서 표시한다:
| # | Task List | 진행률 | 상태 |
|---|---|---|---|
| 1 | example-list | 3/10 | 2 in progress, 5 pending |
| 2 | empty-list | 0/0 | 빈 리스트 |
0/0인 항목은 상태를 "빈 리스트"로 표시/tasklist:load <이름>을 안내npx claudepluginhub namho-hong/team-offlight-claude-code-plugins --plugin tasklistLists tasks from directories like focus/active/paused/completed by parsing Markdown files for progress, status, priority, estimates, and dependencies. Filters by status/dir; outputs table/list/JSON with aggregates.
Displays progress on incomplete task lists from .plans/tasks-*.yml files: total/completed counts, next actionable task per feature. Use to check active feature status.
Lists tasks using taskmd CLI with optional filters like --status, --priority, --format. Use when users want to view their tasks.