Generate memes using 100+ templates from the memegen.link API with custom text and styling.
Works with
Supports popular templates like Drake, Buzz Lightyear, Success, and Fine, each suited to specific messaging contexts (comparisons, celebrations, irony, uncertainty)
Text encoding handles spaces, newlines, special characters, and quotes through simple character substitution ( _ for spaces, ~q for question marks, etc.)
Includes dimension and layout options for platform-specific sizing (1200x630
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionmeme-factoryExecute the skills CLI command in your project's root directory to begin installation:
Fetches meme-factory from softaworks/agent-toolkit and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate meme-factory. Access via /meme-factory in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
2
total installs
2
this week
1.4K
GitHub stars
0
upvotes
Run in your terminal
2
installs
2
this week
1.4K
stars
Create memes using the free memegen.link API and textual meme formats.
| Trigger | Description |
|---|---|
/meme-factory |
Manual invocation |
/meme-factory {template} {top} {bottom} |
Direct meme generation |
meme-factory: create a meme about X |
Natural language request |
| 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:
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.
| Character | Encoding |
|---|---|
| Space | _ or - |
| Newline | ~n |
| Question mark | ~q |
| Percent | ~p |
| Slash | ~s |
| Hash | ~h |
| Single quote | '' |
| Double quote | "" |
| Template | Use Case | Example |
|---|---|---|
buzz |
X, X everywhere | bugs/bugs_everywhere |
drake |
Comparisons | manual_testing/automated_testing |
success |
Victories | deployed/no_errors |
fine |
Things going wrong | server_on_fire/this_is_fine |
fry |
Uncertainty | not_sure_if_bug/or_feature |
changemind |
Hot takes | tabs_are_better_than_spaces |
distracted |
Priorities | my_code/new_framework/current_project |
mordor |
One does not simply | one_does_not_simply/deploy_on_friday |
| Context | Template | Why |
|---|---|---|
| Comparing options | drake |
Two-panel reject/approve format |
| Celebrating wins | success |
Positive outcome emphasis |
| Problems ignored | fine |
Ironic "everything is fine" |
| Uncertainty | fry |
"Not sure if X or Y" format |
| Controversial opinion | changemind |
Statement + challenge |
| Ubiquitous things | buzz |
"X, X everywhere" |
| Bad ideas | mordor |
"One does not simply..." |
After generating a meme:
| Platform | Dimensions |
|---|---|
| Social media (Open Graph) | 1200x630 |
| Slack/Discord | 800x600 |
| GitHub | Default |
| Avoid | Why | Instead |
|---|---|---|
| Spaces without encoding | URL breaks | Use _ or - |
| Too much text | Unreadable | 2-6 words per line |
| Wrong template | Message mismatch | Match template to context |
| Missing extension | Invalid URL | Always include .png, .jpg, etc. |
| Unencoded special chars | URL breaks | Use ~q, ~s, ~p, etc. |
| Assuming template exists | 404 error | Check templates list first |
Meme generation is successful when:
Test command:
curl -I "https://api.memegen.link/images/buzz/test/test.png"
# Should return: HTTP/2 200
| Extension | Use Case |
|---|---|
.png |
Best quality, default |
.jpg |
Smaller file size |
.webp |
Modern, good compression |
.gif |
Animated templates |
?width=800
?height=600
?width=800&height=600 (padded to exact)
?layout=top # Text at top only
?layout=bottom # Text at bottom only
?layout=default # Standard top/bottom
View available: https://api.memegen.link/fonts/
?font=impact (default)
Use any image as background:
https://api.memegen.link/images/custom/hello/world.png?style=https://example.com/image.jpg
Template: fry
https://api.memegen.link/images/fry/not_sure_if_feature/or_bug.png
Template: interesting
https://api.memegen.link/images/interesting/i_dont_always_test/but_when_i_do_i_do_it_in_production.png
Template: yodawg
https://api.memegen.link/images/yodawg/yo_dawg_i_heard_you_like_docs/so_i_documented_the_documentation.png
Template: fine
https://api.memegen.link/images/fine/memory_usage_at_99~/this_is_fine.png
Template: success
https://api.memegen.link/images/success/deployed_to_production/zero_downtime.png
Here's a relevant meme:

def generate_status_meme(status: str, message: str):
template_map = {
"success": "success",
"failure": "fine",
"review": "fry",
"deploy": "interesting"
}
template = template_map.get(status, "buzz")
words = message.split()
top = "_".join(words[0:3])
bottom = "_".join(words[3:6])
return f"https://api.memegen.link/images/{template}/{top}/{bottom}.png"
from meme_generator import MemeGenerator
meme = MemeGenerator()
url = meme.generate("buzz", "features", "features everywhere")
print(url)
| Endpoint | Purpose |
|---|---|
/templates/ |
List all templates |
/templates/{id} |
Template details |
/fonts/ |
Available fonts |
/images/{template}/{top}/{bottom}.{ext} |
Generate meme |
| Document | Content |
|---|---|
| markdown-memes-guide.md | 15+ textual meme formats (greentext, copypasta, ASCII, etc.) |
| examples.md | Practical usage examples |
| Script | Purpose |
|---|---|
| meme_generator.py | Python helper for meme generation |
Generate contextual memes to:
Golden rule: Keep text concise, match template to context.
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Solid pick for teams standardizing on skills: meme-factory is focused, and the summary matches what you get after install.
Useful defaults in meme-factory — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Useful defaults in meme-factory — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
meme-factory is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
meme-factory fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
meme-factory is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend meme-factory for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
meme-factory has been reliable in day-to-day use. Documentation quality is above average for community skills.
meme-factory has been reliable in day-to-day use. Documentation quality is above average for community skills.
meme-factory fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 73