dseditor

Material Collector — Development skill for Claude Code

Development community

Claude Code / Agent Skill:用 gallery-dl 收集設計素材並產出情緒板.

How to install Material Collector

This entry records only its repository, not the path inside it, so there is no exact command to give. Open dseditor/material-collector and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Material Collector does

Claude Code / Agent Skill:用 gallery-dl 收集設計素材並產出情緒板。內建實測來源路線(Pinterest/Flickr/ArtStation),知道哪個站抓哪類圖。

Alternatives in Development

  • Petdex — A public gallery of animated pets for Codex, Claude Code, DeepSeek Harness, Hermes, OpenCode, Gemini CLI, and 4k ★
  • Gallery — Build a static, shareable gallery from your fidelity reports — an index of score cards plus a permalink page ( 3.6k ★
  • Foundry Ingest — Ingest raw material into the Foundry vault 99 ★

README

素材收集官 · material-collector

一個 Claude Code / Agent **Skill**:用 [gallery-dl](https://github.com/mikf/gallery-dl) 把設計師的**創作意圖**翻譯成精準的素材搜尋 → 下載 → 按主題歸檔,並產出**情緒板(moodboard)**。

重點不是「會下載」,而是**「找對圖」** —— 內建經實測的來源路線,知道哪個站抓哪類圖、哪些站被反爬牆擋、哪些站有 NSFW 風險。


🚀 安裝

方式一(推薦):直接叫你的 agent 裝

把下面這段話**整段貼給你的 agent**(Claude Code / Codex 等),它會自己判斷該放哪、用 git 裝好:

請幫我安裝 material-collector 這個 skill:
用 git clone https://github.com/dseditor/material-collector.git
放到你目前環境的 skills 目錄
(Claude Code 用 ~/.claude/skills/material-collector;
Codex 或其他 agent 放到對應的 skills/ 目錄)。
clone 完讀一下根目錄的 SKILL.md 確認成功,再告訴我裝在哪。

用白話講就是「**請幫我 clone https://github.com/dseditor/material-collector.git 裝成 skill**」。 Claude / Codex 環境多半都已有 git,agent 會自行處理路徑與驗證。

方式二:自己手動 clone

skill 資料夾即 repo 根(根目錄就是 `SKILL.md`),一行 `git clone` 到對應目錄即可:

# Claude Code — macOS / Linux
git clone https://github.com/dseditor/material-collector.git ~/.claude/skills/material-collector
# Claude Code — Windows (PowerShell)
git clone https://github.com/dseditor/material-collector.git $env:USERPROFILE\.claude\skills\material-collector

**更新到最新版**:`cd` 進該目錄後 `git pull`。

裝好後,對 agent 說「**收集素材**」「**找參考圖**」「**做情緒板**」「**gallery-dl**」即可觸發。


前置:取得 gallery-dl(免 Python)

本 skill 用官方 nightly **獨立執行檔**([gdl-org/builds](https://github.com/gdl-org/builds/releases)),內含 Python runtime,Windows / Mac 都**免裝 Python**。`/releases/latest/download/` 是永久連結,永遠抓到最新版:

**Windows (PowerShell)**

New-Item -ItemType Directory -Force F:/materials/bin | Out-Null
curl.exe -L -o F:/materials/bin/gallery-dl.exe https://github.com/gdl-org/builds/releases/latest/download/gallery-dl_windows.exe
F:/materials/bin/gallery-dl.exe --version

**macOS**

mkdir -p ~/materials/bin
curl -L -o ~/materials/bin/gallery-dl https://github.com/gdl-org/builds/releases/latest/download/gallery-dl_macos
chmod +x ~/materials/bin/gallery-dl
~/materials/bin/gallery-dl --version

情緒板功能另需 `Pillow`(`python -m pi