Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Building, compiling, and resolving dependency issues across languages
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-09 | ✗→✓ | ▲ Improved | -1% | 0% |
| case-21 | ✓→✓ | = Same ✓ | -5% | 0% |
| case-03 | ✓→✓ | = Same ✓ | -4% | 0% |
| case-04 | ✓→✓ | = Same ✓ | -23% | 0% |
| case-05 | ✓→✓ | = Same ✓ | -20% | 0% |
Strategies for building code and resolving dependency issues.
Check for build files in order:
Makefile → make (read it first to understand targets)CMakeLists.txt → cmake -B build && cmake --build buildpyproject.toml / setup.py → pip install -e .package.json → npm install && npm run buildCargo.toml → cargo build --releasego.mod → go build ./...gcc, g++, rustc, etc.)-O2 -Wall -lm -lpthreadapt-get install lib<name>-dev-lfoo -lbar -lm)pip install -e . for editable installsrequirements.txt, pyproject.tomlLD_LIBRARY_PATH, PYTHONPATHapt-cache search <name>, pip search <name>| Error | Likely Cause | Fix | |-------|-------------|-----| | fatal error: foo.h: No such file | Missing dev headers | apt-get install libfoo-dev | | undefined reference to | Missing library at link time | Add -lfoo flag | | No module named 'foo' | Missing Python package | pip install foo | | command not found: make | Build tools missing | apt-get install build-essential | | version 'GLIBC_X.Y' not found | Binary built for newer system | Rebuild from source |
Other measured skills in the registry, with their headline benchmark lift.