What problem does it solve?
This skill automates the creation of self-contained AI skill units for C++20 language features, standard library components, remote third-party libraries, and local C++ projects, eliminating manual extraction and summarization of APIs and documentation.
Core Features & Use Cases
- Documentation-driven skill generation: Consume cppreference or official API pages to produce llms-ready descriptions and skill scaffolding.
- Local header scanning: Parse header files and Doxygen-style comments in local libraries to infer public APIs and constraints for private/internal skills.
- Third-party library support: Extract APIs from remote library docs (e.g., fmt) and generate focused skills for common tasks like formatting, ranges, and coroutines.
- Use Case: Convert the std::ranges documentation or a local include/ directory into a reusable skill that understands APIs, examples, and constraints.
Quick Start
Create a C++20 skill for std::ranges using the https://en.cppreference.com/w/cpp/ranges URL and produce the llms.txt for subsequent skill generation.