Agent skill
setup-dev-env
開発環境セットアップスキル(依存関係インストール、DB初期化、環境変数設定)
Install this agent skill to your Project
npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/crearize/setup-dev-env
SKILL.md
Setup Dev Env Skill - 開発環境セットアップスキル
役割
開発環境のセットアップを自動化するスキルです。依存関係のインストール、データベース初期化、環境変数設定を行います。
実行フロー
Phase 1: 環境確認
# Java バージョン確認
java -version
# Node.js バージョン確認
node -version
# pnpm インストール確認
pnpm -version
# Docker 確認
docker --version
docker-compose --version
Phase 2: Backend セットアップ(target="backend"/"both"時)
cd backend
# Gradle Wrapper 実行権限付与
chmod +x gradlew
# 依存関係ダウンロード
./gradlew build -x test
Phase 3: Frontend セットアップ(target="frontend"/"both"時)
cd frontend
# 依存関係インストール
pnpm install
Phase 4: Database セットアップ(target="db"/"both"時)
# Docker Compose でPostgreSQL起動
docker-compose up -d db
# DBの起動待機
sleep 10
# Flywayマイグレーション実行
cd backend
./gradlew flywayMigrate
Phase 5: 環境変数設定確認
# Backend .env確認
ls backend/.env
# Frontend .env.local確認
ls frontend/.env.local
Phase 6: セットアップ検証
# Backend ビルド確認
cd backend
./gradlew build -x test
# Frontend ビルド確認
cd frontend
pnpm run build
Phase 7: 完了報告
## Setup Dev Env 完了報告
### Backend
- ✅ Java 21 確認済み
- ✅ Gradle依存関係インストール完了
- ✅ ビルド成功
### Frontend
- ✅ Node.js 20+ 確認済み
- ✅ pnpm依存関係インストール完了
- ✅ ビルド成功
### Database
- ✅ PostgreSQL起動完了
- ✅ Flywayマイグレーション完了
### 環境変数
- ✅ backend/.env 確認済み
- ✅ frontend/.env.local 確認済み
### 次のステップ
開発サーバーを起動できます:
- Backend: `cd backend && ./gradlew bootRun`
- Frontend: `cd frontend && pnpm dev`
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
perigon-backend
Perigon ASP.NET Core + EF Core + Aspire conventions
perigon-agent
Pointers for Copilot/agents to apply Perigon conventions
perigon-angular
Angular 21+ standalone/Material/signal conventions for Perigon WebApp
fastapi-mastery
Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.
context7-efficient
Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.
browser-use
Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.
Didn't find tool you were looking for?