원클릭으로
meme-gen
Generate meme images with text overlays using Pillow. Pick templates or create custom image macros.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate meme images with text overlays using Pillow. Pick templates or create custom image macros.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create and edit PowerPoint (.pptx) presentations programmatically. Requires python-pptx.
Create and edit Excel (.xlsx) workbooks with openpyxl. Supports formulas, charts, formatting, and data analysis.
Generate images via DALL-E, Stable Diffusion, or free alternatives. Supports multi-channel delivery.
Execute Python code snippets in a sandboxed environment. Supports data analysis, visualization, and quick scripts.
GitHub CLI for issues, PRs, code search, CI logs, releases, and API queries. Requires gh CLI and auth.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | meme-gen |
| description | Generate meme images with text overlays using Pillow. Pick templates or create custom image macros. |
| version | 1.0.0 |
| metadata | {"echo":{"tags":["Meme","Image","Fun","Creative","Social"],"requires":{"pip":["Pillow"]}}} |
Create meme images with text overlays.
pip install Pillow httpx
python3 scripts/make_meme.py --template drake --top "写文档" --bottom "写 meme"
python3 scripts/make_meme.py --image url_or_path --top "TOP TEXT" --bottom "BOTTOM TEXT"
python3 scripts/make_meme.py --template distracted --top "新框架" --bottom "当前项目"
| Template | ID | Use |
|---|---|---|
| Drake | drake | Yes/No preference |
| Distracted Boyfriend | distracted | Attraction comparison |
| Change My Mind | changemymind | Strong opinion |
| This is Fine | thisisfine | Chaos acceptance |
| Two Buttons | twobuttons | Hard choice |
Font resolution order:
/System/Library/Fonts/PingFang.ttc (macOS)/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc (Linux)# From URL
python3 scripts/make_meme.py --image "https://example.com/photo.jpg" --top "顶部文字"
# From local file
python3 scripts/make_meme.py --image /tmp/photo.png --bottom "底部文字"
Browse templates: curl -s "https://api.imgflip.com/get_memes" | python3 -c "import sys,json; [print(f\"{m['id']}: {m['name']}\") for m in json.load(sys.stdin)['data']['memes'][:20]]"