Cellcog

PassAudited by ClawScan on May 1, 2026.

Overview

CellCog is a broad external AI-service integration that clearly discloses API-key use, file uploads, SDK installation, and background completion handling.

Before installing, confirm you are comfortable using the CellCog cloud service, providing a CellCog API key, installing the CellCog Python SDK, and uploading only the files you intentionally tag for processing.

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

Files placed in SHOW_FILE tags may leave the local environment and be processed by CellCog.

Why it was flagged

The skill explicitly sends user-selected local files to an external AI service; it also gives appropriate warning not to upload secrets.

Skill content
Anything inside a `<SHOW_FILE>` tag is uploaded to CellCog. Don't wrap credentials, private keys, `.env` files, SSH keys, or other sensitive material in SHOW_FILE tags
Recommendation

Only tag files you intend to share with CellCog, and avoid credentials, private keys, environment files, or confidential material unless you are comfortable uploading it.

What this means

The agent can submit tasks using the configured CellCog account and may consume CellCog credits.

Why it was flagged

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

Skill content
Set `CELLCOG_API_KEY` — the SDK picks it up automatically
Recommendation

Use a dedicated or least-privilege API key if available, monitor credit usage, and rotate the key if it is exposed.

What this means

Installing the SDK runs third-party package code from PyPI in the user’s environment.

Why it was flagged

The skill relies on an external PyPI package installed by the user; this is purpose-aligned but not pinned in the instruction.

Skill content
If import fails, install the official CellCog Python SDK:
```bash
pip install -U cellcog
```
Recommendation

Install from the stated official package source, review the package if required by your environment, and consider pinning a version for reproducible installs.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

For OpenClaw fire-and-forget tasks, results may arrive later through a background listener rather than during the original request.

Why it was flagged

The skill describes a background completion mechanism; it is disclosed and appears tied to task completion.

Skill content
Returns immediately. A background daemon monitors via WebSocket and delivers results to your session when done.
Recommendation

Use this mode only when delayed task completion is desired, and keep track of which tasks were started.