What problem does it solve? Reading the full Nodefony server log wastes context and time because it contains thousands of lines of 200 OK requests, Rollup output, and debug noise. This Skill filters /tmp/nodefony-server.log down to only the ERROR, CRITIC, TypeError, SyntaxError, and stack trace lines needed to diagnose a failure. ## Core Features & Use Cases - Surgical log filtering: Strips ANSI color codes and keeps only error lines, non-2xx requests, or CRITIC entries with surrounding stack context. - Diagnostic heuristics: Maps common log patterns (SyntaxError on exports, EADDRINUSE, ECONNREFUSED, repeated 404s) to their probable causes and fixes. - Safe operations guidance: Warns against killing ports with lsof | xargs kill -9 and directs to nodefony stop instead. - Use Case: An integration test fails with a 500. Run the filtered tail command to instantly see the CRITIC line and its stack trace, identify a stale dist build, rebuild the module, and restart the server. ## Quick Start Ask the assistant to show the recent server errors from the Nodefony log to find out why the test failed.