update
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Quick Example
/session:update Completed all database schema validations and created migration scripts
# Session updated at 2026-01-27 14:45:10
# Active session: 2026-01-27-0945-ml-assignment-review.md
Update Context
Timestamp: !date '+%Y-%m-%d %H:%M:%S'
Active Session: !cat .claude/sessions/.current-session 2>/dev/null || echo "None"
Git Snapshot:
- Changes: !
git status --porcelain 2>/dev/null | wc -l || echo "0"files - Branch: !
git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "Not in git repo" - Last commit: !
git log -1 --oneline 2>/dev/null || echo "No commits"
TODO Progress: !cat TODO.md 2>/dev/null | grep -c '^\- \[x\]' || echo "0" completed