Meme Cog

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: meme-cog Version: 1.0.12 The meme-cog skill bundle is a documentation-focused package designed to guide an AI agent in generating memes using the CellCog service. The SKILL.md file contains usage instructions, example prompts, and configuration details for the cellcog library, while _meta.json provides standard versioning and ownership metadata. No malicious code, data exfiltration attempts, or harmful prompt injections were identified.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Using the skill may consume or act through the user's CellCog account/API quota.

Why it was flagged

The skill requires a CellCog API key, which is an account credential. This is expected for a CellCog-powered generation service, and the artifact does not show hardcoded credentials, credential logging, or unrelated credential use.

Skill content
requires:\n      bins: [python3]\n      env: [CELLCOG_API_KEY]
Recommendation

Use a CellCog API key intended for this service, keep it secret, and review any CellCog account permissions or billing implications before use.

What this means

Meme prompts, and potentially any images or context included by the user, may be processed by CellCog rather than staying entirely local.

Why it was flagged

The documented workflow sends the user's prompt to CellCog and uses agent chat mode, including a notification session key in the OpenClaw example. This is disclosed and purpose-aligned, but it is still an external/provider-mediated flow.

Skill content
result = client.create_chat(\n    prompt="[your task prompt]",\n    notify_session_key="agent:main:main",\n    task_label="my-task",\n    chat_mode="agent",\n)
Recommendation

Avoid including private, confidential, or sensitive material in meme prompts unless you are comfortable sharing it with CellCog under its terms.