meme-factory

Review·Scanned 2/12/2026

This skill generates memes via the https://api.memegen.link API and includes a Python helper scripts/meme_generator.py for URL construction. It contains runnable examples that invoke shell commands (e.g., curl -I "https://api.memegen.link/images/buzz/test/test.png", python meme_generator.py generate …) and makes network calls to https://api.memegen.link.

by softaworks·v62b5df5·56.5 KB·1,580 installs
Scanned from main at 62b5df5 · Transparency log ↗
$ vett add softaworks/agent-toolkit/meme-factoryReview findings below

Meme Factory

A Claude Code skill for generating memes using the memegen.link API and textual meme formats.

Purpose

The Meme Factory skill enables you to quickly create visual memes for various contexts - from code reviews to deployment celebrations. It uses the free memegen.link API to generate memes with custom text on popular templates, and also supports textual meme formats like greentext and copypasta.

When to Use

Use this skill when you want to:

  • Add humor to technical conversations
  • Create visual content for social media
  • Make code reviews more engaging
  • Celebrate successful deployments
  • Generate memes about bugs, features, or tech decisions
  • Need quick visual aids without design tools

How It Works

The skill leverages the memegen.link API, which generates memes on-demand using URL parameters:

https://api.memegen.link/images/{template}/{top_text}/{bottom_text}.png

Key features:

  • No API key required - Free and open-source
  • 100+ templates - Popular meme formats built-in
  • URL-based - All parameters in the URL (stateless)
  • Custom styling - Control dimensions, fonts, and backgrounds
  • Special character encoding - Handles spaces, symbols, newlines

Key Features

1. Popular Templates

  • buzz - "X, X everywhere" format
  • drake - Two-panel comparison
  • success - Celebrating wins
  • fine - "This is fine" irony
  • fry - "Not sure if..." uncertainty
  • changemind - Controversial opinions
  • distracted - Wrong priorities
  • mordor - "One does not simply..."

2. Text Formatting

  • Spaces: Use _ or -
  • Newlines: Use ~n
  • Special chars: ~q (question), ~p (percent), ~s (slash), ~h (hash)

3. Customization Options

  • Image formats: PNG, JPG, WebP, GIF
  • Dimensions: Custom width/height
  • Layout: Top, bottom, or default
  • Fonts: Multiple options available
  • Custom backgrounds: Use any image URL

4. Textual Memes

Includes 15+ text-based meme formats:

  • Greentext stories
  • Copypasta
  • ASCII art
  • Reaction emojis
  • And more (see markdown-memes-guide.md)

Usage Examples

Basic Meme

/meme-factory buzz memes memes_everywhere

Generates: https://api.memegen.link/images/buzz/memes/memes_everywhere.png

Code Review Context

/meme-factory fry not_sure_if_feature or_bug

Generates: https://api.memegen.link/images/fry/not_sure_if_feature/or_bug.png

Deployment Success

/meme-factory success deployed_to_production zero_downtime

Generates: https://api.memegen.link/images/success/deployed_to_production/zero_downtime.png

Comparing Options

/meme-factory drake manual_testing automated_testing

Generates: https://api.memegen.link/images/drake/manual_testing/automated_testing.png

Production Issues

/meme-factory fine memory_usage_at_99~ this_is_fine

Generates: https://api.memegen.link/images/fine/memory_usage_at_99~/this_is_fine.png

With Custom Dimensions

/meme-factory buzz features features_everywhere

Add query params: ?width=1200&height=630 for social media

Natural Language

meme-factory: create a meme about deploying on friday

Claude will select appropriate template (likely mordor) and generate the meme.

Quick Start

  1. Invoke the skill:

    /meme-factory
    
  2. Specify template and text:

    /meme-factory {template} {top_text} {bottom_text}
    
  3. Or use natural language:

    meme-factory: create a meme about {your topic}
    
  4. Browse templates: Visit https://api.memegen.link/templates/ to see all available templates

  5. Test the URL:

    curl -I "https://api.memegen.link/images/buzz/test/test.png"
    

Template Selection Guide

ContextRecommended TemplateWhy
Comparing two optionsdrakeTwo-panel reject/approve
Celebrating winssuccessPositive emphasis
Things going wrongfineIronic "everything is fine"
Uncertaintyfry"Not sure if X or Y"
Controversial takechangemindStatement + challenge
Something ubiquitousbuzz"X, X everywhere"
Bad ideasmordor"One does not simply..."
Wrong prioritiesdistractedBoyfriend looking at other girl

Validation Checklist

After generating a meme, verify:

  • URL returns valid image (HTTP 200)
  • Text is readable (not too long - keep 2-6 words per line)
  • Template matches the message context
  • Special characters properly encoded
  • Dimensions appropriate for platform

Platform Dimensions

PlatformRecommended Size
Social media (Open Graph)1200x630
Slack/Discord800x600
GitHubDefault

Common Pitfalls

MistakeWhy It FailsSolution
Spaces without encodingURL breaksUse _ or -
Too much textUnreadableKeep it short (2-6 words)
Wrong templateMessage mismatchMatch template to context
Missing extensionInvalid URLAlways use .png, .jpg, etc.
Unencoded special charsURL breaksUse ~q, ~s, ~p
Assuming template exists404 errorCheck templates list first

Additional Resources

Example Workflow

In Code Review

Great catch on that edge case!

![Code Review](https://api.memegen.link/images/fry/not_sure_if_feature/or_bug.png)

Let's add a test to clarify the expected behavior.

In Deployment Notification

Production deployment complete!

![Success](https://api.memegen.link/images/success/deployed_to_production/zero_downtime.png)

All health checks passing.

In Bug Report

Found an interesting issue in the payment flow:

![Bug](https://api.memegen.link/images/fine/payment_service_down/this_is_fine.png)

Rolling back to previous version while we investigate.

Summary

Meme Factory makes it easy to add humor and visual interest to technical communication. Whether you're celebrating a successful deploy, highlighting a code review comment, or just making your team laugh, this skill helps you quickly generate contextual memes without leaving Claude Code.

Golden rule: Keep text concise, match template to context, and have fun!