skills$openclaw/frinkiac
ryantenney4.0k

by ryantenney

frinkiac – OpenClaw Skill

frinkiac is an OpenClaw Skills integration for coding workflows. Search TV show screenshots and generate memes from The Simpsons, Futurama, Rick and Morty, and 30 Rock

4.0k stars2.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namefrinkiac
descriptionSearch TV show screenshots and generate memes from The Simpsons, Futurama, Rick and Morty, and 30 Rock OpenClaw Skills integration.
ownerryantenney
repositoryryantenney/frinkiac
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ryantenney/frinkiac
last updatedFeb 7, 2026

Maintainer

ryantenney

ryantenney

Maintains frinkiac in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
373 B
SKILL.md
2.8 KB
SKILL.md

name: frinkiac description: Search TV show screenshots and generate memes from The Simpsons, Futurama, Rick and Morty, and 30 Rock metadata: {"openclaw":{"emoji":"📺","requires":{"bins":["node","npx"]}}}

Frinkiac TV Screenshot & Meme Tool

Search dialogue, browse scenes, and generate memes from popular TV shows using the Frinkiac/Morbotron APIs.

Available Shows

  • simpsons - The Simpsons (via Frinkiac)
  • futurama - Futurama (via Morbotron)
  • rickandmorty - Rick and Morty
  • 30rock - 30 Rock

MCP Server Setup

This skill uses an MCP server. Add to your MCP config:

{
  "mcpServers": {
    "frinkiac": {
      "command": "npx",
      "args": ["-y", "@ryantenney/frinkiac-mcp"]
    }
  }
}

search

Search for scenes by dialogue text.

  • show: Which show to search (simpsons, futurama, rickandmorty, 30rock)
  • query: Dialogue to search for (e.g., "D'oh!", "Good news everyone")
  • limit: Max results (optional)
  • include_images: Include thumbnails (optional)

get_caption

Get detailed scene info including episode metadata and nearby frames.

  • show: Which show
  • episode: Episode key in S##E## format (e.g., "S07E21")
  • timestamp: Frame timestamp in milliseconds
  • include_nearby_images: Include thumbnails for nearby frames (optional)

get_screenshot

Get a screenshot image from a specific scene.

  • show: Which show
  • episode: Episode key in S##E## format
  • timestamp: Frame timestamp in milliseconds
  • return_url_only: Return URL instead of image data (optional)

generate_meme

Create a meme with custom text overlay. Text auto-wraps at ~35 characters per line.

  • show: Which show
  • episode: Episode key in S##E## format
  • timestamp: Frame timestamp in milliseconds
  • text: Text to overlay on the image

get_nearby_frames

Browse adjacent frames to find the perfect screenshot.

  • show: Which show
  • episode: Episode key in S##E## format
  • timestamp: Frame timestamp in milliseconds
  • include_images: Include thumbnails (optional)

get_episode

Get episode metadata and subtitles within a timestamp range.

  • show: Which show
  • episode: Episode key in S##E## format
  • start_timestamp: Start of range in milliseconds
  • end_timestamp: End of range in milliseconds

Example Workflows

Find and meme a quote:

  1. Search for dialogue: search simpsons "everything's coming up Milhouse"
  2. Get the screenshot: get_screenshot with episode/timestamp from results
  3. Generate meme: generate_meme with custom text

Browse a scene:

  1. Search for a quote to get episode/timestamp
  2. Use get_nearby_frames to find the perfect frame
  3. Use get_caption to see full context and subtitles

Get episode context:

  1. Use get_episode with a timestamp range to see all dialogue in a scene
  2. Find the exact moment you want
  3. Generate a meme or screenshot
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install frinkiac?

Run openclaw add @ryantenney/frinkiac in your terminal. This installs frinkiac into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ryantenney/frinkiac. Review commits and README documentation before installing.