بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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 | 路径存在但文件已被清理 |