-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
Jonathan D.A. Jewell edited this page Mar 28, 2026
·
1 revision
just doctor # Diagnose all issues
just heal # Auto-repair common problemslsof -i :8000 # Find what's using it
kill <PID> # Kill the process
deno task dev # Restartnpx rescript clean && npx rescript buildEnsure Gossamer is built:
cd ~/Documents/hyperpolymath-repos/gossamer
cargo build --releasesystemctl --user start verisimdb-007 # Start the instance
curl http://localhost:8094/health # Verify health# Check BoJ server status
curl http://localhost:3007/health
# Restart if needed
cd ~/Documents/hyperpolymath-repos/boj-server
deno task start- Open the Wiring Inspector panel
- Find the broken panel and check its obligations
- Fix the failing constraint
- Re-run verification: the PCC will re-evaluate
just test # Run all tests
deno test --filter "panel" # Run specific panel tests- Check Vexometer readings — high friction may indicate too many panels open
- Close unused panels
- Check VeriSimDB query performance:
curl http://localhost:8094/api/v1/metrics
- ReScript build artifacts can grow large:
npx rescript clean - Check for leaking event listeners in PanelBus
- Monitor with:
deno task dev --inspect
just help-me # Opens feedback channel with diagnostic contextOr file an issue: https://github.com/hyperpolymath/panll/issues/new