summarize
Summarizes the current session's work into a diary entry at .claude/state/sessions/ and runs worktree auto-cleanup. Use when the user says 'summarize' or '/summarize', or when closing out a completed work session.
Install
npx skills add https://github.com/domengabrovsek/agent-config/tree/main/skills/summarize
claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install domengabrovsek-claude@llmmart
git clone https://github.com/domengabrovsek/agent-config.git
The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole domengabrovsek/claude collection as a plugin from our marketplace. Git is the plain clone.
Skill manifest
Summarize the current session's work and save it to .claude/state/sessions/YYYY-MM-DD-<topic>.md (use today's date and a brief topic slug).
Format the file as:
# Session: <date> - <topic>
## What was done
- List of completed changes with file paths
## Files changed
- List of all modified/created/deleted files
## What remains
- Any incomplete work or follow-up tasks
## Open questions
- Unresolved decisions or blockers
## Key decisions
- Important choices made during this session and why
Also output the summary to the conversation. Keep it concise - suitable for a standup update or handoff to another session.
Worktree auto-cleanup
After saving the diary, run ~/.agents/scripts/worktree-prune.sh --apply against the current repo. The script applies the conservative rule (upstream-gone OR merged into default) and reports what was removed vs kept. Locked worktrees are auto-unlocked iff safely removable. Anything with unpushed work or open PR is preserved.
The same hook fires automatically at SessionEnd, so this step is mostly for explicit closure and surface visibility.
Files (claude)
-
SKILL.md 1.3 KB
--- name: summarize description: "Summarizes the current session's work into a diary entry at .claude/state/sessions/ and runs worktree auto-cleanup. Use when the user says 'summarize' or '/summarize', or when closing out a completed work session." --- Summarize the current session's work and save it to `.claude/state/sessions/YYYY-MM-DD-<topic>.md` (use today's date and a brief topic slug). Format the file as: ```markdown # Session: <date> - <topic> ## What was done - List of completed changes with file paths ## Files changed - List of all modified/created/deleted files ## What remains - Any incomplete work or follow-up tasks ## Open questions - Unresolved decisions or blockers ## Key decisions - Important choices made during this session and why ``` Also output the summary to the conversation. Keep it concise - suitable for a standup update or handoff to another session. ## Worktree auto-cleanup After saving the diary, run `~/.agents/scripts/worktree-prune.sh --apply` against the current repo. The script applies the conservative rule (upstream-gone OR merged into default) and reports what was removed vs kept. Locked worktrees are auto-unlocked iff safely removable. Anything with unpushed work or open PR is preserved. The same hook fires automatically at SessionEnd, so this step is mostly for explicit closure and surface visibility.
Comments (0)
Sign in to join the conversation.
Reviews (0)
No reviews yet.
No comments yet.