
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-setupAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 9 |
| Last updated | January 25, 2026 |
| Repository | patricio0312rev/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: 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 upall- 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 installStep 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: 0Post-Setup
After successful setup, suggest:
Run '/workspaces:start all' to start the services.