What problem does it solve? Navigating the large SRS and Oryx codebases is error-prone: broad searches across trunk/src/, cmd/, or oryx/platform/ waste time and surface irrelevant files. This Skill routes each code task to the smallest trusted module map so reading, modifying, and verifying code stays scoped and accurate. ## Core Features & Use Cases - Reference Router: Classifies tasks into six code areas (C++ media server, Go proxy server, browser clients, Docker build images, testing, Oryx) and loads only the matching reference map. - Trusted Navigation Scope: Each reference lists exact modules and files, forbidding broad greps of repository roots and preventing ad-hoc route discovery. - Verification Guidance: Maps unit, black-box, E2E, integration, and benchmark tests to the correct binaries and commands for each codebase. - Use Case: When asked to fix an HLS playback bug in the C++ server, the Skill routes to references/cpp-server.md, identifies app_hls and app_fragment as the responsible modules, and points to the HLS black-box test for verification. ## Quick Start Ask the assistant to locate and fix a bug in the SRS WebRTC publish path, and it will route through the code map to the responsible modules and tests.