From Banned Claude Max 20 to Vision-Enabled DeepSeek: A Guide to claude-code-vision-skill Setup
After losing two Claude Max 20 accounts, developers can switch to DeepSeek via Claude Code for cost-effective coding tasks— but DeepSeek lacks vision...
Recent weeks have seen a wave of Anthropic Claude Max 20 account bans, leaving many developers without their go-to AI coding tool. With no warnings or appeal options, users like the source author lost two premium $200/month subscriptions abruptly. To keep workflows running, they turned to DeepSeek’s models via Claude Code’s Anthropic-compatible endpoint.
Switching to DeepSeek’s v4 series (including deepseek-v4-pro with 1M token context and deepseek-v4-flash for fast tasks) proved smooth. The author shared key configurations in ~/.claude/settings.json, mapping all Claude tiers to DeepSeek equivalents and adjusting timeouts for long tasks—resulting in a cost-effective alternative for coding, bug fixes, and long-context work.
However, a critical gap emerged: DeepSeek’s models lack multi-modal support, so pasting screenshots (error logs, UI designs) yielded no results. Since Claude Code only natively supports Anthropic’s models for images, this was a major setback for daily development.
The solution is claude-code-vision-skill, a visual plug-in acting as DeepSeek’s "eye". It intercepts images, uses third-party vision models (Qwen, Doubao, GPT-4o) to generate text descriptions, and feeds them to DeepSeek—transparent to users, allowing image-based interactions as before.
Prerequisites: Claude Code configured with DeepSeek, Python 3, and an API key for a vision model (Qwen recommended for affordability and Chinese recognition).
For lazy setup: Ask Claude Code to configure the skill with a prompt like, "Help me set up claude-code-vision-skill for DeepSeek using Qwen with my API key [your_key] as default." Claude Code handles cloning, installation, and configuration automatically.
Manual setup steps include cloning the repository, obtaining an API key (e.g., Qwen from Alibaba Cloud), running the installation script, and restarting Claude Code.
Sources
- JeecgBoot AI Special Research | Equipping DeepSeek with "Eyes": Practical Configuration of claude-code-vision-skill Visual Plug-in. SegmentFault