
Session ID, handoff 문서, context_limit 데이터 기반으로 이전 세션 컨텍스트 복원. Triggers: /continue 슬래시 커맨드로만 호출
This skill should be used when user wants to access, capture, or reference Claude Code session history. Trigger when user says "capture session", "save session history", or references past/current conversation as a source - whether for saving, extracting, summarizing, or reviewing. This includes any mention of "what we discussed", "today's work", "session history", or when user treats the conversation itself as source material (e.g., "from our conversation").
세션 마무리: handoff 문서 저장 + git commit. /wrap 슬래시 명령어로만 실행.
스킬별 컨텍스트 소모량 리포트. 각 스킬 호출이 cp%를 얼마나 소모하는지 집계. Triggers: 'skill-context', 'skill context', '스킬 컨텍스트', '스킬 소모', '컨텍스트 비용'
--- name: session-timeline description: Generate a per-session execution timeline from Claude Code JSONL logs. Triggers: "session timeline", "세션 타임라인", "소요시간 정리", "tool wait", "turn_duration". --- # Session Timeline 특정 Claude Code 세션 ID의 시간축을 복원한다. ## Workflow 1. `sessionId`를 받는다. 2. `scripts/session_timeline.js`를 실행해 timeline을 생성한다. 3. 기본은 markdown, 분석 파이프라인 연결 시 `--format json`을 사용한다. 4. 대형 `tool_result`는 원문 대신 persisted output 경로와 요약만 유지한다. ## Command ```bash node skills/session-timelin
--- description: Claude Code 세션 대시보드를 빌드하고 브라우저에서 열기. Triggers: '/ss', 'session dashboard', '세션 대시보드', '세션 목록' --- # Session Dashboard Claude Code JSONL 세션 파일을 전처리하여 대시보드 HTML로 변환하고 브라우저에서 엽니다. ## 실행 흐름 ### 1. 플러그인 경로 확인 플러그인 설치 경로 우선순위: 1. `~/.claude/plugins/marketplaces/my-claude-plugins/my-session-dashboard` (marketplace 설치) 2. `~/.claude/my-claude-plugins/my-session-dashboard` (로컬 개발 경로) 경로를 `PLUGIN_DIR` 변수에 저장합니다. ### 2. serve.js 실행 ```bash node "${PLUGIN_DIR}/serve.js" ``` 동작: - 로
경량 commit-push — 변경사항 분석 → 커밋 → 푸쉬 (remote 있을 때만). Triggers: 'cp', 'commit and push', '커밋', '푸시', 'commit push', '변경사항 커밋'
This skill should be used when the user asks to "analyze session", "세션 분석", "evaluate skill execution", "스킬 실행 검증", "check session logs", "로그 분석", provides a session ID with a skill path, or wants to verify that a skill executed correctly in a past session. Post-hoc analysis of Claude Code sessions to validate skill/agent/hook behavior against SKILL.md specifications.