Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

meme-generation模因一代

Agent Skill

meme-generation 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,958

周安装

80

GitHub Stars

12

下载量

627
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:meme-generation(模因一代)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/meme-generation
安装命令:
npx skills add https://github.com/eachlabs/skills --skill meme-generation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill meme-generation

简介

meme-generation 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理仓库状态与变更事项。

  • 适用于围绕代码协作、仓库状态跟踪或 Issue 管理等工作流程。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限与维护状态。
  • 使用前应核实是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库内容进一步验证具体功能边界。

SKILL.md

Meme Generation

Generate viral-worthy memes using each::sense. This skill creates images optimized for social media sharing, brand marketing, workplace humor, and internet culture engagement.

Features

  • Classic Templates: Generate images in popular meme formats (Drake, Distracted Boyfriend, etc.)
  • Custom Memes: Create original meme images from any prompt
  • Brand Memes: Marketing-friendly memes that maintain brand voice
  • Reaction Memes: Expressive images for social media responses
  • Comparison Memes: Side-by-side or before/after formats
  • Trending Formats: Current viral meme styles and formats
  • Text Overlay Memes: Images with integrated meme text
  • Multi-Panel Memes: Comic-strip style sequential panels
  • Corporate/Workplace Memes: Office humor and professional satire
  • Industry-Specific Memes: Niche humor for specific communities

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a meme about developers when the code works on the first try - shocked and suspicious expression"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Meme Formats & Styles

FormatDescriptionBest For
Classic TemplateRecognizable meme formatsMaximum shareability
Reaction ImageExpressive faces/situationsSocial media replies
ComparisonSide-by-side panelsBefore/after, expectations vs reality
Multi-Panel2-4 panel sequencesStorytelling, escalation humor
Text OverlayLarge impact text on imageDirect, punchy jokes
Surreal/AbstractAbsurdist imageryGen-Z humor, niche communities

Use Case Examples

1. Classic Meme Template Generation

Generate images in the style of popular meme templates.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a meme image in the style of the Drake meme format. Two panels vertically stacked. Top panel: a person looking away dismissively with hand up rejecting something. Bottom panel: same person smiling and pointing approvingly. Clean white background, expressive poses."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

2. Custom Meme from Prompt

Create an original meme image from a creative concept.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a meme image of a cat sitting at a computer desk looking extremely confused at the screen, office setting, dramatic lighting from the monitor, the cat has reading glasses on. Funny and relatable vibe for when you receive a confusing email."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

3. Brand Meme Marketing

Create memes suitable for brand social media accounts.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a clean, brand-safe meme image for a coffee company social media. Show a person dramatically hugging a giant coffee cup like it is their best friend. Office morning setting, humorous but professional enough for brand use. Warm, inviting colors."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

4. Reaction Meme

Generate expressive images for social media reactions.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a reaction meme image of a person with an extremely exaggerated surprised face, eyes wide, jaw dropped, hands on cheeks. Simple background, highly expressive, perfect for replying to shocking news or announcements online."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

5. Comparison Meme

Create side-by-side comparison format memes.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a two-panel comparison meme image. Left panel labeled area for expectation: a person confidently presenting at a meeting looking professional. Right panel labeled area for reality: the same person nervously fumbling with papers, coffee spilled, chaotic scene. Corporate office setting."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

6. Trending Format Meme

Generate memes in currently popular viral styles.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a meme image in the style of the woman yelling at cat meme format. Left side: an angry woman pointing and yelling expressively at a dinner table. Right side: a confused white cat sitting at a table with a plate in front of it, looking bewildered. Split panel format."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

7. Text Overlay Meme

Create images designed for bold text overlays.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a meme background image of a galaxy brain or expanding brain concept. Show a person in meditation pose with a glowing, oversized brain emanating light and energy. Cosmic background with stars. Leave clear space at top and bottom for impact font text overlay."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

8. Multi-Panel Meme

Generate comic-strip style sequential memes.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a 4-panel meme comic strip. Panel 1: person calmly saying they will just check one email. Panel 2: person still at computer, slightly concerned. Panel 3: person surrounded by multiple screens, stressed. Panel 4: person collapsed at desk, it is now nighttime. Office setting, escalating chaos."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "session_id": "multi-panel-meme-001"
  }'

9. Corporate/Workplace Meme

Create office humor memes for professional contexts.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a workplace meme image. Scene: a meeting room with a person presenting a very simple obvious solution on a whiteboard while everyone else at the table looks shocked and amazed as if it is genius. Exaggerated reactions, corporate office setting, humorous take on overthinking simple problems."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

10. Industry-Specific Meme

Generate memes for niche professional communities.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a programmer/developer meme image. A developer sitting at a desk surrounded by multiple monitors showing code, but they are intensely focused on a tiny bug that is literally represented as a small cartoon bug on the screen. The bug is tiny but the developer is using a magnifying glass. Dramatic lighting, humorous debugging scene."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max"
  }'

Best Practices

Creating Shareable Memes

  • Clear Composition: Keep the main subject prominent and uncluttered
  • Expressive Faces: Exaggerated expressions work best for reaction memes
  • Text Space: Leave room for impact font overlays when needed
  • Universal Humor: Aim for broadly relatable situations
  • High Contrast: Ensure the image reads well at small sizes (mobile feeds)

Brand Meme Guidelines

  • Stay On-Brand: Humor should align with brand voice
  • Avoid Controversy: Steer clear of divisive topics
  • Timely but Timeless: Balance trending formats with lasting appeal
  • Quality Over Quantity: One great meme beats ten mediocre ones
  • Know Your Audience: Different platforms have different humor styles

Technical Tips

  • Square Format (1:1): Best for Instagram, Twitter, Facebook
  • Vertical (4:5 or 9:16): Better for Stories, TikTok, mobile feeds
  • Resolution: Aim for at least 1080px on the shortest side
  • File Size: Keep reasonable for fast loading

Prompt Tips for Memes

When creating meme images, include these details:

  1. Format: Specify panel layout (single, two-panel, four-panel, etc.)
  2. Expression: Describe the emotional expression clearly
  3. Setting: Where does the scene take place?
  4. Style: Realistic, cartoon, surreal, etc.
  5. Text Space: Request areas for text overlay if needed
  6. Context: What situation is this meme depicting?

Example Prompt Structure

"Create a [format] meme image. [Scene description] with [expression/action].
[Setting details]. [Style preferences].
[Text space requirements if any]."

Mode Selection

Ask your users before generating:

"Do you want fast & cheap, or high quality?"

ModeBest ForSpeedQuality
maxFinal memes, high-engagement posts, brand contentSlowerHighest
ecoQuick drafts, A/B testing concepts, bulk generationFasterGood

Multi-Turn Meme Iteration

Use session_id to iterate on meme concepts:

# Initial meme concept
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a meme of a dog at a computer looking frustrated"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "meme-project-001"
  }'

# Iterate based on feedback
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Make the dog expression more dramatic, add coffee cup for extra relatability"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "meme-project-001"
  }'

# Request variation
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a cat version of the same meme for comparison"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "meme-project-001"
  }'

Meme Series Generation

Generate multiple related memes for a campaign:

# Meme 1 - Monday mood
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create a weekday mood meme - Monday: exhausted office worker barely awake at desk"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "eco",
    "session_id": "weekday-series"
  }'

# Meme 2 - Friday mood (same session for consistency)
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Same style but Friday: the same worker now energetic and celebrating, leaving the office"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "eco",
    "session_id": "weekday-series"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentAdjust prompt - avoid offensive, harmful, or inappropriate content
TimeoutComplex generationSet client timeout to minimum 10 minutes

Related Skills

  • each-sense - Core API documentation
  • image-generation - General image generation
  • product-visuals - Product photography and marketing visuals
  • meta-ad-creative-generation - Social media ad creatives

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.91%
按下载量换算219

Claude

32.27%
按下载量换算202

Cursor

18.07%
按下载量换算113

Gemini CLI

10.83%
按下载量换算68

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills