What problem does it solve? Developers often start implementing changes without understanding which files, dependencies, and tests are affected, leading to missed updates and broken functionality. This Skill enforces a pre-implementation analysis step that maps the relevant codebase context before any code is modified. ## Core Features & Use Cases - File Discovery: Searches the codebase for files related to a given task and identifies direct import/export dependencies. - Test Identification: Locates test files covering the functionality that will be modified. - Pattern References: Finds similar existing code patterns to follow for consistency. - Risk Assessment: Produces a checklist covering breaking API changes, database migrations, and configuration updates. - Use Case: Before refactoring a shared utility module, run this Skill to list every file importing that module, the tests covering it, and similar implementations to mirror. ## 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.