Proto Cog

PassAudited by ClawScan on May 1, 2026.

Overview

Proto Cog appears purpose-aligned for creating CellCog-hosted interactive prototypes, but users should understand it uses a CellCog API key and sends prototype prompts/output to an external service.

This skill looks safe to consider if you intend to use CellCog for UI prototyping. Before installing, make sure you are comfortable sending prototype prompts to CellCog, using a CellCog API key, and receiving hosted prototype links that may be shareable.

Findings (4)

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 resources or operate under the permissions of the provided API key.

Why it was flagged

The skill requires a CellCog API key, which is expected for a CellCog-backed prototyping service but gives the agent access to that service account or quota.

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

Use a dedicated or limited-scope CellCog API key if available, monitor usage, and avoid placing secrets directly in prototype prompts.

What this means

Confidential product ideas, customer data, or internal designs included in prompts could be sent to CellCog and appear in hosted prototypes.

Why it was flagged

The skill discloses that generated prototypes are hosted externally and shareable by URL, so user prompts and generated UI artifacts may leave the local environment.

Skill content
CellCog generates **real HTML/CSS/JS prototypes** hosted on live URLs. Share a link, get feedback on the actual experience
Recommendation

Do not include sensitive data unless CellCog’s privacy and sharing controls meet your needs; review hosted outputs before sharing links.

What this means

A prototype-generation job may continue after it is started and may use external service resources until it completes.

Why it was flagged

The documented OpenClaw workflow can start an asynchronous CellCog agent-mode task that reports back to the main session. This is disclosed and aligned with prototype generation, but it is still a tool action users should intentionally trigger.

Skill content
OpenClaw (fire-and-forget):\n```python\nresult = 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

Start CellCog tasks only with clear user intent, use descriptive task labels, and check CellCog’s timeout/cancellation guidance when running longer jobs.

What this means

The behavior of the overall workflow depends partly on the referenced CellCog client or skill, not just this instruction file.

Why it was flagged

The skill relies on a referenced CellCog dependency/skill for the SDK details, which is expected for this integration but means users should trust and review that dependency as well.

Skill content
dependencies: [cellcog]\n...\nFor your first CellCog task in a session, read the **cellcog** skill for the full SDK reference
Recommendation

Install or use the CellCog dependency only from the expected publisher/source and review its credential and data-handling instructions.