Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
countbot-ai avatar

Image Analysis

  • 266 installs
  • 760 repo stars
  • Updated July 15, 2026
  • countbot-ai/countbot

Analyze uploaded or linked images inside Countbot agents for classification, OCR, defect detection, and multimodal reasoning in automated workflows.

About

Countbot skill for integrating image analysis into agent workflows: send images to vision models, extract text and objects, classify scenes, and feed results into downstream automation. Helps builders add multimodal perception to bots without hand-rolling provider SDK wiring and prompt templates each time.

  • Multimodal image understanding
  • OCR and classification hooks
  • Countbot agent tooling
  • Workflow automation triggers
  • Vision API integration patterns

Image Analysis by the numbers

  • 266 all-time installs (skills.sh)
  • Ranked #2,472 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/countbot-ai/countbot --skill image-analysis

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs266
repo stars760
Last updatedJuly 15, 2026
Repositorycountbot-ai/countbot

What it does

Analyze uploaded or linked images inside Countbot agents for classification, OCR, defect detection, and multimodal reasoning in automated workflows.

Files

SKILL.mdMarkdownGitHub ↗

图片分析与识别

支持智谱 GLM-4V 和千问 Qwen-VL 两种视觉模型。

当用户发送图片或要求分析图片时,必须使用此技能,不要使用 PIL、pytesseract 等其他方法。

配置

编辑 skills/image-analysis/scripts/config.json

{
  "default_model": "zhipu",
  "zhipu": {
    "api_key": "your-zhipu-api-key",
    "model": "glm-4.6v-flash"
  },
  "qwen": {
    "api_key": "your-qwen-api-key",
    "model": "qwen3-vl-plus"
  }
}

API Key 获取:

  • 智谱(免费):https://open.bigmodel.cn/
  • 千问:https://help.aliyun.com/zh/model-studio/get-api-key

命令行调用

# 分析本地图片(最常用)
python3 skills/image-analysis/scripts/vision.py analyze --image 图片路径 --prompt "描述图片内容"

# 分析网络图片
python3 skills/image-analysis/scripts/vision.py analyze --image https://example.com/image.jpg --prompt "描述图片"

# 多图对比
python3 skills/image-analysis/scripts/vision.py analyze --image img1.jpg --image img2.jpg --prompt "对比差异"

# 指定模型
python3 skills/image-analysis/scripts/vision.py analyze --image image.jpg --prompt "描述图片" --model qwen

# 开启思考模式(仅智谱,提升准确度)
python3 skills/image-analysis/scripts/vision.py analyze --image image.jpg --prompt "详细分析" --thinking

# 视频分析
python3 skills/image-analysis/scripts/vision.py analyze --video video.mp4 --prompt "总结视频内容"

# JSON 输出
python3 skills/image-analysis/scripts/vision.py analyze --image image.jpg --prompt "描述图片" --json

AI 调用场景

用户发送图片后,系统下载到本地(如 data/temp/images/xxx.jpg):

# 图片描述
python3 skills/image-analysis/scripts/vision.py analyze --image data/temp/images/xxx.jpg --prompt "描述这张图片的内容"

# OCR 识别
python3 skills/image-analysis/scripts/vision.py analyze --image data/temp/images/xxx.jpg --prompt "提取图片中的所有文字信息"

# 物体定位(开启思考模式)
python3 skills/image-analysis/scripts/vision.py analyze --image data/temp/images/xxx.jpg --prompt "找出物体位置,返回坐标" --thinking

模型选择

场景推荐
简单描述任意
复杂推理、物体定位智谱 + --thinking
高精度识别、文档解析千问
成本敏感智谱(免费)

注意事项

  • 本地图片自动转 Base64,支持 jpg/png/gif/webp/bmp
  • 智谱图片限制 5MB,像素不超过 6000x6000
  • 千问不支持同时处理图片、视频和文件
  • 思考模式会增加响应时间但提升准确度

Related skills

AI & Agent Buildingautomationllm

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.