/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.
One skill from pro-workflow.
shell
$ npx -y skills add rohitg00/pro-workflow --skill wrap-up --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill 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
The summary Claude sees to decide when to auto-load this skill.
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.
Stats
Stars2,638
Forks255
LanguageJavaScript
SKILL.md
wrap-up.SKILL.md
--- name: wrap-up description: 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. user-invocable: true --- # 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 1. **Changes Audit** โ What files were modified? Anything uncommitted? TODOs left in code? 2. **Quality Check** โ Run lint, typecheck, and tests. All passing? Any warnings? 3. **Learning Capture** โ What mistakes were made? What patterns worked well? Format as `[LEARN] Category: Rule` 4. **Next Session Context** โ What's the next logical task? Any blockers? Context to preserve? 5. **Summary** โ One paragraph: what was accomplished, current state, what's next. ## Commands ```bash 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
