firebase-cloud-functions
Use when calling callable functions (httpsCallable), passing data to server-side logic, handling function errors/timeouts, configuring regions, or testing with the Emulator Suite.
Install
npx skills add https://github.com/evanca/flutter-ai-rules/tree/main/skills/firebase-cloud-functions
claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install evanca-flutter-ai-rules@llmmart
git clone https://github.com/evanca/flutter-ai-rules.git
The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole evanca/flutter-ai-rules collection as a plugin from our marketplace. Git is the plain clone.
Skill manifest
Firebase Cloud Functions Skill
This skill defines how to correctly call Firebase Cloud Functions from Flutter applications.
When to Use
Use this skill when:
- Implementing callable Cloud Functions in a Flutter project.
- Passing structured data to server-side functions and processing results.
- Handling errors, timeouts, and retries for function calls.
- Configuring region-specific function deployments.
- Testing Cloud Functions locally with the Firebase Emulator Suite.
1. Setup and Configuration
flutter pub add cloud_functions
import 'package:cloud_functions/cloud_functions.dart';
// After Firebase.initializeApp():
final functions = FirebaseFunctions.instance;
- Initialize Firebase before using any Cloud Functions features.
- For region-specific deployments, specify the region:
final functions = FirebaseFunctions.instanceFor(region: 'europe-west1');
- Deploy callable functions to Firebase before attempting to call them from the Flutter app.
- Consider implementing App Check to prevent abuse of Cloud Functions.
2. Calling Functions
Use httpsCallable to reference a function, then call to invoke it:
final result = await FirebaseFunctions.instance
.httpsCallable('functionName')
.call(data);
- Pass data as a
Map— it is automatically serialized to JSON:
final result = await FirebaseFunctions.instance
.httpsCallable('addMessage')
.call({
"text": messageText,
"push": true,
});
- Access the result via the
dataproperty — it is automatically deserialized from JSON:
final responseData = result.data;
// Cast to expected type if needed:
final message = result.data as Map<String, dynamic>;
final status = message['status'] as String;
- Do not pass authentication tokens in function parameters — they are automatically included by the SDK.
- Keep function names consistent between client code and server-side implementations.
3. Error Handling
Always wrap function calls in try-catch and check for FirebaseFunctionsException:
try {
final result = await FirebaseFunctions.instance
.httpsCallable('functionName')
.call(data);
// Handle successful result
} on FirebaseFunctionsException catch (e) {
switch (e.code) {
case 'not-found':
// Function does not exist
break;
case 'permission-denied':
// User lacks permission
break;
case 'unavailable':
// Service temporarily unavailable — retry
break;
default:
debugPrint('Function error [${e.code}]: ${e.message}');
}
} catch (e) {
debugPrint('Unexpected error: $e');
}
- Handle network connectivity issues and timeouts appropriately.
- Provide meaningful error messages to users when function calls fail.
- Implement retry logic with exponential backoff for transient errors (
unavailable,deadline-exceeded).
4. Performance Optimization
Set a timeout appropriate to the expected execution time:
final callable = FirebaseFunctions.instance.httpsCallable(
'functionName',
options: HttpsCallableOptions(
timeout: const Duration(seconds: 30),
),
);
- Minimize the amount of data passed to and from functions to reduce latency.
- Use batch operations when possible to reduce the number of function calls.
- Consider client-side caching for frequently used function results.
- Account for cold starts for infrequently used functions.
- Implement proper loading states in the UI while waiting for function responses.
5. Testing and Development
Use the Firebase Emulator Suite for local development and testing:
FirebaseFunctions.instance.useFunctionsEmulator('localhost', 5001);
- Test functions with both valid and invalid inputs to ensure proper validation.
- Verify that functions handle authentication correctly.
- Test with different user roles and permissions to ensure proper access control.
- Implement unit tests for client-side function calling logic.
References
Files (flutter-ai-rules)
-
SKILL.md 4.4 KB
--- name: firebase-cloud-functions description: "Use when calling callable functions (httpsCallable), passing data to server-side logic, handling function errors/timeouts, configuring regions, or testing with the Emulator Suite." license: MIT --- # Firebase Cloud Functions Skill This skill defines how to correctly call Firebase Cloud Functions from Flutter applications. ## When to Use Use this skill when: * Implementing callable Cloud Functions in a Flutter project. * Passing structured data to server-side functions and processing results. * Handling errors, timeouts, and retries for function calls. * Configuring region-specific function deployments. * Testing Cloud Functions locally with the Firebase Emulator Suite. --- ## 1. Setup and Configuration ``` flutter pub add cloud_functions ``` ```dart import 'package:cloud_functions/cloud_functions.dart'; // After Firebase.initializeApp(): final functions = FirebaseFunctions.instance; ``` - Initialize Firebase before using any Cloud Functions features. - For region-specific deployments, specify the region: ```dart final functions = FirebaseFunctions.instanceFor(region: 'europe-west1'); ``` - Deploy callable functions to Firebase **before** attempting to call them from the Flutter app. - Consider implementing **App Check** to prevent abuse of Cloud Functions. --- ## 2. Calling Functions Use `httpsCallable` to reference a function, then `call` to invoke it: ```dart final result = await FirebaseFunctions.instance .httpsCallable('functionName') .call(data); ``` - Pass data as a `Map` — it is automatically serialized to JSON: ```dart final result = await FirebaseFunctions.instance .httpsCallable('addMessage') .call({ "text": messageText, "push": true, }); ``` - Access the result via the `data` property — it is automatically deserialized from JSON: ```dart final responseData = result.data; // Cast to expected type if needed: final message = result.data as Map<String, dynamic>; final status = message['status'] as String; ``` - **Do not** pass authentication tokens in function parameters — they are automatically included by the SDK. - Keep function names consistent between client code and server-side implementations. --- ## 3. Error Handling Always wrap function calls in `try-catch` and check for `FirebaseFunctionsException`: ```dart try { final result = await FirebaseFunctions.instance .httpsCallable('functionName') .call(data); // Handle successful result } on FirebaseFunctionsException catch (e) { switch (e.code) { case 'not-found': // Function does not exist break; case 'permission-denied': // User lacks permission break; case 'unavailable': // Service temporarily unavailable — retry break; default: debugPrint('Function error [${e.code}]: ${e.message}'); } } catch (e) { debugPrint('Unexpected error: $e'); } ``` - Handle network connectivity issues and timeouts appropriately. - Provide meaningful error messages to users when function calls fail. - Implement retry logic with exponential backoff for transient errors (`unavailable`, `deadline-exceeded`). --- ## 4. Performance Optimization Set a timeout appropriate to the expected execution time: ```dart final callable = FirebaseFunctions.instance.httpsCallable( 'functionName', options: HttpsCallableOptions( timeout: const Duration(seconds: 30), ), ); ``` - Minimize the amount of data passed to and from functions to reduce latency. - Use batch operations when possible to reduce the number of function calls. - Consider client-side caching for frequently used function results. - Account for **cold starts** for infrequently used functions. - Implement proper loading states in the UI while waiting for function responses. --- ## 5. Testing and Development Use the Firebase Emulator Suite for local development and testing: ```dart FirebaseFunctions.instance.useFunctionsEmulator('localhost', 5001); ``` - Test functions with both valid and invalid inputs to ensure proper validation. - Verify that functions handle authentication correctly. - Test with different user roles and permissions to ensure proper access control. - Implement unit tests for client-side function calling logic. --- ## References - [Cloud Functions for Firebase Flutter documentation](https://firebase.google.com/docs/functions/callable?platform=flutter) - [Firebase Emulator Suite](https://firebase.google.com/docs/emulator-suite)
Comments (0)
Sign in to join the conversation.
Reviews (0)
No reviews yet.
No comments yet.