在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
build-and-compile
// Building, compiling, and resolving dependency issues across languages
$ git log --oneline --stat
stars:827
forks:91
updated:2026年2月23日 22:30
SKILL.md
// Building, compiling, and resolving dependency issues across languages
Systematic code review for bugs, security, style, and performance
Working with diverse data formats: binary, text, structured, and custom
Systematic exploration of unknown environments before starting work
Git operations: commits, branches, PRs, and conflict resolution
Writing efficient code that handles large data and tight constraints
Refactor code to improve structure and maintainability
| name | build-and-compile |
| description | Building, compiling, and resolving dependency issues across languages |
| tags | ["build","compile","dependencies","benchmark"] |
| version | 1.0.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 |