Task History

Git 로그를 파싱해서 팀의 Task 진행상황을 보여줍니다. 최근 작업 이력 확인 시 사용

hanoool Updated

File contents

Task History

최근 Task 변경 이력을 보여줍니다.

실행 단계

  1. 인자가 없으면 기본값 7일 사용

  2. Git 로그 조회

git log --oneline --since="$ARGUMENTS days ago" -- tasks/
  1. 현재 tasks/ 상태 요약
# 전체 task 수
find tasks/ -name "*.json" | wc -l

# 상태별 집계
grep -r '"status":' tasks/ | sort | uniq -c
  1. 결과를 표 형식으로 정리:
날짜 작업자 변경 Task
... ... ... ...

출력 예시

최근 7일간 Task 변경 이력:

📊 요약
- 전체: 10개
- 완료: 6개 ✅
- 진행중: 3개 🔄
- 대기: 1개 ⏳

📝 최근 커밋
- 2026-01-24 한울: ✅ Task #3 완료
- 2026-01-23 한울: 📝 Task #3 생성
...

hanoool/claude-skillton/tree/main/skills/task-history commit eff1455689

Frequently asked questions

npx skillmds@latest add hanoool/task-history