Crypto Cog

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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

A research task may continue through the external CellCog agent after launch and then notify the session when complete.

Why it was flagged

The skill instructs the user to hand a broad research prompt to CellCog in agent mode, including an asynchronous OpenClaw workflow. This is central to the skill's purpose, but it is still delegated agent activity.

Skill content
**OpenClaw (fire-and-forget):**
result = client.create_chat(... notify_session_key="agent:main:main", ... chat_mode="agent")
Recommendation

Use explicit, bounded prompts and avoid asking the delegated agent to perform account, trading, or wallet actions unless those actions are separately reviewed and approved.

What this means

Installing or using the skill requires access to a CellCog account credential.

Why it was flagged

The skill requires a CellCog API key, which is expected for using the CellCog service. The provided artifacts do not show misuse, leakage, or unrelated use of the credential.

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

Provide only a CellCog API key intended for this service, keep it out of prompts and shared files, and revoke it if you stop using the skill.

What this means

The security of actual execution depends partly on the external CellCog dependency that is not included in this artifact set.

Why it was flagged

The instruction-only skill depends on the external CellCog SDK/package, but the provided artifact does not include version pinning or package provenance. This is purpose-aligned, not evidence of malicious behavior.

Skill content
dependencies: [cellcog]
...
from cellcog import CellCogClient
Recommendation

Install the CellCog dependency only from the official source, prefer pinned versions where available, and review the separate CellCog skill or package documentation before use.

What this means

Portfolio allocations, wallet-related questions, and other private crypto research details may leave the local agent context and be handled by CellCog.

Why it was flagged

The skill sends user prompts to CellCog, and the example prompts include portfolio analysis. That means sensitive financial or wallet-related details may be processed by the external provider.

Skill content
client.create_chat(prompt="[your task prompt]", ...)
...
"Analyze my portfolio: 50% ETH, 20% SOL, 15% LINK, 10% ARB, 5% PEPE"
Recommendation

Do not include seed phrases, private keys, exchange passwords, or unnecessary personally identifying financial details in prompts; review CellCog's data handling terms if privacy is important.