1.5 KiB
1.5 KiB
name, description
| name | description |
|---|---|
| ck-watzup | Review recent git changes and wrap up a work session. Use for end-of-session summaries, reviewing what was modified, analyzing commit quality, and getting an impact assessment of recent work. |
Watzup — Review Recent Changes
Reviews the current branch and recent commits, then provides a summary of changes and impact.
When to Use
- End of a work session — "what did I do?"
- Before creating a PR — verifying all changes are intentional
- Handing off work to another developer
- Quick audit of recent modifications
Don't Use When
- Need a formal code review with quality feedback (use
ck-code-review) - Need to document changes in journals (use
ck-journal)
Execution
Review the current branch and most recent commits:
- Run
git logto see recent commit history on current branch - Run
git diffto see staged and unstaged changes - Run
git statusto see working tree state - Analyze all changes: what was modified, added, or removed
- Assess overall impact and quality
Report Format
## Recent Changes Summary
### Branch
[current branch name]
### Commits Reviewed
- [hash] [message] — [brief impact]
### What Changed
- **Modified:** [files and what changed]
- **Added:** [new files]
- **Removed:** [deleted files]
### Impact Assessment
[Overall quality and impact of changes]
### Notes
[Anything notable — potential issues, follow-up needed]
Important Rules
- Do NOT start implementing anything
- Analysis only — observe and report