← ClaudeAtlas

meme-factorylisted

Generate memes using the memegen.link API. Use when users request memes, want to add humor to content, or need visual aids for social media. Supports 100+ popular templates with custom text and styling.
aiskillstore/marketplace · ★ 334 · Data & Documents · score 80
Install: claude install-skill aiskillstore/marketplace
# Meme Factory Create memes using the free memegen.link API and textual meme formats. --- ## Triggers | Trigger | Description | |---------|-------------| | `/meme-factory` | Manual invocation | | `/meme-factory {template} {top} {bottom}` | Direct meme generation | | `meme-factory: create a meme about X` | Natural language request | --- ## Quick Reference | Action | Format | |--------|--------| | Basic meme | `https://api.memegen.link/images/{template}/{top}/{bottom}.png` | | With sizing | `?width=1200&height=630` | | Custom background | `?style=https://example.com/image.jpg` | | All templates | https://api.memegen.link/templates/ | | Interactive docs | https://api.memegen.link/docs/ | **Additional Resources:** - [Markdown Memes Guide](references/markdown-memes-guide.md) - 15+ textual meme formats - [Examples](references/examples.md) - Practical usage examples - [meme_generator.py](scripts/meme_generator.py) - Python helper script --- ## Quick Start ### Basic Meme Structure ``` https://api.memegen.link/images/{template}/{top_text}/{bottom_text}.{extension} ``` **Example:** ``` https://api.memegen.link/images/buzz/memes/memes_everywhere.png ``` Result: Buzz Lightyear meme with "memes" at top and "memes everywhere" at bottom. ### Text Formatting | Character | Encoding | |-----------|----------| | Space | `_` or `-` | | Newline | `~n` | | Question mark | `~q` | | Percent | `~p` | | Slash | `~s` | | Hash | `~h` | | Single quote | `''` | | Double quote | `""` | ---