Agent skill

machine-learning

Machine Learning integration for Flutter using TensorFlow Lite and Firebase ML

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill machine-learning-altrupets-monorepo --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 15 KB
Bundled scripts: none
Path: skills/ai-ml/machine-learning-altrupets-monorepo/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Skill 20: Machine Learning Integration ## Overview This skill enables machine learning capabilities in Flutter applications using TensorFlow Lite and Firebase ML Kit. Supports image classification, object detection, text recognition, and custom model deployment. ## Features - Image classification with pre-trained models - Object detection and tracking - Text recognition (OCR) - Face detection - Barcode scanning - Custom TFLite model integration - On-device inference - Cloud-based ML with Firebase ## Installation ### Dependencies ```yaml dependencies: tflite_flutter: ^0.10.4 tflite_flutter_helper: ^0.3.1 firebase_ml_model_downloader: ^0.2.4 google_mlkit_text_recognition: ^0.11.0 google_mlkit_face_detection: ^0.9.0 google_mlkit_barcode_scanning: ^0.10.0 google_mlkit_object_detection: ^0.11.0 image_picker: ^1.0.7 image: ^4.1.3 ``` ## Image Classification ### 1. Model Setup Add your TensorFlow Lite model to `assets/models/`: ```yaml # pubspec.yaml flutter: assets: - assets/models/model.tflite - assets/labels/labels.txt ``` ### 2. Image Classification Service ```dart import 'package:tflite_flutter/tflite_flutter.dart'; import 'package:image/image.dart' as img; import 'dart:io'; class

What's inside
Steps it walks through
  1. Overview
  2. Features
  3. Installation
  4. Dependencies
  5. Image Classification
  6. 1. Model Setup
  7. 2. Image Classification Service
  8. 3. Classification UI
  9. Text Recognition (OCR)
  10. Object Detection
  11. Barcode Scanning
  12. Firebase ML Model Download
  13. Best Practices
  14. Performance Optimization
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the machine-learning skill do?

Machine Learning integration for Flutter using TensorFlow Lite and Firebase ML

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill machine-learning-altrupets-monorepo --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going