# Development

> Linux development environment - compilers, build tools, IDEs

- Skill: `pluginagentmarketplace/development` (Agent Skill, multi-file: 10 files)
- Install (CLI): `npx skillmds@latest add pluginagentmarketplace/development`
- Raw SKILL.md: https://api.skillmd.com/api/skills/pluginagentmarketplace/development/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: pluginagentmarketplace (https://skillmd.com/u/pluginagentmarketplace)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/pluginagentmarketplace/development

---


# 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

```bash
# Install development tools
sudo apt install build-essential cmake git

# Compile C++ project
mkdir build && cd build
cmake .. && make -j$(nproc)
```


