meme

A command-line tool for creating captioned meme images from ready-made meme templates. Memes are humorous images that usually combine a picture with short text.

In plain words
What is it for?
Create a meme, add top or bottom captions, find available templates, and obtain the generated image URL.
Why use it?
It removes the need to find a template, format captions, and construct image-service requests by hand.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/dhruvmehra/makememe/memecli
Any agent
npx skills add dhruvmehra/makememe --skill memecli
Clone the repo
git clone --depth 1 https://github.com/dhruvmehra/makememe

Made for: Claude Code, Codex.

Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,820 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00121 $0.02820
Opus 5 $0.00060 $0.01410
Sonnet 5 $0.00024 $0.00564
Haiku 4.5 $0.00012 $0.00282

Measured 2d ago against content hash 53fd797f8467, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

meme scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (__init__.py, __main__.py, cli.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

> ad-hoc `python`/`curl`), do not guess template ids, and keep to one bare
src/memecli/SKILL.md · 197 lines

How it starts

The opening of the file, as written. The whole thing — 197 lines — stays where its author put it; the contents beside it link to each section on GitHub.

meme

Generate memes from the command line. The meme command wraps the free memegen.link API — no API key needed.

Prime directive. For any meme request, use this skill end-to-end and drive the meme CLI directly. Do not reimplement it (no hand-built URLs, no ad-hoc python/curl), do not guess template ids, and keep to one bare --print-url command. The Rules below are mandatory, not suggestions — follow them every time, including the very first.

Prerequisite

The meme command must be installed. Check with meme --list. If it's missing, install it:

uv tool install makememe
# or: pipx install makememe

Rules (always follow)

These apply everywhere the tool runs — interactive Claude Code and CI/CD:

  1. Always go through the meme CLI. Never hand-build a memegen.link URL, never write ad-hoc Python/scripts to construct or fetch one, and never reimplement the escaping. The CLI handles path-segment escaping, line order, errors, and output — reproducing it by hand gets these wrong.
  2. Discover template ids with meme --list (or --list --json). Don't guess ids from memory — guessed ids (buttons, twobuttons, …) 404. List first, then use a verified id.
  3. Parse output with --json, read it directly. When you need the path/URL in a script, use meme ... --json and read the JSON fields. Do not pipe it through python3 -c, sed, or awk to extract values — --json / --print-url already give you exactly what you need.
  4. In CI/CD, install and call the CLI (pip install makememememe ... --print-url). Don't curl the API or build URLs inline in a workflow step.
  5. Keep it smooth — one clean command, no files. Default to --print-url; do not download or save a file (-o, --open) unless the user explicitly asks for one. Run meme as a single bare command — never pipe it into grep/tail/awk or add redirects. A bare, consistent meme ... shape means one permission approval covers every call and nothing is written to disk; piping turns each call into a new command the user has to approve again.

Read the full file on GitHub · 197 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 197 lines · 121 tokens per session scan A 53fd797f8467

Subscribe to this mod's changes

meme is a skill published in the GitHub repository dhruvmehra/makememe (2 stars, last pushed 2mo ago), licensed MIT. It adds 121 tokens to every session and 2,820 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

SunPump Meme Token Toolkit

Create meme tokens on SunPump (sun sunpump launch), trade them — both pre-launch (bonding curve via sun sunpump buy/sell) and post-launch (SunSwap via sun swap) — and query token info, rankings, holders, portfolios, and trade history.

BofAI/skills · 65 tokens

pump-claims-readonly

Read-only query methods for PumpFun claims — unclaimed token rewards, creator vault balances, volume accumulators, distributable fees, and current-day token previews across Pump and PumpAMM programs.

nirholas/pump-fun-sdk · 45 tokens

pump-bonding-curve

Constant-product AMM bonding curve math for Pump token pricing — buy/sell quoting, fee-aware calculations, market cap computation, tiered fees, ceiling division, virtual vs real reserves, and edge-case handling.

nirholas/pump-fun-sdk · 49 tokens

pump-token-lifecycle

Full token lifecycle from creation through bonding curve trading, graduation detection, AMM migration, fee collection, and volume tracking on Solana using PumpSdk and OnlinePumpSdk.

nirholas/pump-fun-sdk · 39 tokens

pump-ai-agents

AI agent integration layer for the Pump SDK — agent instruction files, .well-known discovery, LLM context documents, 15+ skill files, MCP server prompts, and terminal management rules for GitHub Copilot, Claude, and Gemini.

nirholas/pump-fun-sdk · 53 tokens

pump-fee-sharing

Configure and distribute creator fees to multiple shareholders using the PumpFees program with BPS-based share allocation, admin management, and cross-program fee consolidation for graduated tokens.

nirholas/pump-fun-sdk · 37 tokens