plugins/firebase-emulator/skills/firebase-emulator-workflow/SKILL.md
Firebase Emulator Suite の起動・停止・管理ワークフロー。「エミュレーター」「Firebase」「Firestore」「Auth」「ローカル開発」などのキーワードで自動適用。
npx skillsauth add no-problem-dev/claude-code-plugins firebase-emulator-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Firebase Emulator Suite のローカル開発環境管理ワークフロー。
| スキル | 用途 | 使いどころ | |--------|------|-----------| | emulator-control | 起動・停止・状態確認 | 「エミュレーター起動」「停止」「状態」 |
開発開始 → emulator-control(起動)
↓
iOS / Backend 開発
↓
開発終了 → emulator-control(停止)
| 変数 | 説明 | デフォルト |
|------|------|-----------|
| FIREBASE_PROJECT_ID | プロジェクトID | 自動検出 |
| EMULATOR_PORT_FIRESTORE | Firestore ポート | 8090 |
| EMULATOR_PORT_AUTH | Auth ポート | 9099 |
| EMULATOR_PORT_STORAGE | Storage ポート | 9199 |
| EMULATOR_PORT_UI | UI ポート | 4000 |
以下の順序で Firebase 設定を検出:
FIREBASE_DIRfirebase.jsonfirebase/ サブディレクトリ起動後、ブラウザで確認:
http://localhost:4000
let settings = Firestore.firestore().settings
settings.host = "localhost:8090"
settings.isSSLEnabled = false
Firestore.firestore().settings = settings
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
Error: No Firebase project directory found
対処: firebase init でプロジェクトを初期化
content-media
Swift Design Systemを使用したiOS UI実装スキル。デザイントークン、UIコンポーネント(Button、Card、Chip、FAB、Snackbar、Picker等15種)、レイアウトパターンのベストプラクティスを提供。「デザイン」「UI」「テーマ」「カラー」「タイポグラフィ」「スペーシング」「ボタン」「カード」「FAB」「Snackbar」「Picker」「SwiftUI」「DesignSystem」などで自動適用。
content-media
UIの視覚的差分を検出・比較する。デザイン変更前後の比較、リファレンスとの差分確認時に使用。「デザイン比較」「UI差分」「design diff」「design compare」「ビフォーアフター」「見た目の違い」などのキーワードで自動適用。
testing
SwiftUI ViewのDesign System準拠性を監査する。既存UIのレビュー、デザインチェック時に使用。「デザインレビュー」「UIチェック」「design audit」「デザイン監査」「UI監査」「デザインチェック」「トークン確認」などのキーワードで自動適用。
tools
デザインシステム準拠のSwiftUIコンポーネントを生成する。新しいUIパーツの作成、コンポーネント生成時に使用。「コンポーネント作成」「新しいUI」「パーツ作成」「component generate」「UIパーツ」「新規コンポーネント」などのキーワードで自動適用。