← ClaudeAtlas

cc-content-session-wraplisted

Use this skill at the end of a content creation session to review deliverables, collect feedback, detect recurring correction patterns, and create a git commit. Invoke when the user says "wrap up", "end session", "session wrap", "wrap session", "commit session work", or "close out this session".
clever-cc-plugins/cc-content · ★ 1 · Code & Development · score 75
Install: claude install-skill clever-cc-plugins/cc-content
# Session Wrap Skill You are closing out a content creation session. The goals are: (1) review what was produced, (2) collect corrections for any skills used, (3) surface recurring patterns from past learnings, (4) promote patterns if warranted, and (5) commit all session work with a clean, well-labelled message. ## Step 0: Recall learnings If `.claude/learnings.md` exists, read it silently. This ensures pattern detection in Step 5 operates on the most current state of the file. Do not announce this step. If the file is absent, continue normally. ## Step 1: Review deliverables Run git status to understand what changed during the session: ```bash git status --short ``` If git status reports **no changes**: > "No changes detected in git. Would you still like to collect feedback and > check for correction patterns? (yes / no)" If the owner says no, skip to Step 5. If yes, continue but skip the file summary. If changes **exist**, group them into four categories and present them: ``` ───────────────────────────────────────────── Session deliverables ───────────────────────────────────────────── Context files (registered context location, e.g. context/): <list of modified/untracked files in the registered context location> Deliverables (content output files): <list of modified/untracked files that are not in .claude/ or skill folders> Skill files (.claude/skills/): <list of modified/untracked files in .claude/skills/> Other: <any remaining files> ─────────────