AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Vision — Скилл для ИИ-агентов | AI Рассвет

    Vision

    See and understand images when you (the current model) have no native vision. Use this WHENEVER you need to look at, read, describe, OCR, or reason about the contents of an image, screenshot, photo, diagram, chart, UI mockup, or scanned page — including when the user references a local image file or an image URL and you cannot view it yourself. Also triggers on: 看图 / 识图 / 截图 / 图片内容 / OCR 文字识别 / 这张图是什么. Delegates the actual seeing to a configurable OpenAI compatible vision model via a small script.

    Скиллы для маркетинга#GitHub#kotot/vision#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    1

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add kotot/vision --skill vision
    Скачать ZIP
    Версия
    1.0.0+1740cbd119cd
    Автор
    Владимир Ломтев
    Репозиторий
    kotot/vision
    GitHub: kotot/vision

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    Vision (delegated image understanding)

    You do not have native vision, but you can still "see" an image by running the bundled script, which sends the image to a configurable OpenAI-compatible vision model and returns a text answer.

    When to use

    Use this skill whenever a task requires understanding image content and you cannot view it directly, for example:

    • The user uploads or points to an image / screenshot / photo and asks what's in it.
    • You need to read text inside an image (OCR).
    • You need to diagnose an error from a screenshot.
    • You need to understand a UI mockup, diagram, chart, or scanned document.
    • You need to compare what an image shows against code or expected output.

    How to use

    Run the script with the Bash tool. Pass the image (local path or http(s) URL) and a clear, specific instruction describing what you need to know:

    python3 "$CLAUDE_SKILL_DIR/scripts/see.py" <image_path_or_url> "your question"
    

    If $CLAUDE_SKILL_DIR is not set in your environment, use the relative path to this skill folder, e.g. python3 scripts/see.py ... from the skill directory, or the absolute path where the skill is installed.

    Examples:

    ## Describe an image
    python3 scripts/see.py ./photo.jpg "Describe this image in detail"
    
    ## OCR — extract text
    python3 scripts/see.py ./receipt.png "Transcribe all text exactly, preserving layout"
    
    ## Diagnose an error screenshot
    python3 scripts/see.py ./error.png "What error is shown and what is the likely cause?"
    
    ## Read a chart into structured data
    python3 scripts/see.py ./chart.png "Extract every series, label, and value as a markdown table"
    
    ## Remote image
    python3 scripts/see.py "https://example.com/diagram.png" "Explain this architecture diagram"
    

    The script prints the model's answer to stdout. Read that answer and use it to continue the task. Ask a focused question rather than a generic "describe" when you need something specific (a value, a status, an error message) — you get better results and spend fewer tokens.

    Configuration (required, set once)

    The script reads its config from environment variables or a .claude/settings.json env block (same variable names as the vision-mcp-server MCP, so config carries over). Resolution order: an explicit environment variable wins; otherwise the script reads .claude/settings.json, searching from the current directory upward and then ~/.claude/.

    Variable Required Example
    VISION_BASE_URL yes http://localhost:1234/v1/chat/completions
    VISION_MODEL yes Qwen3-VL-32B, gpt-4o, glm-4v, ...
    VISION_API_KEY no* your API key (*optional for local servers)
    VISION_MAX_TOKENS no 4096
    VISION_TEMPERATURE no 0.2
    VISION_DETAIL no auto | low | high
    VISION_TIMEOUT no 120

    VISION_BASE_URL must be the full chat-completions endpoint (.../v1/chat/completions), not just the base URL.

    Set them in your shell profile, or in the MCP/agent env block, or inline:

    export VISION_BASE_URL=http://localhost:1234/v1/chat/completions
    export VISION_MODEL=Qwen3-VL-32B
    export VISION_API_KEY=sk-...        # optional for local
    

    Or put them in .claude/settings.json (project-level, or global ~/.claude/):

    {
      "env": {
        "VISION_BASE_URL": "http://localhost:1234/v1/chat/completions",
        "VISION_MODEL": "Qwen3-VL-32B",
        "VISION_API_KEY": "sk-..."
      }
    }
    

    Notes

    • Pure Python standard library — no pip install needed.
    • Local files are auto-converted to a base64 data URL; http(s) URLs are passed through.
    • If the script reports a missing variable or an unreachable endpoint, fix the config above and retry. Add --dry-run to inspect the request without sending it: python3 scripts/see.py --dry-run img.png "test".

    Требования и возможности

    Источник пакета
    https://github.com/kotot/vision/tree/1740cbd119cd11cfacf51d29fe911d8c4ba4cf85/vision

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md44369e4159da3c69a2df...
    scripts/see.py10306d9c4acd261c85c55...

    Частые вопросы

    Как установить Vision?
    Используйте команду npx skills add kotot/vision --skill vision или скачайте ZIP-архив.
    Можно ли скачать Vision бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    App Store ScreenshotsUse when building App Store or Google Play screenshot pages, generating exportable marketing screenshots for iOS and/or Android apps, or scaffolding a screenshot editor with Next.js. Triggers on app store, play store, screenshots, marketing assets, html-to-image, phone mockup, android screenshots, feature graphic.Яндекс Вебмастер: Поисковые запросы сайтаВыгрузить показы, клики, CTR и позиции по поисковым запросам.ScrapeScrape web content as clean markdown/HTML/JSON via the Bright Data CLI (`bdata scrape`). Use when the user wants to fetch a page, extract content from a list of URLs, or crawl paginated listings. Hands off to `data-feeds` for supported platforms (Amazon, LinkedIn, TikTok, Instagram, YouTube, Reddit, etc.) and to `search` when URLs must be discovered first. Requires the Bright Data CLI; proactively guides install + login if missing.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add kotot/vision --skill vision
    Скачать ZIP
    Версия
    1.0.0+1740cbd119cd
    Автор
    Владимир Ломтев
    Репозиторий
    kotot/vision
    GitHub: kotot/vision
    Postbridge Social GrowthOrganic social media growth coach using the Post Bridge methodology (500M+ views, 132K+ downloads, $33K+ revenue). Act as a personalized growth coach for apps, products, and businesses seeking organic traffic from TikTok and Instagram short-form video. Use when users ask about growing on TikTok/Instagram, creating viral content, getting more views organically, converting social media views to app downloads or customers, warming up new social accounts, finding winning content formats, or scaling organic social media presence. Also use when users need help with social media bios, content-market