diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-03 22:09:42 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-03 22:09:42 -0600 |
| commit | bb40315dac6ac82da73504e207f4392836db1327 (patch) | |
| tree | 90a496050b0fbff97f692d649820f380b6fd9e3d /.claude/commands | |
| parent | aacc1e790b5da9eaf97b42bc7bd2aaaa079c8376 (diff) | |
feat: Add /wrap-it-up slash command and phrase recognition
Created comprehensive session wrap-up workflow triggered by:
- Slash command: /wrap-it-up
- Phrases: "let's wrap it up", "that's a wrap", "let's call it a wrap"
Workflow:
1. Write session notes to docs/NOTES.org (decisions, work, context)
2. Git commit and push all changes to all remotes
3. Friendly goodbye summary with accomplishments and reminders
Added dual documentation:
- .claude/commands/wrap-it-up.md for explicit /wrap-it-up command
- docs/NOTES.org terminology section for phrase recognition
Makes session endings consistent and ensures no work is lost.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to '.claude/commands')
| -rw-r--r-- | .claude/commands/wrap-it-up.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.claude/commands/wrap-it-up.md b/.claude/commands/wrap-it-up.md new file mode 100644 index 00000000..cdf743d5 --- /dev/null +++ b/.claude/commands/wrap-it-up.md @@ -0,0 +1,25 @@ +# Wrap Up Session + +When the user says "let's wrap it up", "that's a wrap", or "let's call it a wrap", execute this complete workflow: + +## 1. Write Session Notes +Add anything important to `docs/NOTES.org` for next session: +- Key decisions made +- Work completed +- Context needed for continuation +- Any pending issues or blockers + +## 2. Commit and Push Changes +- Run `git status` to see what changed +- Run `git diff` to review changes +- Create a descriptive commit message following repository conventions +- Commit with co-author attribution (Claude) +- Push to ALL remotes (origin + github) + +## 3. Valediction +Give a friendly goodbye with: +- Brief summary of what was accomplished +- What's ready for next session +- Any important reminders + +Execute this workflow now. |
