Firebase project workflows including setup, features, debugging, and validation.
/plugin marketplace add 2389-research/claude-plugins
/plugin install firebase-development@2389-researchSkills for Firebase development following 2389 patterns:
firebase-development-- main orchestrator skill that routes to specific sub-skillsfirebase-development:project-setup-- initialize new Firebase projectsfirebase-development:add-feature-- add features to existing projectsfirebase-development:debug-- debug Firebase issuesfirebase-development:validate-- validate project structure
This plugin supports multi-hosting (multiple sites or single), authentication via custom API keys or Firebase Auth or both, Cloud Functions organized as Express apps or domain-grouped or individual files, and server-write-only vs client-write security models.
Development is emulator-first -- always test locally before deploying. Tooling is TypeScript, vitest, and biome.
// Cloud Function with domain grouping
export const users = {
onCreate: onDocumentCreated('users/{userId}', async (event) => {
// Implementation
}),
onUpdate: onDocumentUpdated('users/{userId}', async (event) => {
// Implementation
})
};- Design Document
- Implementation Plan
- Examples:
If these Firebase workflows saved you from emulator hell, a ⭐ helps us know it's landing.
Built by 2389 · Part of the Claude Code plugin marketplace