Helps you read C++ template errors from the bottom up, migrate from SFINAE to concepts, and figure out why your compile times are slow. It covers requires-clauses, concept constraints, and profiling instantiation depth with Templight or ClangBuildAnalyzer. The skill is practical about the SFINAE versus concepts tradeoff: concepts give cleaner errors and faster compiles but need C++20. Good for when you're staring at a 300-line error message or watching your build crawl because of recursive template instantiations. Also includes flags like -ftemplate-backtrace-limit to cut the noise.
npx skills add https://github.com/mohitmishra786/low-level-dev-skills --skill cpp-templates