Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
charleswiltgen avatar

Axiom Vision

  • 1.4k installs
  • 1.1k repo stars
  • Updated August 3, 2026
  • charleswiltgen/axiom

axiom-vision is an agent skill for use when implementing any computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.

About

The axiom-vision skill is designed for use when implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning. Computer Vision You MUST use this skill for ANY computer vision work using the Vision framework. Implementing (pose, segmentation, OCR, barcodes, documents, live scanning)? Invoke when the user implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.

  • Decision tree for choosing the right Vision API.
  • Subject segmentation with VisionKit.
  • Isolating objects while excluding hands (combining APIs).
  • Hand/body pose detection (21/19 landmarks).
  • Text recognition (fast vs accurate modes).

Axiom Vision by the numbers

  • 1,371 all-time installs (skills.sh)
  • +34 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #292 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

axiom-vision capabilities & compatibility

Capabilities
decision tree for choosing the right vision api · subject segmentation with visionkit · isolating objects while excluding hands (combini · hand/body pose detection (21/19 landmarks)
Use cases
frontend
From the docs

What axiom-vision says it does

Use when implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.
SKILL.md
Use when implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.
SKILL.md
npx skills add https://github.com/charleswiltgen/axiom --skill axiom-vision

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.4k
repo stars1.1k
Security audit3 / 3 scanners passed
Last updatedAugust 3, 2026
Repositorycharleswiltgen/axiom

How do I use when implementing any computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning?

Use when implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.

Who is it for?

Developers using axiom vision workflows documented in SKILL.md.

Skip if: Skip when the task falls outside axiom-vision scope or needs a different stack.

When should I use this skill?

User implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.

What you get

Completed axiom-vision workflow with documented commands, files, and expected deliverables.

  • Vision request configurations
  • Swift pipeline snippets
  • Task-to-reference routing

By the numbers

  • Covers 5 Vision task categories: segmentation, pose, OCR, barcode, and document scanning
  • Published under the MIT license in the charleswiltgen/axiom repository

Files

SKILL.mdMarkdownGitHub ↗

Computer Vision

You MUST use this skill for ANY computer vision work using the Vision framework.

Quick Reference

Symptom / TaskReference
Subject segmentation, liftingSee skills/vision-framework.md
Hand/body pose detectionSee skills/vision-framework.md
Text recognition (OCR)See skills/vision-framework.md
Barcode/QR code detectionSee skills/vision-framework.md
Document scanningSee skills/vision-framework.md
DataScannerViewControllerSee skills/vision-framework.md
Structured document extraction (iOS 26+)See skills/vision-framework.md
Isolate object excluding handSee skills/vision-framework.md
Tap-to-segment any object OS27See skills/vision-ref.md
Vision on watchOS watchOS27See skills/vision-ref.md
Vision tools for Foundation Models (BarcodeReaderTool, OCRTool) OS27See skills/vision-ref.md
Vision framework API referenceSee skills/vision-ref.md
Visual Intelligence integration (iOS 26+, iPadOS27/macOS27)See skills/vision-ref.md
Sensitive content classification (nudity/gore/violence), categorized via detectedTypes (OS27)See skills/vision-ref.md
Subject not detectedSee skills/vision-diag.md
Hand/body pose missing landmarksSee skills/vision-diag.md
Low confidence observationsSee skills/vision-diag.md
UI freezing during processingSee skills/vision-diag.md
Coordinate conversion bugsSee skills/vision-diag.md
Text not recognized / wrong charsSee skills/vision-diag.md
Barcode not detectedSee skills/vision-diag.md
DataScanner blank / no itemsSee skills/vision-diag.md
Document edges not detectedSee skills/vision-diag.md

Decision Tree

digraph vision {
    start [label="Computer vision task" shape=ellipse];
    what [label="What do you need?" shape=diamond];

    start -> what;
    what -> "skills/vision-framework.md" [label="implement feature"];
    what -> "skills/vision-ref.md" [label="API reference"];
    what -> "skills/vision-ref.md" [label="Visual Intelligence"];
    what -> "skills/vision-ref.md" [label="tap-to-segment / watchOS / FM tools (27)"];
    what -> "skills/vision-diag.md" [label="something broken"];
}

1. Implementing (pose, segmentation, OCR, barcodes, documents, live scanning)? → skills/vision-framework.md 2. Visual Intelligence system integration (camera/screenshot search; iOS 26+, iPadOS27/macOS27)? → skills/vision-ref.md (Visual Intelligence section) 3. Tap-to-segment, Vision on watchOS, or Vision tools for Foundation Models (27 cycle)? → skills/vision-ref.md 4. Need API reference / code examples? → skills/vision-ref.md 5. Debugging issues (detection failures, confidence, coordinates)? → skills/vision-diag.md

Critical Patterns

Implementation (skills/vision-framework.md):

  • Decision tree for choosing the right Vision API
  • Subject segmentation with VisionKit
  • Isolating objects while excluding hands (combining APIs)
  • Hand/body pose detection (21/19 landmarks)
  • Text recognition (fast vs accurate modes)
  • Barcode detection with symbology selection
  • Document scanning and structured extraction (iOS 26+)
  • Live scanning with DataScannerViewController
  • CoreImage HDR compositing

Diagnostics (skills/vision-diag.md):

  • Subject detection failures (edge of frame, lighting)
  • Landmark tracking issues (confidence thresholds)
  • Performance optimization (frame skipping, downscaling)
  • Coordinate conversion (lower-left vs top-left origin)
  • Text recognition failures (language, contrast)
  • Barcode detection issues (symbology, size, glare)
  • DataScanner troubleshooting (availability, data types)

Anti-Rationalization

ThoughtReality
"Vision framework is just a request/handler pattern"Vision has coordinate conversion, confidence thresholds, and performance gotchas. vision-framework.md covers them.
"I'll handle text recognition without the skill"VNRecognizeTextRequest has fast/accurate modes and language-specific settings. vision-framework.md has the patterns.
"Subject segmentation is straightforward"Instance masks have HDR compositing and hand-exclusion patterns. vision-framework.md covers complex scenarios.
"Visual Intelligence is just the camera API"Visual Intelligence is a system-level feature requiring IntentValueQuery and SemanticContentDescriptor. vision-ref.md has the integration section.
"I'll just process on the main thread"Vision blocks UI on older devices. Users on iPhone 12 will experience frozen app. 15 min to add background queue.

Example Invocations

User: "How do I detect hand pose in an image?" → See skills/vision-framework.md

User: "Isolate a subject but exclude the user's hands" → See skills/vision-framework.md

User: "How do I read text from an image?" → See skills/vision-framework.md

User: "Scan QR codes with the camera" → See skills/vision-framework.md

User: "Subject detection isn't working" → See skills/vision-diag.md

User: "Text recognition returns wrong characters" → See skills/vision-diag.md

User: "Show me VNDetectHumanBodyPoseRequest examples" → See skills/vision-ref.md

User: "How do I make my app work with Visual Intelligence?" → See skills/vision-ref.md

User: "Let users tap an object in a photo to cut it out" → See skills/vision-ref.md (Iterative Segmentation)

User: "Can I use Vision in my watchOS app?" → See skills/vision-ref.md (Vision on watchOS)

User: "RecognizeDocumentsRequest API reference" → See skills/vision-ref.md

Related skills

How it compares

Pick axiom-vision over generic CV skills when the stack is Apple's native Vision framework on iOS or macOS rather than cross-platform ML libraries.

FAQ

What does axiom-vision do?

Use when implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.

When should I use axiom-vision?

User implementing ANY computer vision feature — image analysis, pose detection, person segmentation, subject lifting, text recognition, barcode scanning.

Is axiom-vision safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.