Give DeepSeek Eyes with an Open-Source Vision Skill That Costs Pennies
Text-only models remain cheaper and faster than multimodal alternatives for many coding tasks. A two-cent-per-image relay sidesteps the need to switch models or wait for official vision support, keeping the cost advantage while removing a daily workflow bottleneck.
DeepSeek's text-only models cannot process images, a friction point for developers who want to paste error screenshots or design mockups directly into a chat. The open-source `claude-vision-skill` bridges this gap by piping images to a separate vision model—defaulting to Alibaba Qwen's VL models—and returning a text description that DeepSeek can read. Installation is a single prompt handed to Codex, which pulls the repo and writes the config automatically. After adding a Qwen API key, the skill works immediately without a restart. New users get 1 million free tokens from Alibaba Cloud Bailian, enough for roughly 7,000 image recognitions at about two cents each. In testing, the setup correctly read document screenshots, parsed a project startup error stack, and described front-end layouts with enough detail to generate matching code. The skill supports any OpenAI-compatible vision model, so users are not locked into Qwen.
Piping images through a cheap external vision model is a pragmatic workaround that avoids the higher cost and latency of full multimodal models for the majority of text-heavy coding workflows.
The skill's design is model-agnostic at the vision layer, which means users can swap in a local vision model later and eliminate the API cost entirely.
Automating the install via Codex turns what would be a multi-step setup into a single natural-language command, lowering the barrier for developers who would otherwise skip the fix.
At two cents per image, the economics flip the usual tradeoff: it becomes cheaper to screenshot an error than to manually copy-paste and reformat a stack trace.