clawline-media
Locate and retrieve Clawline uploaded assets from disk or the local download endpoint.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Locate and retrieve Clawline uploaded assets from disk or the local download endpoint.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Prepare or verify OpenClaw stable/beta releases, changelogs, release notes, publish commands, and artifacts.
Send interactive HTML bubbles on Clawline via `message.sendAttachment`. Use for interactive prompts, dashboards, and reports that should render as widgets instead of raw HTML or plain text.
Discord release/beta mood summaries from Discrawl with quotes, no URLs by default, and issue/PR correlation.
Send a live terminal bubble into a Clawline chat stream. The bubble connects to a per-bubble destination via the provider over WebSocket and renders an interactive terminal inside the message flow. Use when Flynn asks to send a terminal, share a live shell, or embed a terminal in chat. Also use when another skill or workflow needs to surface a live terminal session to the user.
Send screenshots, images, logs, or generated files as actual Clawline attachments; use when the user asks to attach, send, share, upload, or show a file/screenshot in Clawline.
Explain and control the Clawline alert-instructions overlay appended to alerts.
| name | clawline-media |
| description | Locate and retrieve Clawline uploaded assets from disk or the local download endpoint. |
| metadata | {"openclaw":{"skillKey":"clawline-media"}} |
Clawline stores uploaded assets on disk. By default:
~/.openclaw/clawline-media (override with clawline.media.storagePath).~/.openclaw/clawline-media/assets/.Each asset file name is the asset ID from the message payload, e.g. a_f45e....
cat ~/.openclaw/clawline-media/assets/a_123 > /tmp/a_123.bin
file --mime-type /tmp/a_123.bin
Use the attachment's MIME type when provided; otherwise inspect with file --mime-type.
curl -f -H "Authorization: Bearer $TOKEN" \
"http://127.0.0.1:<port>/download/a_123" \
-o /tmp/a_123.bin
Prefer the filesystem path when available to avoid extra hops.