Claude Cursor Skill

firebase-storage

Use when setting up Storage, uploading/downloading files, managing metadata, handling errors, or applying security rules.

LLM Mart · 0 points · 15 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download evanca-flutter-ai-rules-skills_firebase-storage-7d226d8.zip · 1 KB
Part of evanca/flutter-ai-rules — 37 skills

Install

skills CLI npx skills add https://github.com/evanca/flutter-ai-rules/tree/main/skills/firebase-storage
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install evanca-flutter-ai-rules@llmmart
Git 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 Storage Skill

This skill defines how to correctly use Firebase Cloud Storage in Flutter applications.

When to Use

Use this skill when:

  • Setting up Cloud Storage in a Flutter project.
  • Uploading or downloading files.
  • Managing file metadata.
  • Handling Storage errors and monitoring upload progress.

1. Setup and Configuration

flutter pub add firebase_storage
import 'package:firebase_storage/firebase_storage.dart';

final storage = FirebaseStorage.instance;
// Or specify a bucket explicitly:
// final storage = FirebaseStorage.instanceFor(bucket: "gs://BUCKET_NAME");
  • Firebase Storage requires the Blaze (pay-as-you-go) plan.
  • Run flutterfire configure to update your Firebase config with the default Storage bucket name.

Security note: By default, a Cloud Storage bucket requires Firebase Authentication for any action. Configuring public access may also make App Engine files publicly accessible — restrict access again when you set up Authentication.


2. File Operations

Create a reference:

final storageRef = FirebaseStorage.instance.ref();
final fileRef = storageRef.child("uploads/file.jpg");

Upload:

final uploadTask = fileRef.putFile(file);
final snapshot = await uploadTask;
final downloadUrl = await snapshot.ref.getDownloadURL();

Download (in-memory):

final data = await fileRef.getData();

Download URL:

final downloadUrl = await fileRef.getDownloadURL();

Delete:

await fileRef.delete();

3. Metadata Management

Get metadata:

final metadata = await fileRef.getMetadata();
print('Content type: ${metadata.contentType}');
print('Size: ${metadata.size}');

Update metadata:

final newMetadata = SettableMetadata(
  contentType: "image/jpeg",
  customMetadata: {'uploaded_by': 'user123'},
);
await fileRef.updateMetadata(newMetadata);

Use custom metadata to store additional key/value pairs with your files.


4. Error Handling

Use try-catch with FirebaseException. Key error codes:

Code Meaning
storage/object-not-found File doesn't exist at the reference
storage/bucket-not-found No bucket configured for Cloud Storage
storage/project-not-found No project configured for Cloud Storage
storage/quota-exceeded Storage quota exceeded
storage/unauthenticated User needs to authenticate
storage/unauthorized User lacks permission
storage/retry-limit-exceeded Operation timeout exceeded
  • For quota-exceeded on the Spark plan, upgrade to Blaze.
  • Implement retry logic for network-related errors and timeouts.

5. Performance and Best Practices

Monitor upload progress:

final uploadTask = fileRef.putFile(file);
uploadTask.snapshotEvents.listen((TaskSnapshot snapshot) {
  print('Progress: ${(snapshot.bytesTransferred / snapshot.totalBytes) * 100}%');
});
  • Cancel uploads with uploadTask.cancel().
  • Pause / resume with uploadTask.pause() and uploadTask.resume().
  • Optimize file sizes before upload to reduce costs and improve performance.
  • Use Cloud Storage with Firestore for comprehensive data management.
  • Use the Firebase Local Emulator Suite for local development and testing.

6. Security

  • Use Firebase Security Rules to control access to files.
  • Combine Storage rules with Firebase Authentication for user-based access control.
  • Test security rules thoroughly before deploying to production.

References

Files (flutter-ai-rules)
  • SKILL.md 4 KB
    ---
    name: firebase-storage
    description: "Use when setting up Storage, uploading/downloading files, managing metadata, handling errors, or applying security rules."
    license: MIT
    ---
    
    # Firebase Cloud Storage Skill
    
    This skill defines how to correctly use Firebase Cloud Storage in Flutter applications.
    
    ## When to Use
    
    Use this skill when:
    
    * Setting up Cloud Storage in a Flutter project.
    * Uploading or downloading files.
    * Managing file metadata.
    * Handling Storage errors and monitoring upload progress.
    
    ---
    
    ## 1. Setup and Configuration
    
    ```
    flutter pub add firebase_storage
    ```
    
    ```dart
    import 'package:firebase_storage/firebase_storage.dart';
    
    final storage = FirebaseStorage.instance;
    // Or specify a bucket explicitly:
    // final storage = FirebaseStorage.instanceFor(bucket: "gs://BUCKET_NAME");
    ```
    
    - Firebase Storage requires the **Blaze (pay-as-you-go) plan**.
    - Run `flutterfire configure` to update your Firebase config with the default Storage bucket name.
    
    > **Security note:** By default, a Cloud Storage bucket requires Firebase Authentication for any action. Configuring public access may also make App Engine files publicly accessible — restrict access again when you set up Authentication.
    
    ---
    
    ## 2. File Operations
    
    **Create a reference:**
    
    ```dart
    final storageRef = FirebaseStorage.instance.ref();
    final fileRef = storageRef.child("uploads/file.jpg");
    ```
    
    **Upload:**
    
    ```dart
    final uploadTask = fileRef.putFile(file);
    final snapshot = await uploadTask;
    final downloadUrl = await snapshot.ref.getDownloadURL();
    ```
    
    **Download (in-memory):**
    
    ```dart
    final data = await fileRef.getData();
    ```
    
    **Download URL:**
    
    ```dart
    final downloadUrl = await fileRef.getDownloadURL();
    ```
    
    **Delete:**
    
    ```dart
    await fileRef.delete();
    ```
    
    ---
    
    ## 3. Metadata Management
    
    **Get metadata:**
    
    ```dart
    final metadata = await fileRef.getMetadata();
    print('Content type: ${metadata.contentType}');
    print('Size: ${metadata.size}');
    ```
    
    **Update metadata:**
    
    ```dart
    final newMetadata = SettableMetadata(
      contentType: "image/jpeg",
      customMetadata: {'uploaded_by': 'user123'},
    );
    await fileRef.updateMetadata(newMetadata);
    ```
    
    Use **custom metadata** to store additional key/value pairs with your files.
    
    ---
    
    ## 4. Error Handling
    
    Use `try-catch` with `FirebaseException`. Key error codes:
    
    | Code | Meaning |
    |---|---|
    | `storage/object-not-found` | File doesn't exist at the reference |
    | `storage/bucket-not-found` | No bucket configured for Cloud Storage |
    | `storage/project-not-found` | No project configured for Cloud Storage |
    | `storage/quota-exceeded` | Storage quota exceeded |
    | `storage/unauthenticated` | User needs to authenticate |
    | `storage/unauthorized` | User lacks permission |
    | `storage/retry-limit-exceeded` | Operation timeout exceeded |
    
    - For `quota-exceeded` on the Spark plan, upgrade to Blaze.
    - Implement retry logic for network-related errors and timeouts.
    
    ---
    
    ## 5. Performance and Best Practices
    
    **Monitor upload progress:**
    
    ```dart
    final uploadTask = fileRef.putFile(file);
    uploadTask.snapshotEvents.listen((TaskSnapshot snapshot) {
      print('Progress: ${(snapshot.bytesTransferred / snapshot.totalBytes) * 100}%');
    });
    ```
    
    - **Cancel** uploads with `uploadTask.cancel()`.
    - **Pause / resume** with `uploadTask.pause()` and `uploadTask.resume()`.
    - Optimize file sizes before upload to reduce costs and improve performance.
    - Use Cloud Storage with Firestore for comprehensive data management.
    - Use the **Firebase Local Emulator Suite** for local development and testing.
    
    ---
    
    ## 6. Security
    
    - Use **Firebase Security Rules** to control access to files.
    - Combine Storage rules with **Firebase Authentication** for user-based access control.
    - Test security rules thoroughly before deploying to production.
    
    ---
    
    ## References
    
    - [Firebase Cloud Storage Flutter documentation](https://firebase.google.com/docs/storage/flutter/start)
    - [Upload files](https://firebase.google.com/docs/storage/flutter/upload-files)
    - [Download files](https://firebase.google.com/docs/storage/flutter/download-files)
    - [Handle errors](https://firebase.google.com/docs/storage/flutter/handle-errors)
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related