Slides Cog

PassAudited by ClawScan on May 1, 2026.

Overview

Slides Cog appears to be a coherent CellCog slide-generation helper, but it uses a CellCog API key and sends slide prompts to the CellCog service.

This skill looks purpose-aligned for creating presentations with CellCog. Before installing, make sure you trust CellCog, use a revocable API key, install the SDK from an official source, and avoid putting confidential business data or secrets into slide prompts unless you intend to share them with the service.

Findings (3)

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 CellCog account quota or access outputs under the user's CellCog account.

Why it was flagged

The skill requires a CellCog API key, which is expected for this service integration but still grants account-linked API access.

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

Use a revocable API key, store it as an environment variable, and rotate it if it is exposed or no longer needed.

What this means

Prompts and any business details included in them may be processed by the external CellCog service.

Why it was flagged

The documented workflow sends the user's task prompt to CellCog in agent mode and can notify an OpenClaw session when complete.

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 secrets or highly confidential material unless the user is comfortable with CellCog processing it and has reviewed the provider's data handling terms.

What this means

Installing or using the referenced SDK means trusting the CellCog package and its update source.

Why it was flagged

The skill relies on the external CellCog SDK/reference rather than bundled reviewed code; this is expected for the integration but introduces dependency provenance to verify.

Skill content
dependencies: [cellcog]
Recommendation

Install the CellCog SDK only from an official source and review package provenance before use.