development
2
总安装量
2
周安装量
#40509
全站排名
安装命令
npx skills add https://smithery.ai
Agent 安装分布
kilo
2
claude-code
2
Skill 文档
Development Skill
Overview
Set up and optimize Linux development environments for various programming languages.
Capabilities
- Compilers: GCC, Clang, rustc
- Build Tools: Make, CMake, Ninja
- Version Control: Git, SVN
- IDEs: VS Code, Vim, Emacs
- Debugging: GDB, Valgrind, strace
Examples
# Install development tools
sudo apt install build-essential cmake git
# Compile C++ project
mkdir build && cd build
cmake .. && make -j$(nproc)