cv-setup

cv-setup is a skill for Claude Code from southlab-ai/Claude-Plugin-Marketplace. It costs 0 tokens per session (289 once invoked), scanned A, original, MIT.

A setup guide for a computer-vision plugin, including its Python packages, server, and optical character recognition (OCR) language support.

In plain words
What is it for?
Use it when installing or troubleshooting the computer-vision plugin, verifying its server and tools, checking Python dependencies, or preparing OCR languages on Windows.
Why use it?
It checks whether the required software is installed and identifies problems before the plugin is used. OCR is software that reads text from images, and the guide checks which languages are available.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the computer-vision plugin — 2 skills shipped together

Good fit Use it when installing or troubleshooting the computer-vision plugin, verifying its server and tools, checking Python dependencies, or preparing OCR languages on Windows.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add southlab-ai/Claude-Plugin-Marketplace
Claude Code
/plugin install computer-vision

Made for: Claude Code.

Or install computer-vision, the plugin that ships this one along with the rest of its 2 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cv-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/cv-setup/github.svg)](https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/cv-setup)
Your own site
<a href="https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/cv-setup"><img src="https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/cv-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cv-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/southlab-ai/claude-plugin-marketplace/cv-setup"><img src="https://agentmods.dev/badge/skills/southlab-ai/claude-plugin-marketplace/cv-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 289 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00289
Opus 5 $0.00000 $0.00144
Sonnet 5 $0.00000 $0.00058
Haiku 4.5 $0.00000 $0.00029

Measured 12d ago against content hash 195ae1a4b809, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

cv-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/computer-vision/skills/cv-setup/SKILL.md · 26 lines

What it actually says

CV Plugin Setup

Verify and install ALL Computer Vision plugin dependencies.

Phase 1: Python Dependencies

  1. Check that uv is installed: uv --version
  2. Run uv sync --directory "${CLAUDE_PLUGIN_ROOT}" to install all Python dependencies
  3. Verify the MCP server starts: uv run --directory "${CLAUDE_PLUGIN_ROOT}" python -c "from src.server import mcp; print('Server OK:', len(mcp._tool_manager._tools), 'tools registered')"

Phase 2: OCR Languages

  1. Check which OCR languages are installed:
    • Run: powershell -Command "[Windows.Media.Ocr.OcrEngine,Windows.Foundation,ContentType=WindowsRuntime] | Out-Null; [Windows.Media.Ocr.OcrEngine]::AvailableRecognizerLanguages | Select-Object LanguageTag"
    • OCR works with any installed language — English is not required
    • To install English OCR (requires elevated PowerShell): Add-WindowsCapability -Online -Name "Language.OCR~~~en-US~0.0.1.0"

Phase 3: Report Results

  1. Report a summary table to the user:
    • uv version
    • Python dependencies (installed/failed)
    • MCP Server (OK + tool count, or error)
    • OCR languages available
    • Any warnings or manual steps needed
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 26 lines · 0 tokens per session scan A 195ae1a4b809

Subscribe to this mod's changes

cv-setup is a skill published in the GitHub repository southlab-ai/Claude-Plugin-Marketplace (2 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 289 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

cosmergon

Persistent multi-agent economy where autonomous AI agents compete for resources, trade on a marketplace, and benchmark decision-making against a standing population of always-on agents. Invite other agents for energy rewards. Auto-registers — no API key needed.

rkocosmergon/cosmergon-agent · 50 tokens

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

oma-scholar

Scholarly research companion using Knows sidecar spec (.knows.yaml). Generates, validates, reviews, queries, and compares structured research-paper sidecars, and fetches them from knows.academy. Use for academic literature search, survey synthesis, paper authoring assistance, and peer review with token-efficient…

first-fluke/oh-my-agent · 73 tokens

browser_cdp

A health check for Python code that produces a score, letter grade, and measures of issues such as complexity, duplication, dead code, dependencies, and architecture.

mateaix/mateclaw · 44 tokens

flow-next-tracker-sync

Project a flow-next spec to a tracker issue (Linear, GitHub, GitLab, Jira) and reconcile two-way. Use when asked to sync to a tracker. NOT plan-sync.

gmickel/flow-next · 44 tokens