Back to list
no-problem-dev

firebase-emulator-workflow

by no-problem-dev

Claude Code プラグイン集 - iOS/Go開発、Firebase Emulator、リリース自動化、通知ツール

3🍴 0📅 Jan 1, 2026

SKILL.md


name: firebase-emulator-workflow description: Firebase Emulator Suiteの起動・停止・管理ワークフロー。「エミュレーター」「Firebase」「Firestore」「Auth」「ローカル開発」などのキーワードで自動適用。

Firebase Emulator Workflow

Firebase Emulator Suite のローカル開発環境管理ワークフロー。

コマンド一覧

コマンド用途
/firebase-emulator:emulator-startエミュレーター起動(バックグラウンド)
/firebase-emulator:emulator-stopエミュレーター停止
/firebase-emulator:emulator-status状態確認

推奨ワークフロー

開発開始 → emulator-start(バックグラウンド起動)
    ↓
iOS/Backend 開発
    ↓
開発終了 → emulator-stop(リソース解放)

環境変数

変数説明デフォルト
FIREBASE_PROJECT_IDプロジェクトID自動検出
EMULATOR_PORT_FIRESTOREFirestore ポート8090
EMULATOR_PORT_AUTHAuth ポート9099
EMULATOR_PORT_STORAGEStorage ポート9199
EMULATOR_PORT_UIUI ポート4000

ディレクトリ検出

以下の順序で Firebase 設定を検出:

  1. 環境変数 FIREBASE_DIR
  2. カレントディレクトリの firebase.json
  3. firebase/ サブディレクトリ

Emulator UI

起動後、ブラウザで確認:

http://localhost:4000

アプリからの接続

iOS (Swift)

let settings = Firestore.firestore().settings
settings.host = "localhost:8090"
settings.isSSLEnabled = false
Firestore.firestore().settings = settings

Go Backend

os.Setenv("FIRESTORE_EMULATOR_HOST", "localhost:8090")
os.Setenv("FIREBASE_AUTH_EMULATOR_HOST", "localhost:9099")

よくある問題

ポートが既に使用中

Port 8090 is already in use

対処: 既存のプロセスを終了

lsof -ti :8090 | xargs kill -9

firebase.json が見つからない

Error: No Firebase project directory found

対処: firebase init でプロジェクトを初期化

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