Summarizing session end
Skill qte77/claude-code-plugins/plugins/cc-meta/skills/summarizing-session-end
A Claude Code plugin marketplace providing skills, rules, and scripts extracted from a production development workflow.
npx -y skills add qte77/claude-code-plugins --skill summarizing-session-endAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Auto-generates a session summary on SessionEnd. Writes structured notes to ~/.claude/session-summaries/ for use by bigpicture synthesis.
SKILL.md
1.9 KB, as published. Nobody here has run it
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:
{
"hooks": {
"SessionEnd": [
{
"type": "prompt",
"prompt": "/summarizing-session-end"
}
]
}
}
Workflow
-
Gather context -- Review the conversation for what was accomplished, which files were touched, and any unresolved issues.
-
Generate session ID -- Use the current date and a short identifier (first 8 chars of session UUID if available, or timestamp).
-
Write summary -- Create
~/.claude/session-summaries/YYYY-MM-DD-<id>.mdusing the output template below. Create the directory if it does not exist. -
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:
# 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