Some models supported by Token Plan (qwen3.7-plus, etc.) natively support visual understanding and can process image inputs directly. For text-only models such as glm-5 and MiniMax-M2.5, you can add visual capabilities by configuring a local Skill.
Running the image understanding Skill consumes Token Plan Credits. No additional charges apply.
Prerequisites
-
You have subscribed to Token Plan.
-
You have completed the integration configuration in an AI tool and can chat normally. For details, see Clients and Developer Tools.
Vision support
|
Model |
Vision support |
Description |
|
Yes |
No additional configuration required. You can pass images directly. |
|
No |
Requires a Skill or Agent to enable visual capabilities |
Method 1: Use a vision model directly (recommended)
qwen3.7-plus and other models have visual understanding capabilities. If you frequently need to process images, switching to one of these models is the simplest and recommended approach.
|
Tool |
How to switch models |
|
Claude Code |
|
|
OpenCode |
|
|
Qwen Code |
|
For more information about switching models in other coding tools, see Clients and Developer Tools. After switching, you can reference image paths directly in your conversation, or drag-and-drop/paste images.
Method 2: Add visual capabilities via Skill or Agent
If you need to use text-only models such as glm-5 or MiniMax-M2.5 for image processing, you can configure a Skill or Agent to enable visual capabilities.
Claude Code
-
Add the Skill
Create an
.claudefolder in your project directory, then create anskills/image-analyzerdirectory inside it:mkdir -p .claude/skills/image-analyzerCreate a
SKILL.mdfile in that directory with the following content:--- name: image-analyzer description: Helps models without vision capabilities understand images. Use this skill when you need to analyze image content, extract information, text, or UI elements from images, or understand screenshots, charts, architecture diagrams, or any visual content. Simply pass in the image path to get a description. model: qwen3.7-plus --- qwen3.7-plus has visual understanding capabilities. Use qwen3.7-plus directly for image understanding.The resulting directory structure is as follows:
.claude/ └── skills/ └── image-analyzer/ └── SKILL.md -
Get started
-
Run
claudein your project directory to start Claude Code, then run/model glm-5to switch to theglm-5model. -
Download aliyun.png to your project directory, then ask:
请加载image-analyzer skill,描述一下 aliyun.png banner位置是什么信息。You will receive a response similar to the following:The alibabacloud.png is a screenshot of the Alibaba Cloud homepage. The banner area title is Coding Plan now supports Qwen3.5, and the text introduces that Alibaba Cloud Model Studio supports models such as Qwen3.5, Kimi-k2.5, and GLM-4.7, with new customers getting the first month for only 7.9 yuan. The page provides Subscribe now and Online consultation entry points.
-
OpenCode
-
Add the Agent
Create an
.opencodefolder in your project directory, then create anagentsdirectory inside it:mkdir -p .opencode/agentsCreate an
image-analyzer.mdfile in that directory with the following content:NoteThe model field must use the provider and model name defined in the OpenCode configuration file. Refer to the configuration example in the OpenCode documentation. It should be
bailian-token-plan/qwen3.7-plus.--- description: Analyzes images using a vision-capable model. Use this agent when the user needs to understand image content, extract information from screenshots, diagrams, UI mockups, or any visual content. Invoke with @image-analyzer followed by the image path and your question. mode: subagent model: bailian-token-plan/qwen3.7-plus tools: write: false edit: false --- You have vision capabilities. Analyze the provided image and return a clear, structured description focused on what the user is asking about.The resulting directory structure is as follows:
.opencode/ └── agents/ └── image-analyzer.md -
Get started
-
Run
opencodein your project directory to start OpenCode, then switch to theglm-5model. -
Download aliyun.png to your project directory, invoke
@image-analyzerand ask:@image-analyzer,描述一下 aliyun.png banner位置是什么信息。You will receive a response similar to the following:The banner area contains: Left side: - Hamburger menu icon - Alibaba Cloud orange logo and text - Navigation menu: Large Models, Products, Solutions, Benefits, Pricing, Marketplace, Partners, Services, About Alibaba Cloud Right side: - Search box (displaying "Large Models") - Icons: blue circle, globe, headset - Links: Documentation, ICP Filing, Console Build · glm-5 · 37.0s
-