shell
$ npx -y skills add rohitg00/pro-workflow --agent claude-codeShips with pro-workflow. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/wrap-up
Context preview
What this command does when you run it.
End your Claude Code session with intention.
Stats
Stars2,638
Forks255
LanguageJavaScript
Command definition
wrap-up.md
# /wrap-up - Session Wrap-Up End your Claude Code session with intention. ## Execute This Checklist ### 1. Changes Audit ```bash git status git diff --stat ``` - What files were modified? - Any uncommitted changes? - Any TODOs left in code? ### 2. Quality Check ```bash npm run lint 2>&1 | head -20 npm run typecheck 2>&1 | head -20 npm test -- --changed --passWithNoTests ``` - All checks passing? - Any warnings to address? ### 3. Learning Capture - What mistakes were made this session? - What patterns worked well? - Any corrections to add to LEARNED? Format: `[LEARN] Category: Rule` ### 4. Next Session Context - What's the next logical task? - Any blockers to note? - Context to preserve for next time? ### 5. Summary Write one paragraph: - What was accomplished - Current state - What's next --- **After completing checklist, ask:** "Ready to end session?"
