基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/fuyuxiang/echo-agent --skill meme-gen命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Generate images via DALL-E, Stable Diffusion, or free alternatives. Supports multi-channel delivery.
Create and edit PowerPoint (.pptx) presentations programmatically. Requires python-pptx.
Execute Python code snippets in a sandboxed environment. Supports data analysis, visualization, and quick scripts.
| 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]]"