| name | dev-setup |
| description | Check and configure development-environment credentials and tools (GitHub CLI, git identity, Vercel/Netlify/Fly, npm/pnpm/bun, AWS/GCP/Azure) and report a status table with fix commands. Use when the user wants to verify or set up their dev tooling and logins. |
Dev Setup Skill
Check and configure development environment credentials and tools.
Instructions
When the user runs /dev-setup, check the status of common development tools and credentials.
Tools to Check
Version Control & Hosting:
gh auth status - GitHub CLI
git config user.name / git config user.email - Git identity
Deployment Platforms:
vercel whoami - Vercel
netlify status - Netlify
fly auth whoami - Fly.io
Package Managers:
npm whoami - npm registry
pnpm --version - pnpm
bun --version - bun
Cloud Providers:
aws sts get-caller-identity - AWS
gcloud auth list - Google Cloud
az account show - Azure
Output Format
Provide a clear status table:
Tool Status Action Needed
─────────────────────────────────────────
GitHub CLI ✓ Logged in
Vercel ✗ Not installed npm i -g vercel && vercel login
npm ✓ Logged in
Common Fix Commands
gh auth login
npm i -g vercel && vercel login
npm i -g netlify-cli && netlify login
npm login
Arguments
- No args: Full status check
github / vercel / netlify: Check specific tool
fix: Attempt to fix/install missing tools