current

📁 cadrianmae/claude-marketplace 📅 1 day ago
1
总安装量
1
周安装量
#76657
全站排名
安装命令
npx skills add https://github.com/cadrianmae/claude-marketplace --skill current

Agent 安装分布

amp 1
cline 1
opencode 1
cursor 1
continue 1
kimi-cli 1

Skill 文档

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


Show the current session status by:

  1. Check if .claude/sessions/.current-session exists
  2. If no active session, inform user and suggest starting one
  3. 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.