Agent skill

mediapipe-usage

- Using or debugging @mediapipe/tasks-vision, Pose Landmarker, or pose detection in a web app.'

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill mediapipe-usage --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-ml/mediapipe-usage/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

--- 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

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Setup
  3. Create the Pose Landmarker Task
  4. Run the Task
  5. Result Shape
  6. Practical Patterns (Know-how)
  7. Cleanup
  8. Additional Resources
Ships with 1 file
  • metadata.json
Commands it runs
pnpm add @mediapipe/tasks-vision
More from claude-skill-registry
All skills →
About this skill
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.

Keep going