What problem does it solve? Making code changes without understanding the surrounding codebase leads to broken imports, missed test updates, and unintended side effects. This Skill forces a pre-implementation analysis step that maps every file a task touches before any code is written. ## Core Features & Use Cases - Dependency Discovery: Searches the codebase for files related to the task and identifies direct import/export relationships. - Test and Pattern Identification: Locates related test files and similar existing code patterns to follow as references. - Structured Risk Output: Produces a Markdown report with tables for files to modify, dependencies, tests, reference patterns, and a risk checklist covering breaking API changes, migrations, and configuration updates. - Use Case: Before refactoring a shared utility module, run this Skill to list every consumer of that module, the tests covering it, and whether the change breaks a public API. ## Quick Start Ask the AI to generate a context map for your task, for example: create a context map before adding pagination to the user list endpoint.