smithery/pluginagentmarketplace

development

Linux development environment - compilers, build tools, IDEs

Installation

$ npx skills add smithery/pluginagentmarketplace --skill development

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/pluginagentmarketplace · top by installs.

npx skills add smithery/pluginagentmarketplace

Browse all from smithery/pluginagentmarketplace

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 664 B
  • docs SUMMARY.md 79 B

History

  1. First recorded snapshot · 0 installs

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)