css-development
v1.0.0CSS development workflows with Tailwind composition, semantic naming, and dark mode by default
Firebase project workflows including setup, features, debugging, and validation
/plugin install firebase-development@2389-research
Full plugin documentation and usage guide
Firebase project workflows including setup, features, debugging, and validation.
/plugin marketplace add 2389-research/claude-plugins
/plugin install firebase-development@2389-research
Skills 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 structureThis 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
})
};
Get started in seconds
/plugin marketplace add 2389-research/claude-plugins
/plugin install firebase-development
Skills auto-trigger when relevant