What problem does it solve? Running machine learning inference in JavaScript typically requires a separate Python backend or hosted API. This Skill provides guidance for executing Hugging Face models directly in JavaScript runtimes using Transformers.js, with WebGPU or WASM acceleration and no Python server. ## Core Features & Use Cases - Pipeline API for 30+ tasks: Run NLP, vision, audio, and multimodal tasks like sentiment analysis, object detection, speech recognition, and embeddings with a single pipeline call. - Runtime and performance control: Configure WebGPU or WASM devices, quantization dtypes (fp32/fp16/q8/q4), caching strategies, and progress callbacks for large model downloads. - Production patterns: Use ModelRegistry for preflight cache checks, offline-first loading with local_files_only, streaming text generation, and proper memory cleanup with dispose(). - Use Case: Build a browser-based semantic search feature by loading a quantized embedding model with feature-extraction, showing download progress to users, and caching the model for offline reuse. ## Quick Start Use the transformers-js skill to add client-side sentiment analysis to my web app with a quantized model and a download progress indicator.