What problem does it solve? Developers and AI assistants often write custom code for problems that a framework feature or a well-maintained package already solves, leading to unnecessary maintenance burden, security gaps, and outdated patterns copied from training data. ## Core Features & Use Cases - Stack Detection: Reads project manifests like package.json, *.csproj, go.mod, and requirements.txt to pin the exact framework version before recommending anything. - Registry and Documentation Search: Searches package registries (NuGet, npm, PyPI) and fetches current official documentation via WebSearch, WebFetch, or the ctx7 CLI instead of relying on memory. - Decision Hierarchy: Ranks solutions as built-in framework feature first, official package second, and custom code only as a last resort. - Use Case: When asked to add retry logic to HTTP calls in a .NET project, the skill checks the project files, finds Polly on NuGet, reads its official docs, and implements the recommended pattern with the install command. ## Quick Start Ask the assistant to implement a feature such as logging enrichment or health checks and require it to check for an official package or built-in framework feature before writing any custom code.