build-and-compile

Installation
SKILL.md

Build & Compile

Strategies for building code and resolving dependency issues.

Build System Detection

Check for build files in order:

  • Makefilemake (read it first to understand targets)
  • CMakeLists.txtcmake -B build && cmake --build build
  • pyproject.toml / setup.pypip install -e .
  • package.jsonnpm install && npm run build
  • Cargo.tomlcargo build --release
  • go.modgo build ./...
  • No build system → compile directly (gcc, g++, rustc, etc.)

Compilation Strategies

Installs
1
GitHub Stars
972
First Seen
Jun 2, 2026
build-and-compile — vstorm-co/pydantic-deepagents