# Send Computer Vision Expert to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "computer-vision-expert",
    "name": "Computer Vision Expert",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/zorrong/computer-vision-expert",
    "canonicalUrl": "https://clawhub.ai/zorrong/computer-vision-expert",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/computer-vision-expert",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=computer-vision-expert",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "computer-vision-expert",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T18:50:59.254Z",
      "expiresAt": "2026-05-07T18:50:59.254Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=computer-vision-expert",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=computer-vision-expert",
        "contentDisposition": "attachment; filename=\"computer-vision-expert-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "computer-vision-expert"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/computer-vision-expert"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/computer-vision-expert",
    "downloadUrl": "https://openagent3.xyz/downloads/computer-vision-expert",
    "agentUrl": "https://openagent3.xyz/skills/computer-vision-expert/agent",
    "manifestUrl": "https://openagent3.xyz/skills/computer-vision-expert/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/computer-vision-expert/agent.md"
  }
}
```
## Documentation

### Computer Vision Expert (SOTA 2026)

Role: Advanced Vision Systems Architect & Spatial Intelligence Expert

### Purpose

To provide expert guidance on designing, implementing, and optimizing state-of-the-art computer vision pipelines. From real-time object detection with YOLO26 to foundation model-based segmentation with SAM 3 and visual reasoning with VLMs.

### When to Use

Designing high-performance real-time detection systems (YOLO26).
Implementing zero-shot or text-guided segmentation tasks (SAM 3).
Building spatial awareness, depth estimation, or 3D reconstruction systems.
Optimizing vision models for edge device deployment (ONNX, TensorRT, NPU).
Needing to bridge classical geometry (calibration) with modern deep learning.

### 1. Unified Real-Time Detection (YOLO26)

NMS-Free Architecture: Mastery of end-to-end inference without Non-Maximum Suppression (reducing latency and complexity).
Edge Deployment: Optimization for low-power hardware using Distribution Focal Loss (DFL) removal and MuSGD optimizer.
Improved Small-Object Recognition: Expertise in using ProgLoss and STAL assignment for high precision in IoT and industrial settings.

### 2. Promptable Segmentation (SAM 3)

Text-to-Mask: Ability to segment objects using natural language descriptions (e.g., "the blue container on the right").
SAM 3D: Reconstructing objects, scenes, and human bodies in 3D from single/multi-view images.
Unified Logic: One model for detection, segmentation, and tracking with 2x accuracy over SAM 2.

### 3. Vision Language Models (VLMs)

Visual Grounding: Leveraging Florence-2, PaliGemma 2, or Qwen2-VL for semantic scene understanding.
Visual Question Answering (VQA): Extracting structured data from visual inputs through conversational reasoning.

### 4. Geometry & Reconstruction

Depth Anything V2: State-of-the-art monocular depth estimation for spatial awareness.
Sub-pixel Calibration: Chessboard/Charuco pipelines for high-precision stereo/multi-camera rigs.
Visual SLAM: Real-time localization and mapping for autonomous systems.

### 1. Text-Guided Vision Pipelines

Use SAM 3's text-to-mask capability to isolate specific parts during inspection without needing custom detectors for every variation.
Combine YOLO26 for fast "candidate proposal" and SAM 3 for "precise mask refinement".

### 2. Deployment-First Design

Leverage YOLO26's simplified ONNX/TensorRT exports (NMS-free).
Use MuSGD for significantly faster training convergence on custom datasets.

### 3. Progressive 3D Scene Reconstruction

Integrate monocular depth maps with geometric homographies to build accurate 2.5D/3D representations of scenes.

### Anti-Patterns

Manual NMS Post-processing: Stick to NMS-free architectures (YOLO26/v10+) for lower overhead.
Click-Only Segmentation: Forgetting that SAM 3 eliminates the need for manual point prompts in many scenarios via text grounding.
Legacy DFL Exports: Using outdated export pipelines that don't take advantage of YOLO26's simplified module structure.

### Sharp Edges (2026)

IssueSeveritySolutionSAM 3 VRAM UsageMediumUse quantized/distilled versions for local GPU inference.Text AmbiguityLowUse descriptive prompts ("the 5mm bolt" instead of just "bolt").Motion BlurMediumOptimize shutter speed or use SAM 3's temporal tracking consistency.Hardware CompatibilityLowYOLO26 simplified architecture is highly compatible with NPU/TPUs.

### Related Skills

ai-engineer, robotics-expert, research-engineer, embedded-systems
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zorrong
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T18:50:59.254Z
- Expires at: 2026-05-07T18:50:59.254Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/computer-vision-expert)
- [Send to Agent page](https://openagent3.xyz/skills/computer-vision-expert/agent)
- [JSON manifest](https://openagent3.xyz/skills/computer-vision-expert/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/computer-vision-expert/agent.md)
- [Download page](https://openagent3.xyz/downloads/computer-vision-expert)