From session-tracker
Use when user asks to reset, restart, or zero out the session timer. Trigger phrases include "reset timer", "restart session time", "reiniciar tempo", "zerar timer".
How this skill is triggered — by the user, by Claude, or both
Slash command
/session-tracker:reset-sessionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Resets the session elapsed time counter by overwriting the timestamp file with the current time.
Resets the session elapsed time counter by overwriting the timestamp file with the current time.
Run this command (replace $CLAUDE_SESSION_FILE with the path from the SessionStart hook output):
if [ -f "$CLAUDE_SESSION_FILE" ]; then
echo "$(date +%s)" > "$CLAUDE_SESSION_FILE"
# Also clear active/idle event history so the new window starts clean.
: > "$(dirname "$CLAUDE_SESSION_FILE")/events.log"
echo "Session timer reset at $(date '+%H:%M')"
else
echo "Session file not found - session-tracker hook may not be active"
fi
Inform the user that the session timer has been reset and the elapsed time now starts from zero.
npx claudepluginhub aguinaldotupy/claude-session-tracker --plugin session-trackerGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.