agentsclimarketplace

Setup dev env

Skill aiskillstore/marketplace/skills/crearize/setup-dev-env

開発環境セットアップスキル(依存関係インストール、DB初期化、環境変数設定)From its SKILL.md

Install
npx -y skills add aiskillstore/marketplace --skill setup-dev-env

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.1 KB, 748 tokens by cl100k_base, as published. Nobody here has run it

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`

What ships with it: 1 file

37.2 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.