Guide for building the tool when asked by the user or testing a code change that requires a new build of the tool
80
—
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
To build the tool, follow these steps:
Make sure the clang++ compiler is available on your system. You can check this by running clang++ --version in your terminal. The current supported version is 19.
If not available, a conda enviroment like the following can be loaded:
source ~/.bashrc
conda activate tutorial_envMove to the directory build inside the project root.
If the build directory does not exist, create it and configure it like this:
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=./install ..make -j 4make installexport PATH=$PATH:/path/to/install/bin875a03e
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.