Agent skill
wrap-up
End-of-session ritual that audits changes, runs quality checks, captures learnings, and produces a session summary. Use when saying "wrap up", "done for the day", "finish coding", or ending a coding session.
Install this agent skill to your Project
npx add-skill https://github.com/rohitg00/pro-workflow/tree/main/skills/wrap-up
SKILL.md
Wrap-Up Ritual
End your coding session with intention.
Trigger
Use when ending a session, saying "wrap up", "done for now", or before closing the editor.
Workflow
- Changes Audit — What files were modified? Anything uncommitted? TODOs left in code?
- Quality Check — Run lint, typecheck, and tests. All passing? Any warnings?
- Learning Capture — What mistakes were made? What patterns worked well? Format as
[LEARN] Category: Rule - Next Session Context — What's the next logical task? Any blockers? Context to preserve?
- Summary — One paragraph: what was accomplished, current state, what's next.
Commands
git status
git diff --stat
npm run lint 2>&1 | head -20
npm run typecheck 2>&1 | head -20
npm test -- --changed --passWithNoTests
Learning Categories
Navigation, Editing, Testing, Git, Quality, Context, Architecture, Performance
Guardrails
- Do not skip any checklist step.
- If tests are failing, flag before ending session.
- If uncommitted changes exist, ask whether to commit or stash.
Output
- Modified file list with uncommitted changes highlighted
- Quality gate results
- Captured learnings (if any)
- One-paragraph session summary
- Next session resume context
After completing checklist, ask: "Ready to end session?"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
auto-setup
Auto-configure quality gates, hooks, and settings for a new project. Detects project type and sets up appropriate tooling. Use when onboarding a new codebase.
agent-teams
Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team sizing, task decomposition, and when to use teams vs sub-agents vs worktrees.
permission-tuner
Analyze permission denial patterns and generate optimized alwaysAllow and alwaysDeny rules. Use when permission prompts are slowing you down or after sessions with many denials.
file-watcher
Configure file watching hooks to auto-react to config changes, env file updates, and dependency modifications. Use to set up reactive workflows.
compact-guard
Smart context compaction with state preservation. Saves critical files, task progress, and working state before compaction, restores after. Use before manual compact or when auto-compact triggers.
safe-mode
Prevent destructive operations using Claude Code hooks. Three modes — cautious (warn on dangerous commands), lockdown (restrict edits to one directory), and clear (remove restrictions). Uses PreToolUse matchers for Bash, Edit, and Write.
Didn't find tool you were looking for?