當使用者貼上 Instagram 連結時,自動下載該貼文的所有高解析度圖片與影片。使用 Cobalt API 進行解析,支援多圖貼文,若為私人帳號會自動回報。
Scanned 6/7/2026
Install via CLI
openskills install modbender/skill-library-mcp---
name: instagram-saver
description: 當使用者貼上 Instagram 連結時,自動下載該貼文的所有高解析度圖片與影片。使用 Cobalt API 進行解析,支援多圖貼文,若為私人帳號會自動回報。
---
# Instagram Saver
當偵測到 Instagram 連結時,使用 Cobalt API 解析並下載內容。
## Workflow
### Step 1 — 準備 API 請求 (Prepare Request)
當使用者提供 Instagram 網址(`url`)時,請準備執行 `curl` 指令。我們將使用 Cobalt API 來獲取真實的媒體下載連結。
**API Endpoint:** `https://api.cobalt.tools/api/json`
**Header:** `Content-Type: application/json`
**Header:** `Accept: application/json`
**Body:** `{"url": "{url}"}`
### Step 2 — 發送請求與解析 (Fetch & Parse)
執行以下 `curl` 指令(請將 `{url}` 替換為實際連結):
```bash
curl -X POST [https://api.cobalt.tools/api/json](https://api.cobalt.tools/api/json) \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"url": "{url}"}'No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.