Auto-generates a session summary on SessionEnd. Writes structured notes to ~/.claude/session-summaries/ for use by bigpicture synthesis.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add qte77/claude-code-plugins --skill summarizing-session-end --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Summarizing Session End?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qte77-summarizing-session-end)More formats (shields.io, HTML) on the badges page.
---
name: summarizing-session-end
description: Auto-generates a session summary on SessionEnd. Writes structured notes to ~/.claude/session-summaries/ for use by bigpicture synthesis.
compatibility: Designed for Claude Code
metadata:
allowed-tools: Read, Write, Glob
context: inline
stability: development
---
# Session End Summary
Generates a structured session summary when triggered by the SessionEnd hook.
Reuses the compacting-context template to produce consistent, synthesis-ready
notes.
## Hook Configuration
Add to `.claude/settings.json`:
```json
{
"hooks": {
"SessionEnd": [
{
"type": "prompt",
"prompt": "/summarizing-session-end"
}
]
}
}
```
## Workflow
1. **Gather context** -- Review the conversation for what was accomplished,
which files were touched, and any unresolved issues.
2. **Generate session ID** -- Use the current date and a short identifier
(first 8 chars of session UUID if available, or timestamp).
3. **Write summary** -- Create `~/.claude/session-summaries/YYYY-MM-DD-<id>.md`
using the output template below. Create the directory if it does not exist.
4. **Keep it brief** -- The summary must be under 50 lines. This is a summary,
not a transcript.
## Output Template
Write to `~/.claude/session-summaries/YYYY-MM-DD-<id>.md`:
```markdown
# Session Summary -- YYYY-MM-DD
## Trajectory
<!-- Phase reached: research / planning / implementation / review -->
<!-- One-line description of the session arc -->
## Key Files
<!-- Files touched with one-line purpose each -->
## Completed
<!-- Done items, one bullet per item -->
## Blockers
<!-- Blocking issues discovered (empty section if none) -->
## Findings
<!-- Key discoveries, decisions made, learnings -->
```
## Quality Check
- Correct > Complete > Minimal (ACE-FCA)
- Under 50 lines output
- No raw logs or tool dumps
- Enough for bigpicture synthesis to consume
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!