Use when the user wants to review todo implementation status, check progress on MEMORY-TODO items, verify what's done vs pending, or says phrases like "투두 리뷰", "상태 확인", "진행 상황", "어디까지 됐어", "todo review", "todo status"
From todo-reviewnpx claudepluginhub dokdo2013/claude-code-skills --plugin todo-reviewThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
MEMORY-TODO 항목의 실제 구현 상태를 Sub Agent 병렬 조사로 확인. 완료/진행중/미시작 분류 + 투두 정리 권고.
digraph when {
"User message" -> "Wants status check?";
"Wants status check?" -> "Yes: specific dates?" [label="yes"];
"Wants status check?" -> "Don't trigger" [label="no"];
"Yes: specific dates?" -> "Review those dates" [label="yes"];
"Yes: specific dates?" -> "Review today+yesterday" [label="no"];
}
MEMORY-TODO.md from the project memory directoryproject-*.md → extract: name, description, repository paths, key files, remaining tasksLaunch one Explore sub-agent per item in parallel (max 7-8 concurrent).
Sub-agent prompt template:
조사만 수행. 코드 수정하지 말 것.
[항목명]의 현재 구현 상태를 확인.
[project-*.md에서 추출한 컨텍스트 — 키워드, 파일 경로, 체크리스트 등]
확인 사항:
1. 관련 파일 존재 여부 및 최근 수정 내역
2. `git log --oneline -10`으로 관련 커밋
3. `git status`로 미커밋 변경사항
4. [항목별 특정 체크포인트]
경로: [관련 리포 경로들]
결과를 정리: [완료/진행중/미시작] + 근거
Context extraction per item:
meloming-chat-service, meloming-back, meloming-overlay, meloming-front → /Users/hyeonwoo/DEV/{repo}terraform-main, monitoring-gitops → /Users/hyeonwoo/DEV/{repo}commission-back → /Users/hyeonwoo/DEV/meloming-commission-backls /Users/hyeonwoo/DEV/ | grep if path unclearCollect all sub-agent results. Present summary table:
## [날짜] — N개 항목
| # | 항목 | 상태 | 판단 |
|---|------|------|------|
| 1 | 항목명 | ✅ 완료 | **삭제 가능** |
| 2 | 항목명 | ⚠️ 진행중 | **유지** |
| 3 | 항목명 | ❌ 미시작 | **유지** |
Status classification:
Recommendation rules:
After presenting results, ask: "완료된 항목들을 투두에서 삭제할까요?"
If yes → use memory-todo Complete operation for each ✅ item (remove from MEMORY-TODO.md, move project-*.md to archive/).