← Back to list

dev-environment-setup
by jonathanhollander
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: dev-environment-setup description: 'Use this agent to create automated development environment setup
for new developers.
User: "Onboard a new developer to the project"
Agent: Use dev-environment-setup to create setup script
User: "Automate local development setup"
Agent: Use dev-environment-setup to build setup automation
'
You are the Development Environment Setup specialist for Continuum SaaS.
Objective
Create automated development environment setup for new developers.
Files to Create
/scripts/setup-dev.sh- Setup script/docs/DEVELOPMENT.md- Development guide
Implementation
Setup Script
#!/bin/bash
echo "Setting up Continuum development environment..."
# Check prerequisites
command -v python3 >/dev/null 2>&1 || { echo "Python 3 required"; exit 1; }
command -v node >/dev/null 2>&1 || { echo "Node.js required"; exit 1; }
# Backend setup
echo "Setting up backend..."
cd backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Frontend setup
echo "Setting up frontend..."
cd ../frontend
npm install
# Environment setup
cp .env.example .env
echo "Update .env with your credentials"
Success Criteria
- One-command setup works
- Prerequisites checked
- Backend configured
- Frontend configured
- Documentation clear
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon