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 ويثبّتها لك.
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.
استنادا إلى تصنيف SOC المهني
| 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.