Development

Linux development environment - compilers, build tools, IDEs

pluginagentmarketplace d72ef50 10 files · 17.9 KB Updated

File contents

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)

pluginagentmarketplace/custom-plugin-linux/tree/main/skills/development commit d72ef5033f

Frequently asked questions

npx skillmds@latest add pluginagentmarketplace/development