Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
patricio0312rev avatar

Workspace Setup

  • 2 installs
  • 9 repo stars
  • Updated January 25, 2026
  • patricio0312rev/workspaces

Runs setup scripts for one or all workspace projects, including dependency install, env configuration, and database migrations from WORKSPACE.md.

About

Runs per-project setup scripts covering dependency installation, environment configuration and database migrations defined in WORKSPACE.md. A developer uses it when bootstrapping projects in a multi-repo workspace.

  • Parses Setup Scripts section from WORKSPACE.md
  • Runs install, env copy and migration commands per project

Workspace Setup by the numbers

  • 2 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #1,139 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/patricio0312rev/workspaces --skill workspace-setup

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars9
Last updatedJanuary 25, 2026
Repositorypatricio0312rev/workspaces

What it does

Runs setup scripts for one or all workspace projects, including dependency install, env configuration, and database migrations from WORKSPACE.md.

Files

SKILL.mdMarkdownGitHub ↗

Skill: Workspace Setup

Description

Run setup scripts for one or all projects in the workspace, including dependency installation, environment configuration, and database migrations.

Arguments

  • [project] - Name of a specific project to set up
  • all - Set up all projects (default)

Instructions

When the user wants to set up projects:

Step 1: Detect Workspace

Identify the current workspace and load the configuration.

Step 2: Parse Setup Scripts

Read the ## Setup Scripts section from WORKSPACE.md:

## Setup Scripts
api: npm install && cp .env.example .env && npm run db:migrate
admin: npm install && cp .env.example .env
homepage: npm install
mobile: npm install && cd ios && pod install

Step 3: Run Setup for Each Project

For each project (or the specified one):

1. Check if project is cloned - Skip if not 2. Run setup script in the project directory 3. Report progress

Output Format

🔧 Setting up workspace projects...

Setting up api...
  → npm install
    Installing dependencies... done
  → cp .env.example .env
    ✓ Environment file created
  → npm run db:migrate
    Running migrations... done
  ✓ api setup complete

Setting up admin...
  → npm install
    Installing dependencies... done
  ✓ admin setup complete

Summary:
  • Set up: api, admin
  • Skipped: homepage (no setup script)
  • Failed: 0

Post-Setup

After successful setup, suggest:

Run '/workspaces:start all' to start the services.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.