원클릭으로
vision
Resolve Feishu image_key to a local file path so the agent can Read the image natively
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Resolve Feishu image_key to a local file path so the agent can Read the image natively
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Transcribe user-sent voice messages via local OpenAI Whisper (no API key, runs offline)
Generate character-consistent selfie images and videos, send via the active Nako messaging channel. Character reference image and description come from per-agent env.
Send voice/song audio through the active Nako messaging channel — voice.sh does plain TTS (MiniMax or Volcengine); sing.sh generates a full song with melody via MiniMax music-2.6
Control interactive BLE devices (scan/connect/playback/timeline) from terminal.
SOC 직업 분류 기준
| name | vision |
| description | Resolve Feishu image_key to a local file path so the agent can Read the image natively |
| allowed-tools | Bash(*/resolve.sh:*) Bash(ls:*) Read |
用户发图片时,消息体里出现 {"image_key":"img_v3_..."}。当前消息 runtime 会自动把图片下到本地入站媒体目录;Hermes 默认是 ~/.hermes/media/inbound/,OpenClaw 默认是 ~/.openclaw/media/inbound/。本技能把 image_key 反查到本地路径,之后你用 Read 工具直接读图(Claude 原生视觉)。
image_key<media:image> 或 [Image]file_key(图片以文件形式发送)# 1) image_key → 本地路径
bash "${NAKO_SKILLS_DIR:-$HOME/.openclaw/skills}/vision/scripts/resolve.sh" img_v3_0210u_xxx
# → /root/.hermes/media/inbound/d526ab00-xxx.jpg
# 2) 拿不到 key 时的回退:取最近一张图
bash "${NAKO_SKILLS_DIR:-$HOME/.openclaw/skills}/vision/scripts/resolve.sh" --latest
# 3) 之后用 Read 读文件
# Read tool 直接传上面输出的绝对路径即可
| code | 含义 |
|---|---|
| 0 | 成功,stdout 是绝对路径 |
| 2 | 日志里找不到 key(太老被截断,或下载还没完成) |
| 3 | 路径存在但文件已被清理 |