plugins/cc-meta/skills/summarizing-session-end/SKILL.md
Auto-generates a session summary on SessionEnd. Writes structured notes to ~/.claude/session-summaries/ for use by bigpicture synthesis.
npx skillsauth add qte77/claude-code-utils summarizing-session-endInstall 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.
Generates a structured session summary when triggered by the SessionEnd hook. Reuses the compacting-context template to produce consistent, synthesis-ready notes.
Add to .claude/settings.json:
{
"hooks": {
"SessionEnd": [
{
"type": "prompt",
"prompt": "/summarizing-session-end"
}
]
}
}
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>.md
using 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.
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 -->
development
Analyzes industry websites for design patterns, layout, typography, and content strategies using first-principles thinking. Use when researching website design, UI patterns, or competitive design analysis.
development
Audits website usability for UX optimization, covering forms, navigation, validation, and microcopy. Use when reviewing user experience, task completion flows, or interface friction points.
development
Audits website accessibility for WCAG 2.1 AA compliance, generating findings and code fixes. Use when reviewing accessibility, keyboard navigation, screen reader compatibility, or inclusive design.
development
Writes tests following TDD (using vitest and @testing-library/react) best practices. Use when writing unit tests, integration tests, or component tests in TypeScript.