AI SummaryWrap Session guides AI coding assistants through systematically documenting and preserving session context before ending work, ideal for maintaining continuity across interrupted coding sessions and memory management.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Wrap Session" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (9 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/FlojoInc/FloImg/main/.claude/commands/w.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/c.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/c.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/ctx.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/ctx.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/gh.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/gh.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/p.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/p.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/s.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/s.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/st.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/st.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/sync-roadmap.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/sync-roadmap.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/x.md "https://raw.githubusercontent.com/FlojoInc/FloImg/main/.claude/commands/x.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
End-of-session wrap (saves context)
Wrap Session
Save important context before ending a session or before memory compaction.
Steps
• Identify current task (if any): • Read PROJECT_STATUS.md "Current Focus" • Summarize session work: • What was accomplished • Key decisions made • Open questions remaining • Next steps • Update context doc (if active task): • Add session summary to "Session Notes" • Update "Next Steps" section • Mark any resolved questions • Update task file (if progress made): • Update "Progress Notes" section • Check off completed acceptance criteria • Update PROJECT_STATUS.md: • Ensure "Current Focus" reflects actual state • Add any completed items to "Recent Progress" • Commit updates: `bash git add vault/pm/ PROJECT_STATUS.md git commit -m "docs: wrap session for {ID} Session summary: {brief description}" ` • Output summary: ` ## Session Wrap Task: {ID} - {Title} Status: {status} ### Accomplished • {item 1} • {item 2} ### Key Decisions • {decision 1} ### Open Questions • {question 1} ### Next Steps • {next action} • {following action} Context saved. Safe to end session or continue later. `
When to Use
• Before ending a work session • Before context compaction (memory limit) • When switching to different work • Before taking a break
Important Rules
• Capture decisions so they're not lost • Note open questions for next session • Update next steps for continuity • Commit changes to preserve in git
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster