scorpiox-debug Debug

Linux x64 Linux ARM64 macOS ARM64 Windows x64

Description

Debug information tool for scorpiox sessions — inspect environment variables, active configurations, session state, platform details, and runtime diagnostics. Essential for troubleshooting scorpiox installations and reporting issues.

Usage Examples

This tool takes no flags or options. Run it directly to display debug information for the current session.
Basic — print all session debug info
$ scorpiox-debug
Pipe debug output to a file for sharing
$ scorpiox-debug > /tmp/debug-report.txt
Include in a bug report
$ echo "## Debug Info" >> report.md
$ echo '```' >> report.md
$ scorpiox-debug >> report.md
$ echo '```' >> report.md
Quick check — verify scorpiox is working
$ scorpiox-debug && echo "scorpiox is healthy"
Compare debug output between sessions
$ scorpiox-debug > /tmp/before.txt
# ... make changes ...
$ scorpiox-debug > /tmp/after.txt
$ diff /tmp/before.txt /tmp/after.txt
Example output
scorpiox-debug v1.0 ──────────────────────────────── SCORPIOX_HOME : /home/user/.scorpiox SESSION_ID : sx_a3f8c1d2 PLATFORM : linux-x64 BINARY_PATH : /usr/local/bin/scorpiox CONFIG_FILE : /home/user/.scorpiox/config.json LOG_DIR : /home/user/.scorpiox/logs PROVIDER : claude_code MODEL : opus TEMP_DIR : /tmp/scorpiox-session-a3f8c1d2 UPTIME : 4m 32s MEMORY_USAGE : 12.4 MB ────────────────────────────────

Output Details

Source & Build

Source File
scorpiox/scorpiox-debug.c
Lines of Code
386
Dependencies
libsxutil

Related Tools