generating-memes
18
总安装量
12
周安装量
#19870
全站排名
安装命令
npx skills add https://github.com/geekjourneyx/meme-generator-skill --skill generating-memes
Agent 安装分布
openclaw
9
opencode
7
gemini-cli
6
kimi-cli
5
codex
5
Skill 文档
Generating Memes
Creates memes using the meme CLI tool with 298+ templates.
Quick Start
List all templates:
meme list
Search templates by keyword:
meme search <keyword>
Generate a meme:
meme generate <template> --images <paths> --texts <texts>
Popular Templates
Most commonly used templates:
| Template | Description | Type |
|---|---|---|
petpet |
Petting animation (æ¸/æ¸æ¸) | Image |
slap |
Slapping animation (ä¸å·´æ) | Image |
hug |
Hugging animation (æ±/æ±æ±) | Image |
rub |
Nuzzling animation (è´´/è´´è´´) | Image |
pat |
Patting animation (æ) | Image |
kiss |
Kissing animation (亲/亲亲) | Image |
pinch |
Pinching face (æ/æè¸) | Image |
5000choyen |
Big/small text contrast | Text |
always |
“Always” format meme | Text |
shock |
Shocked reaction (éæ) | Text |
clown |
Clown meme (å°ä¸) | Image |
stare_at_you |
Staring at you (ç¯çä½ ) | Image |
loading |
Loading animation | Text |
good_news |
Good news header (忥) | Text |
bad_news |
Bad news header (æ²æ¥) | Text |
applaud |
Applause (鼿) | Image |
praise |
Praise (表æ¬) | Text |
speechless |
Speechless (æ è¯) | Image |
run_away |
Run away (å¿«é) | Image |
suck |
Suck/Sip animation (å¸/å¦) | Image |
Usage Patterns
Image-based Memes
Templates requiring one or more images:
# Single image
meme generate petpet --images /path/to/photo.jpg
# Save to file
meme generate petpet --images /path/to/photo.jpg > output.gif
Text-based Memes
Templates using only text:
# 5000å
(big/small contrast)
meme generate 5000choyen --texts "IMPORTANT" "ignore this"
# Always meme
meme generate always --texts "the answer is 42"
Mixed (Images + Text)
Recommended Workflow
- Search for a template:
meme search <keyword> - Preview the template:
meme preview <template> - Check requirements:
meme info <template> - Generate the meme:
meme generate <template> [options]
Example: Create a Petpet Meme
# 1. Verify template exists
meme search pet
# 2. See what it needs
meme info petpet
# Output: needs 1 image, 0 text
# 3. Generate
meme generate petpet --images friend.jpg > petpet.gif
Commands Reference
| Command | Description |
|---|---|
meme list |
List all 298 templates |
meme search <keyword> |
Search templates by keyword |
meme info <template> |
Show template requirements (images, texts, params) |
meme preview <template> |
Generate template preview |
meme generate <template> |
Create meme |
meme download |
Download required resources |
Troubleshooting
“meme: command not found”
The meme CLI is not installed. Install it from GitHub:
# Download the binary
curl -L https://github.com/MemeCrafters/meme-generator-rs/releases/latest/download/meme-x86_64-unknown-linux-gnu -o meme
# Make executable and install
chmod +x meme
sudo mv meme /usr/local/bin/
# Download required resources
meme download
GitHub: https://github.com/MemeCrafters/meme-generator-rs
Alternative: Build from source with Rust:
cargo install meme-generator
meme download
Template Not Found
If generation fails with “unknown template” error:
# Verify template name
meme list | grep <template>
# Search for similar templates
meme search <keyword>
# Check template info
meme info <template>
Missing Resources
If images or templates are missing:
meme download
This downloads all required template assets.
Network Issues (Download Failed)
If meme download fails with connection timeout:
# Error example:
# WARN Failed to download: Connection timed out (os error 110)
# The CLI cannot reach cdn.jsdelivr.net
# Solution: Download resources manually from GitHub releases
# Visit: https://github.com/MemeCrafters/meme-generator-rs/releases
Note: Some templates may work without downloaded resources if they have built-in assets.
Tips
- Use
meme info <template>before generating to understand requirements - Redirect output to save:
> output.gif - Many templates support both images and text
- Some templates have optional parameters (like
--circlefor petpet) - Use
meme searchfor discovery when unsure of template name