seeing-images
Augmented vision tools for analyzing images beyond native visual capabilities. Use when tasked with describing images in detail, reproducing images as SVGs, identifying subtle features, comparing image regions, reading degraded text, or any task requiring careful visual inspection. Also use when the image-to-svg skill needs ground truth about colors, shapes, or boundaries.
What this skill does
# Seeing Images Compensatory vision tools based on empirically measured blindspots (vision diagnostic v1-v4, 2026-03-25). ## When to Use Activate this skill when: - Describing an uploaded image in detail - Reproducing an image as SVG (use BEFORE drawing to establish ground truth) - Comparing two images or regions for differences - Reading text in degraded/compressed/low-contrast images - Identifying subtle features (gradients, faint overlays, reflections) - Any image task where accuracy matters more than speed ## Known Blindspots (from diagnostics) These are MEASURED limitations — not guesses: | Blindspot | Threshold | Compensatory Tool | |-----------|-----------|-------------------| | Luminance contrast | ~15-20 RGB steps invisible | `enhance`, `histogram`, `sample` | | Gradients | <30-step range invisible | `gradient_map`, `enhance` | | Context color bias | Dress effect, simultaneous contrast | `isolate`, `sample` | | Small elements | <15px effectively invisible | `crop`, `grid` | | Dense counting | Degrades >15 items, ~50% error at 30 | `count_elements` | | Subtle atmospherics | Steam, faint reflections lost in noise | `enhance`, `denoise` | ## Workflow ### Setup (one line, every time) ```python import sys; sys.path.insert(0, '/mnt/skills/user/seeing-images/scripts') from see import grid, sample, enhance, edges, histogram, isolate, palette, compare, count_elements, gradient_map, denoise, crop ``` ### Quick Analysis (2-3 tool calls) ```python grid(path, rows=2, cols=2) # → view the output sample(path, [(x1,y1), ...]) # → verify colors at points of interest ``` ### Deep Analysis (for SVG reproduction, spot-the-difference, etc.) ```python grid(path, rows=3, cols=3) # 1. Overview palette(path, n=10) # 2. Dominant colors edges(path, threshold=30) # 3. Shape boundaries sample(path, [(x1,y1), (x2,y2), ...]) # 4. Exact RGB at points enhance(path, region=(x,y,w,h), mode='auto') # 5. Reveal low-contrast areas isolate(path, region=(x,y,w,h)) # 6. Remove context bias ``` ## Tool Reference All functions in `scripts/see.py`. Every function that produces an image saves to `/home/claude/see_*.png` and returns the path. Use `view` tool on the returned path. ### grid(path, rows=3, cols=3, labels=True) Splits image into labeled cells for systematic inspection. This is the FIRST thing to call — it reduces attentional competition. ### sample(path, points, radius=3) Returns exact RGB values at specified pixel coordinates. Use to verify what you think you see. Averages over a small radius to handle noise. ### histogram(path, region=None) Color histogram showing value distribution. Reveals bimodal distributions (hidden gradients), dominant colors, and contrast range. With region=(x,y,w,h), analyzes only that area. ### enhance(path, region=None, factor=2.0, mode='contrast') Boosts contrast in the image or a region. Modes: 'contrast', 'brightness', 'color', 'sharpness'. Use factor=3-5 for near-threshold features. ### edges(path, threshold=50) Sobel edge detection revealing shape boundaries invisible at low contrast. Lower threshold = more edges (noisier). Output is a white-on-black edge map. ### gradient_map(path, region=None) Computes local gradient magnitude across the image. Bright = high gradient, dark = flat. Reveals gradients below the 30-step detection threshold. ### isolate(path, region, padding=20, bg=(128,128,128)) Extracts a region and places it on a neutral gray background. Removes surrounding context that causes simultaneous contrast and Dress-type illusions. The `bg` parameter defaults to mid-gray to minimize context bias. ### compare(path, r1, r2) Side-by-side comparison of two regions with diff overlay. Highlights pixel-level differences with amplification. Use for spot-the-difference tasks. ### count_elements(path, region=None, color_range=None, min_size=3) Programmatic element counting using connected component analysis. Specify approximate color_range as ((r_min,g_min,b_min), (r_max,g_max,b_max)) to count specific colored elements. ### denoise(path, region=None, strength=3) Median filter to reduce photographic noise, revealing subtle features hidden in the noise floor (like steam, faint reflections). ### palette(path, n=8) Extracts the n most dominant colors using k-means clustering. Returns RGB values and their proportions. Essential for SVG reproduction. ## Anti-Patterns - Do NOT skip `grid()` for complex images — your attention is the bottleneck - Do NOT trust your color perception near context boundaries — always `sample()` or `isolate()` - Do NOT estimate counts above 15 — use `count_elements()` - Do NOT assume gradients are flat — use `gradient_map()` to verify - Do NOT describe faint features without `enhance()` verification
Related in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.