Quick Example
bash
/skill:session:current # Output: # Active Session: 2026-01-27-1430-fyp-interim-report # Current Time: 16:52:30 # Files Modified: 3 files changed # TODO Status: 12 items
Live Project Status
Current Time: !date '+%H:%M:%S'
Active Session: !cat .claude/sessions/.current-session 2>/dev/null || echo "None"
Files Modified: !git status --short 2>/dev/null || echo "Not in git repo"
TODO Status: !cat TODO.md 2>/dev/null | grep -E '^\- \[(x| )\]' | wc -l || echo "No TODO.md" items
Show the current session status by:
- •Check if
.claude/sessions/.current-sessionexists - •If no active session, inform user and suggest starting one
- •If active session exists:
- •Show session name and filename
- •Calculate and show duration since start
- •Show last few updates
- •Show current goals/tasks
- •Remind user of available commands
Keep the output concise and informative.