Agent Skillsopensquilla/opensquilla › awesome-webpage-image-download

awesome-webpage-image-download

GitHub

用于从网页搜索结果中确定性下载图片。接收标准输入中的候选URL,通过Python HTTP API下载并验证MIME类型和文件头,按槽位ID保存文件,并输出下载完成或未完成状态记录。

src/opensquilla/skills/bundled/awesome-webpage-image-download/SKILL.md opensquilla/opensquilla

Trigger Scenarios

需要批量下载指定URL的图片 AwesomeWebpageMetaSkill搜索后的资源获取阶段

Install

npx skills add opensquilla/opensquilla --skill awesome-webpage-image-download -g -y
More Options

Non-standard path

npx skills add https://github.com/opensquilla/opensquilla/tree/main/src/opensquilla/skills/bundled/awesome-webpage-image-download -g -y

Use without installing

npx skills use opensquilla/opensquilla@awesome-webpage-image-download

指定 Agent (Claude Code)

npx skills add opensquilla/opensquilla --skill awesome-webpage-image-download -a claude-code -g -y

安装 repo 全部 skill

npx skills add opensquilla/opensquilla --all -g -y

预览 repo 内 skill

npx skills add opensquilla/opensquilla --list

SKILL.md

Frontmatter
{
    "name": "awesome-webpage-image-download",
    "homepage": "",
    "metadata": {
        "opensquilla": {
            "risk": "high",
            "requires": {
                "bins": [
                    "python3"
                ],
                "config": [
                    "awesome_webpage.output_dir"
                ]
            },
            "capabilities": [
                "network-read",
                "filesystem-write"
            ]
        }
    },
    "entrypoint": {
        "args": [
            "--output-dir",
            "{{ with.output_dir }}",
            "--local-path-prefix",
            "{{ with.local_path_prefix | default('project\/assets\/images') }}"
        ],
        "parse": "text",
        "stdin": "{{ with.payload }}",
        "command": "python {baseDir}\/scripts\/image_download.py",
        "timeout": 120
    },
    "provenance": {
        "origin": "opensquilla-original",
        "license": "Apache-2.0",
        "maintained_by": "OpenSquilla"
    },
    "description": "Deterministic image downloader for AwesomeWebpageMetaSkill search results. Use as skill_exec to fetch candidate image URLs into the configured local project tree without sandboxed shell curl.",
    "description_zh": "为AwesomeWebpageMetaSkill搜索结果提供确定性的图片下载器。作为skill_exec使用,将候选图片URL抓取到配置的本地项目目录,无需沙箱内的shell curl。",
    "user-invocable": false,
    "disable-model-invocation": true
}

AwesomeWebpage Image Download

Internal deterministic downloader used by AwesomeWebpageMetaSkill after the bounded web-search step has produced candidate image URLs.

It receives normalized media slots and search output on stdin, downloads direct image URLs with Python HTTP APIs, validates the response MIME/magic bytes, saves files by slot_id, and emits IMAGE_READY: records plus IMAGE_DOWNLOAD_INCOMPLETE: when any requested image slot remains unfilled.

Version History

  • f662be3 Current 2026-07-31 11:47
  • 7f72a32 2026-07-05 18:38

Same Skill Collection

src/opensquilla/skills/bundled/advanced-dubbing-studio/SKILL.md
src/opensquilla/skills/bundled/ai-video-script/SKILL.md
src/opensquilla/skills/bundled/audio-cog/SKILL.md
src/opensquilla/skills/bundled/awesome-webpage-research/SKILL.md
src/opensquilla/skills/bundled/AwesomeWebpageMetaSkill/SKILL.md
src/opensquilla/skills/bundled/cron/SKILL.md
src/opensquilla/skills/bundled/docx/SKILL.md
src/opensquilla/skills/bundled/filesystem/SKILL.md
src/opensquilla/skills/bundled/git-diff/SKILL.md
src/opensquilla/skills/bundled/github/SKILL.md
src/opensquilla/skills/bundled/history-explorer/SKILL.md
src/opensquilla/skills/bundled/html-coder/SKILL.md
src/opensquilla/skills/bundled/html-to-pdf/SKILL.md
src/opensquilla/skills/bundled/http-fetch/SKILL.md
src/opensquilla/skills/bundled/latex-compile/SKILL.md
src/opensquilla/skills/bundled/memory/SKILL.md
src/opensquilla/skills/bundled/music-and-singing-studio/SKILL.md
src/opensquilla/skills/bundled/nano-banana-pro-openrouter/SKILL.md
src/opensquilla/skills/bundled/nano-banana-pro/SKILL.md
src/opensquilla/skills/bundled/nano-pdf/SKILL.md
src/opensquilla/skills/bundled/openrouter-video-generator/SKILL.md
src/opensquilla/skills/bundled/paper-abstract-author/SKILL.md
src/opensquilla/skills/bundled/paper-citation-planner/SKILL.md
src/opensquilla/skills/bundled/paper-experiment-stub/SKILL.md
src/opensquilla/skills/bundled/paper-outline-author/SKILL.md
src/opensquilla/skills/bundled/paper-preference-planner/SKILL.md
src/opensquilla/skills/bundled/paper-refbib-stub/SKILL.md
src/opensquilla/skills/bundled/paper-revision-author/SKILL.md
src/opensquilla/skills/bundled/paper-section-author/SKILL.md
src/opensquilla/skills/bundled/paper-source-curator/SKILL.md
src/opensquilla/skills/bundled/pptx/SKILL.md
src/opensquilla/skills/bundled/seedance-2-prompt/SKILL.md
src/opensquilla/skills/bundled/skill-creator-linter/SKILL.md
src/opensquilla/skills/bundled/skill-creator-proposals/SKILL.md
src/opensquilla/skills/bundled/skill-creator-smoke-test/SKILL.md
src/opensquilla/skills/bundled/srt-from-script/SKILL.md
src/opensquilla/skills/bundled/stack-trace-generic-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-go-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-js-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-python-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-rust-probe/SKILL.md
src/opensquilla/skills/bundled/subtitle-burner/SKILL.md
src/opensquilla/skills/bundled/swe-bench/SKILL.md
src/opensquilla/skills/bundled/text-file-read/SKILL.md
src/opensquilla/skills/bundled/title-card-image/SKILL.md
src/opensquilla/skills/bundled/video-merger/SKILL.md
src/opensquilla/skills/bundled/video-still-animator/SKILL.md
src/opensquilla/skills/bundled/voice-clone-lab/SKILL.md
src/opensquilla/skills/bundled/voice-conversion-studio/SKILL.md

Metadata

Files
0
Version
186b3c1
Hash
8a5ce05b
Indexed
2026-07-05 18:38

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-04 06:17
浙ICP备14020137号-1 $Map of visitor$