smithery.ai

workspace-setup

Initialize development environment for a project. Use when setting up a new project, onboarding a developer, or configuring dependencies.

First seen Apr 7, 2026

Installation

$ npx skills add https://smithery.ai

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.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

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 879 B
  • docs SUMMARY.md 160 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Workspace Setup

Set up a consistent development environment.

Common Setups

Node.js

npm install
npm run dev

Python

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Rust

cargo build
cargo test

Docker

docker-compose up -d

Checklist

  • Dependencies installed
  • .env configured (from .env.example)
  • Dev server starts
  • Tests pass

Environment Template

# .env.example
DATABASE_URL=postgresql://user:pass@localhost:5432/db
API_KEY=your-key
DEBUG=true

Tips

  • Document setup in README
  • Use .env.example as template
  • Record issues in wiki/experience/