Agent skill · Data & Analytics

cv-pipeline-builder

Computer vision ML pipelines for image classification, object detection, semantic segmentation, and image generation. Activates for "computer vision", "image classification", "object detection", "CNN", "ResNet", "YOLO", "image segmentation", "image preprocessing", "data augmentation". Builds end-to-end CV pipelines with PyTorch/TensorFlow, integrated with SpecWeave increments.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill cv-pipeline-builder --agent claude-code

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

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

# Computer Vision Pipeline Builder ## Overview Specialized ML pipelines for computer vision tasks. Handles image preprocessing, data augmentation, CNN architectures, transfer learning, and deployment for production CV systems. ## CV Tasks Supported ### 1. Image Classification ```python from specweave import CVPipeline # Binary or multi-class classification pipeline = CVPipeline( task="classification", num_classes=10, increment="0042" ) # Automatically configures: # - Image preprocessing (resize, normalize) # - Data augmentation (rotation, flip, color jitter) # - CNN architecture (ResNet, EfficientNet, ViT) # - Transfer learning from ImageNet # - Training loop with validation # - Inference pipeline pipeline.fit(train_images, train_labels) ``` ### 2. Object Detection ```python # Detect multiple objects in images pipeline = CVPipeline( task="object_detection", classes=["person", "car", "dog", "cat"], increment="0042" ) # Uses: YOLO, Faster R-CNN, or RetinaNet # Returns: Bounding boxes + class labels + confidence scores ``` ### 3. Semantic Segmentation ```python # Pixel-level classification pipeline = CVPipeline( task="segmentation", num_classes=21, increment="0042" ) # Uses: U-Net, De

What's inside
Steps it walks through
  1. Overview
  2. CV Tasks Supported
  3. 1. Image Classification
  4. 2. Object Detection
  5. 3. Semantic Segmentation
  6. Best Practices for CV
  7. Data Augmentation
  8. Transfer Learning
  9. Model Selection
  10. Integration with SpecWeave
  11. Commands
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the cv-pipeline-builder skill do?

Computer vision ML pipelines for image classification, object detection, semantic segmentation, and image generation. Activates for "computer vision", "image classification", "object detection", "CNN", "ResNet", "YOLO", "image segmentation", "image preprocessing", "data augmentation". Builds end-to-end CV pipelines with PyTorch/TensorFlow, integrated with SpecWeave increments.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill cv-pipeline-builder --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