development
SKILL.md
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)
Weekly Installs
2
Repository
smithery/aiFirst Seen
12 days ago
Security Audits
Installed on
kilo2
claude-code2