clawline-media

star 2

Locate and retrieve Clawline uploaded assets from disk or the local download endpoint.

clickety-clacks By clickety-clacks schedule Updated 4/13/2026

name: clawline-media description: Locate and retrieve Clawline uploaded assets from disk or the local download endpoint. metadata: { "openclaw": { "skillKey": "clawline-media" } }

Clawline Media and Assets

Clawline stores uploaded assets on disk. By default:

  • Base path: ~/.openclaw/clawline-media (override with clawline.media.storagePath).
  • Assets directory: ~/.openclaw/clawline-media/assets/.

Each asset file name is the asset ID from the message payload, e.g. a_f45e....

Preferred (Local) Access

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.

Fallback (Local HTTP)

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.

Install via CLI
npx skills add https://github.com/clickety-clacks/clawdbot --skill clawline-media
Repository Details
star Stars 2
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator
clickety-clacks
clickety-clacks Explore all skills →