AI SummarySession End guides developers through a structured workflow to complete coding sessions with quality checks, changelog updates, and learning documentation. It's ideal for developers using Claude Code who want to maintain organized, documented development practices.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Session End" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (17 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/end.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/adopt.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/adopt.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/init.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/init.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/learn-curate.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/learn-curate.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/learn-search.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/learn-search.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/learn-show.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/learn-show.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/learn.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/learn.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/start.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/start.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/status.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/status.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/validate.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/validate.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/work-delete.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/work-delete.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/work-graph.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/work-graph.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/work-list.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/work-list.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/work-new.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/work-new.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/work-next.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/work-next.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/work-show.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/work-show.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/work-update.md "https://raw.githubusercontent.com/ankushdixit/solokit/main/.claude/commands/work-update.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Complete the current development session with quality gates and summary
Session End
Complete the current development session by following these steps in order.
Step 1: Pre-flight Checks
Before completing the session, ensure all work is properly prepared.
1.1 Check CHANGELOG
First, check if CHANGELOG.md was updated in this session: `bash git diff --name-only main...HEAD | grep -q CHANGELOG.md && echo "CHANGELOG updated" || echo "CHANGELOG needs update" ` If CHANGELOG needs update: • Review commits made this session with git log --oneline -10 • Update CHANGELOG.md under the ## [Unreleased] section with: • Features added under ### Added • Bug fixes under ### Fixed • Changes under ### Changed • Stage the CHANGELOG: git add CHANGELOG.md
1.2 Check and Commit Uncommitted Changes
Check for uncommitted changes: `bash git status --porcelain ` If there are uncommitted changes: • Review the changes • Stage all changes: git add -A • Create a commit with this format: `bash git commit -m "$(cat <<'EOF' <type>: <short description> <detailed description of changes> LEARNING: <one key insight from this work> 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com> EOF )" ` Where <type> is one of: feat, fix, refactor, docs, test, chore
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster