debug
Installation
SKILL.md
Debug Skill
Add structured logging to track down bugs. Uses a local log file in /tmp and an optional HTTP server for browser-side logging.
Setup
1. Generate unique session ID and log file
DEBUG_ID=$(date +%s | tail -c 6)
LOG_FILE="/tmp/debug-${DEBUG_ID}.log"
touch $LOG_FILE
echo "Log file: $LOG_FILE"
2. Start the log server (if browser logging needed)
Related skills