current
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Quick Example
/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