Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

router9router9 图像

Agent Skill

router9 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,607

周安装

112

GitHub Stars

公开资料未说明

下载量

914
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:router9(router9 图像)
来源仓库:https://github.com/shushuo-dev/router9
安装命令:
openclaw skills install router9
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install router9

简介

集成语音识别、OCR、图像描述等多模态处理能力。

  • 通过 Router9 API 统一调用各类视觉与音频接口。
  • 适合需要快速接入 OCR 或语音转写功能的开发者。
  • 需申请 Router9 服务账号获取有效 API Key。
  • 部分功能可能受地区限制或内容审核政策约束。router9 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
router9
description
>
license
MIT
homepage
https://router9.com
compatibility
Requires Python 3.10+ and a Router9 API key (ROUTER9_API_KEY env var).
credentials
description
Router9 API key, obtained from https://router9.com/settings/api-keys
required
true
metadata
author
router9
version
1.0.2
homepage
https://router9.com
origin
https://router9.com
env
required
true
description
Router9 API key (https://router9.com/settings/api-keys)
openclaw
primaryEnv
ROUTER9_API_KEY
requires
env
bins
allowed-tools
Bash(python:*) Bash(python3:*)

Router9 Skills

Router9 provides AI-powered tools via a bundled CLI (scripts/router9.py). Set the ROUTER9_API_KEY environment variable before use.

Quick Reference

# Transcribe audio to text python scripts/router9.py transcribe audio.mp3 --language en

# Text-to-speech python scripts/router9.py tts "Hello world" -o speech.mp3 --voice alloy

# Describe an image python scripts/router9.py describe photo.jpg --prompt "What breed is this dog?"

# Extract text from an image (OCR) python scripts/router9.py ocr document.jpg

# Generate an image python scripts/router9.py generate "A sunset over mountains" -o output.png

# Upload a file python scripts/router9.py upload report.pdf

# Download a file python scripts/router9.py download file-abc123 -o report.pdf

# List files in storage python scripts/router9.py list

# Delete a file python scripts/router9.py delete file-abc123

# Check storage usage python scripts/router9.py usage

1. Speech Recognition (ASR)

Transcribe audio files to text. Use when the user needs to transcribe audio or video files.

python scripts/router9.py transcribe <file> [--language <code>]

  • file: Audio file path (mp3, wav, m4a, webm, mp4)
  • --language: ISO 639-1 language code (e.g. "en", "ja", "zh")

Output (JSON to stdout):

{ "text": "Transcribed content here...", "language": "en", "duration": 12.5 }

2. Text-to-Speech (TTS)

Convert text to spoken audio. Use when the user needs to generate speech or audio from text.

python scripts/router9.py tts <text> -o <output> [--voice <id>] [--format <fmt>]

  • text: Text to synthesize (max 4096 characters)
  • -o: Output file path (required)
  • --voice: Voice ID (default: "alloy")
  • --format: "mp3" (default), "wav", "opus"

Output: Writes audio file to -o path.

3. Image Description

Describe image content in natural language. Use when the user needs to analyze, describe, or understand what is in an image.

python scripts/router9.py describe <file> [--prompt <question>]

  • file: Image file path (jpg, png, webp, gif)
  • --prompt: Specific question about the image

Output (JSON to stdout):

{ "description": "A golden retriever sitting on a park bench..." }

4. OCR (Text Extraction)

Extract text from images — printed, handwritten, signs, and labels. Use when the user needs to read text from an image or document scan.

python scripts/router9.py ocr <file>

  • file: Image file path (jpg, png, webp, gif)

Output (JSON to stdout):

{ "fullText": "Invoice #1234\ Total: $150.00", "blocks": [...] }

5. Image Generation

Generate images from text prompts. Use when the user asks to create, generate, or draw images.

python scripts/router9.py generate <prompt> -o <output>

  • prompt: Text description of the image to generate
  • -o: Output file path (required)

Output: Saves generated image to -o path.

6. File Upload (Storage)

Upload a local file to agent storage using presigned URLs (direct-to-S3).

python scripts/router9.py upload <file>

  • file: Local file path to upload (max 50 MB)

Output (JSON to stdout):

{ "id": "file-abc123", "filename": "report.pdf", "sizeBytes": 204800 }

7. File Download (Storage)

Download a file from agent storage by its ID.

python scripts/router9.py download <file_id> [-o <output>]

  • file_id: The file ID returned from upload or list
  • -o: Output file path (default: original filename)

Output (JSON to stdout):

{ "status": "ok", "file": "report.pdf" }

8. List Files (Storage)

List files in agent storage.

python scripts/router9.py list [--page <n>] [--limit <n>]

  • --page: Page number (default: 1)
  • --limit: Items per page (default: 50)

Output (JSON to stdout):

{ "data": [{ "id": "file-abc123", "filename": "report.pdf", ... }], "pagination": { ... } }

9. Delete File (Storage)

Delete a file from agent storage.

python scripts/router9.py delete <file_id>

  • file_id: The file ID to delete

Output (JSON to stdout):

{ "status": "ok", "message": "File deleted." }

10. Storage Usage

Check storage usage and quota.

python scripts/router9.py usage

Output (JSON to stdout):

{ "usedBytes": 1073741824, "limitBytes": 5368709120, "usedFormatted": "1.0 GB", "limitFormatted": "5.0 GB" }

Quota

Usage is metered per billing period. Each tool has its own quota. Check remaining quota in the Router9 dashboard at /settings/skills.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.75%
按下载量换算848

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills