skills/session-wrap/SKILL.md
Session wrap-up with multi-agent analysis. Use when the user says 'wrap', '/wrap', 'session wrap', 'end session', 'what should I commit', or wants to analyze completed work before ending a coding session. Suggests documentation updates, automation opportunities, and follow-up tasks.
npx skillsauth add seungwonme/.claude session-wrapInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Comprehensive session wrap-up workflow with multi-agent analysis.
/wrap - Interactive session wrap-up (full workflow)/wrap [message] - Quick commit with provided message1. Check Git Status
2. Phase 1: 4 Analysis Agents (Parallel)
┌─────────────┬──────────────┐
│ doc-updater │ automation- │
│ │ scout │
├─────────────┼──────────────┤
│ learning- │ followup- │
│ extractor │ suggester │
└─────────────┴──────────────┘
3. Phase 2: duplicate-checker (Sequential)
4. Integrate Results & AskUserQuestion
5. Execute Selected Actions
git status --short
git diff --stat HEAD~3 2>/dev/null || git diff --stat
Prepare a session summary, then execute 4 agents in parallel (single message with 4 Task calls).
Session Summary:
- Work: [Main tasks performed]
- Files: [Created/modified files]
- Decisions: [Key decisions made]
| Agent | Role | Output | |-------|------|--------| | doc-updater | Analyze CLAUDE.md/context.md updates | Specific content to add | | automation-scout | Detect automation patterns | Skill/command/agent suggestions | | learning-extractor | Extract learning points | TIL format summary | | followup-suggester | Suggest follow-up tasks | Prioritized task list |
Run after Phase 1 completes. Feed all Phase 1 results to duplicate-checker:
Present combined analysis:
## Wrap Analysis Results
### Documentation Updates
[doc-updater summary + duplicate-checker feedback]
### Automation Suggestions
[automation-scout summary + duplicate-checker feedback]
### Learning Points
[learning-extractor summary]
### Follow-up Tasks
[followup-suggester summary]
AskUserQuestion(
question: "Which actions would you like to perform?",
multiSelect: true,
options: [
"Create commit (Recommended)",
"Update CLAUDE.md",
"Create automation",
"Skip"
]
)
Execute only the actions selected by user.
references/multi-agent-patterns.md for detailed orchestration patternsagents/ directorytools
유튜브 콘텐츠 기획 및 알고리즘 전문가. 영상 주제 기획, 아웃라이어 전략, 시청자 풀 분석, 알고리즘 치트키가 필요할 때 사용.
research
유튜브 채널 운영 전문가. 콘텐츠 기획부터 제목/썸네일, 영상 제작, 채널 관리, 수익화, 영상 요약까지 전 영역 지원. Routes to the appropriate sub-skill. Trigger on "유튜브", "YouTube", "영상 기획", "콘텐츠 기획", "아웃라이어", "알고리즘", "썸네일", "제목 공식", "클릭률", "영상 제작", "원고", "인트로", "편집", "채널 브랜딩", "댓글 관리", "수익화", "키 콘텐츠", "풀링 콘텐츠", "객단가", "유튜브 정리", "영상 요약", "transcript 번역", "YouTube digest", "영상 퀴즈". Sub-skills — 기획 (콘텐츠 기획, 알고리즘 전략, 아웃라이어 제작, 시청자 풀 분석), 썸네일 (제목/썸네일 제작, 19가지 제목 공식, A/B 테스트), 제작 (원고 작성, 인트로 구성, 편집 기법, 시청자 참여 유도), 채널 (채널 브랜딩, 이미지 관리, 댓글 관리), 수익화 (키/풀링 콘텐츠, 상품 판매 전략, 객단가 최적화), 요약 (YouTube 영상 분석, transcript 추출/번역, 퀴즈, Deep Research).
development
Spec-driven development: interview the user in depth to produce a comprehensive technical spec. Use when the user says "spec", "스펙", "스펙 작성", "기능 정의", "요구사항 정리", "interview me", "spec this out", "feature spec", or wants to define a feature/project before implementation. Also triggers when a SPEC.md file is referenced.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.