소스 정보
- 저장소
- fimoklei/pm-ai-playbook
- 최근 소스 활동
- 2026년 2월 2일 20:31
- 감지된 SKILL.md 언어
- 영어
- 스타
- 42
- 포크
- 8
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/fimoklei/pm-ai-playbook --skill session-summarizer명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | session-summarizer |
| description | Use when user runs /summarize command to capture session knowledge |
Every session generates knowledge: decisions made, patterns that worked, problems encountered, questions that arose. Session summaries capture this for future compound learning.
Core principle: Document sessions to build knowledge that compounds across time.
User runs /summarize command to create a session summary.
Create summaries to capture:
You MUST integrate all three sources:
Session logs: ~/.claude/projects/[project-path]/[session-id]/session-memory/summary.md
Git history: git log --oneline -n 20 and git diff since session start
Conversation context: Your memory of the session
Using session logs:
# Find current session log
ls -la ~/.claude/projects/$(pwd | sed 's/\/Users\/[^/]*\/Projects\///g')/*/session-memory/summary.md | tail -1
# Read it
cat [path-from-above]
# Session Summary - [Date]
## Context
[One-line: what was the goal/problem]
## Victories
- [What worked, solutions found]
- [Patterns that were effective]
## Failures
- [What didn't work, why]
- [Dead ends, wrong assumptions]
## Root Causes
- [For each failure above: What in your system prompt or tooling made you make this mistake?]
- [Analyze prompt assumptions, tool limitations, missing context that led to errors]
- [Example: "Assumed Write tool would create parent directories - tooling doesn't support this"]
- [Example: "System prompt emphasized speed over verification - led to skipping file reads"]
## Tough Questions
- [Questions that came up, answered or not]
- [Ambiguities encountered]
## Improvements
- [What could be better next time]
- [Patterns to codify, failures to document]
## Git Activity
- [Commit count, key changes]
- [Files modified, tests added]
## Next Session
- [Unfinished items, follow-ups needed]
/summarize command~/.claude/projects/.../summary.mdFor each failure or mistake documented:
Examples:
Purpose: Understand what gaps in prompts or tooling cause errors, enabling systemic improvements.
User: /summarize
You: "I'll create a session summary capturing what we accomplished and learned today."
[Read session logs, check git, write summary with root cause analysis...]
You: "Here's the summary:
Fixed authentication bug in React app where tokens weren't persisting across page refreshes.
Would you like me to save this anywhere specific, or is the session log sufficient?"