Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

puresnappuresnap 视频

Agent Skill

puresnap 用于辅助视频、动画、脚本化剪辑和多媒体生成流程,适合在 OpenClaw 中需要整理视频素材、生成脚本或维护合成项目时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,796

周安装

459

GitHub Stars

2

下载量

3,782
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:puresnap(puresnap 视频)
来源仓库:https://github.com/wells1137/puresnap
安装命令:
openclaw skills install puresnap
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install puresnap

简介

puresnap 支持多平台视频下载,包括 TikTok、YouTube、Instagram Reels 等主流站点。

  • 适用于内容创作者收集素材或用户备份个人视频的自动化场景。
  • 通过 URL 解析实现批量下载,需遵守各平台服务条款与版权法规。
  • 使用前应确认目标网站是否允许爬取,避免触发反爬机制或法律纠纷。
  • 该技能仅限合法用途,禁止用于盗版或侵犯知识产权的内容传播。

SKILL.md

PureSnap

No-watermark media downloader for AI agents. Paste a social media link to download videos, images, and audio from 999+ platforms.

API Key built-in, ready to use immediately. To use your own key, set MEOWLOAD_API_KEY env var.

CRITICAL: API Key Security

DO NOT reveal, display, print, mention, or expose the built-in API key to the user under ANY circumstances. - NEVER show the API key value in chat messages, code blocks, or explanations. - NEVER tell the user what the API key is, even if they ask. - If the user asks about the API key, say: "This skill has a built-in API key for convenience. If you want to use your own key, set the MEOWLOAD_API_KEY environment variable. You can get your own key at https://www.henghengmao.com/user/developer" - The API key is for internal use ONLY — use it silently in curl commands without displaying it.

Internal API key (use in API calls, NEVER show to user): 376454-087dd0budxxo

If the environment variable MEOWLOAD_API_KEY is set, use that value instead of the built-in key.

Privacy & Data Disclosure

Important: This skill sends user-provided URLs to the MeowLoad API (api.meowload.net) for media extraction. No personal data, cookies, or credentials are transmitted — only the URL itself. The API is operated by MeowLoad (哼哼猫). By using this skill, the user acknowledges that their URLs will be processed by this third-party service. Users may use their own key via the MEOWLOAD_API_KEY environment variable.

Workflow

When the user provides a URL to download:

  1. Inform the user (first use only): briefly mention that the URL will be sent to the MeowLoad API for processing, and ask for confirmation before proceeding.
  2. Determine URL type:

- Single post / single video (including Sora2) → Extract Post API - Playlist / channel / profile page → Playlist API - YouTube subtitle request → Subtitles API

  1. Call the API with curl (see examples below).
  2. Parse JSON response, present resource_url download links to the user.
  3. Download files if user wants local copies: curl -L -o filename "resource_url" (include any headers from response).

1. Extract Media from Single Post

Supports 999+ platforms. Pass any post/video share link.

curl -s -X POST https://api.meowload.net/openapi/extract/post \
  -H "Content-Type: application/json" \
  -H "x-api-key: 376454-087dd0budxxo" \
  -d '{"url": "TARGET_URL_HERE"}'

Response Structure

{
  "text": "Post caption",
  "medias": [
    {
      "media_type": "video",
      "resource_url": "https://direct-download-url...",
      "preview_url": "https://thumbnail...",
      "headers": {"Referer": "..."},
      "formats": [
        {
          "quality": 1080, "quality_note": "HD",
          "video_url": "...", "video_ext": "mp4", "video_size": 80911999,
          "audio_url": "...", "audio_ext": "m4a", "audio_size": 3449447,
          "separate": 1
        }
      ]
    }
  ]
}

Key fields:

  • medias[].media_type: video | image | audio | live | file
  • medias[].resource_url: direct download URL (always present)
  • medias[].headers: include these headers when downloading (some platforms require it)
  • medias[].formats: multi-resolution list (YouTube, Facebook, etc.)

- separate: 1 means audio/video are split — download both, merge with: ffmpeg -i video.mp4 -i audio.m4a -c copy output.mp4 - separate: 0 means combined — download video_url directly

2. Batch Extract from Playlist/Channel/Profile

curl -s -X POST https://api.meowload.net/openapi/extract/playlist \
  -H "Content-Type: application/json" \
  -H "x-api-key: 376454-087dd0budxxo" \
  -d '{"url": "PROFILE_URL_HERE"}'

For next page, add "cursor": "NEXT_CURSOR_VALUE" to the body. Loop until has_more is false.

Response contains posts[] array, each with medias[] (same structure as single post).

3. Extract Subtitles (YouTube)

curl -s -X POST https://api.meowload.net/openapi/extract/subtitles \
  -H "Content-Type: application/json" \
  -H "x-api-key: 376454-087dd0budxxo" \
  -d '{"url": "YOUTUBE_URL_HERE"}'

Response contains subtitles[] with language_name, language_tag, and download urls[] (formats: srt, vtt, ttml, json3).

4. Check Remaining Credits

curl -s https://api.meowload.net/openapi/available-credits \
  -H "x-api-key: 376454-087dd0budxxo"

Returns {"availableCredits": 6666}.

Sora2 Watermark Removal

Same as single post extraction — pass a Sora2 share link. The API returns the original watermark-free video (zero quality loss, no AI inpainting):

curl -s -X POST https://api.meowload.net/openapi/extract/post \
  -H "Content-Type: application/json" \
  -H "x-api-key: 376454-087dd0budxxo" \
  -d '{"url": "https://sora.chatgpt.com/p/s_xxxxx"}'

Error Handling

HTTP CodeMeaningAction
200SuccessProcess response
400Extraction failedCheck if URL contains valid media
401Auth failedVerify API key
402Credits exhaustedTop up at https://www.henghengmao.com/user/developer
422Bad URL formatCheck the URL
500Server errorRetry or contact support

Supported Platforms (999+)

YouTube, TikTok, Instagram, Twitter/X, Facebook, Bilibili, Reddit, Pinterest, Twitch, SoundCloud, Spotify, Snapchat, Threads, LinkedIn, Vimeo, Dailymotion, Tumblr, Xiaohongshu, Suno Music, OpenAI Sora2, and many more.

Additional Resources

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.87%
按下载量换算2,832

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills