What problem does it solve? Before changing code, developers need to understand how a codebase works, but ad-hoc exploration often misses dependencies, conventions, and constraints. This Skill provides a structured, read-only investigation workflow that produces a complete fact report without touching any files. ## Core Features & Use Cases - Phased Fact-Gathering: Loads context from entrypoints, discovers patterns via grep and import-chain tracing, and reports findings in three clear phases. - Structured Fact Report: Outputs files found, patterns used, dependencies in both directions, and constraints discovered, always with concrete file paths. - Read-Only Guarantee: Explicitly forbidden from creating plans, writing code, or refactoring, making it safe to run before any decision. - Use Case: Before refactoring a payment module, run an investigation to map every file involved, trace its call sites, and surface locked APIs or shared types that constrain the change. ## Quick Start Ask the agent to investigate how the authentication flow works in this repository and list all files and dependencies involved.