mediapipe-usage
- Using or debugging @mediapipe/tasks-vision, Pose Landmarker, or pose detection in a web app.'
npx skills add majiayu000/claude-skill-registry --skill mediapipe-usage --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
--- name: mediapipe-usage description: Summarizes Google MediaPipe usage for web: Pose Landmarker with @mediapipe/tasks-vision, landmark indices, running modes, and patterns for real-time video. Use when working with MediaPipe, pose detection, body landmarks, or @mediapipe/tasks-vision. --- # Google MediaPipe Usage (Web / Pose Landmarker) ## When to Use This Skill - Using or debugging `@mediapipe/tasks-vision`, Pose Landmarker, or pose detection in a web app. - Needing the 33 pose landmark indices, skeleton connections, or mapping landmarks to gestures or control signals. ## Setup **Install (prefer pnpm):** ```bash pnpm add @mediapipe/tasks-vision ``` **WASM root:** Resolve vision tasks from CDN when creating the task: ```ts const vision = await FilesetResolver.forVisionTasks( "https://cdn.jsdelivr.net/npm/@mediapipe/tasks-vision@latest/wasm", ); ``` ## Create the Pose Landmarker Task Use `PoseLandmarker.createFromOptions(vision, options)`: ```ts import { PoseLandmarker, FilesetResolver } from "@mediapipe/tasks-vision"; const vision = await FilesetResolver.forVisionTasks( "https://cdn.jsdelivr.net/npm/@mediapipe/tasks-vision@latest/wasm", ); const poseLandmarker = await PoseLandmar
- When to Use This Skill
- Setup
- Create the Pose Landmarker Task
- Run the Task
- Result Shape
- Practical Patterns (Know-how)
- Cleanup
- Additional Resources
pnpm add @mediapipe/tasks-vision
What does the mediapipe-usage skill do?
- Using or debugging @mediapipe/tasks-vision, Pose Landmarker, or pose detection in a web app.'
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill mediapipe-usage --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.
