Dash Cog

Security checks across malware telemetry and agentic risk

Overview

Dash Cog is a coherent CellCog-powered dashboard generator, but users should notice that it uses an API key and may send prompts or uploaded data to an external agent service.

This skill appears purpose-aligned and not malicious based on the provided artifacts. Before installing, make sure you trust CellCog, protect your CELLCOG_API_KEY, and avoid uploading confidential, regulated, or secret data unless your organization approves CellCog for that use.

VirusTotal

65/65 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI03: Identity and Privilege Abuse
Low
What this means

Installing and using the skill requires handling a sensitive API key.

Why it was flagged

The skill requires a CellCog API key, giving the workflow access to a user's CellCog account or quota. This is expected for the advertised CellCog integration.

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

Store the API key securely, avoid pasting it into prompts, and rotate or revoke it if you suspect exposure.

#
ASI07: Insecure Inter-Agent Communication
Medium
What this means

Prompts, uploaded CSV/JSON/Excel data, and business context may leave the local environment for CellCog processing.

Why it was flagged

The documented workflow sends the user's task prompt to CellCog's chat API. The same document also describes file uploads and agent/agent-team modes, so user-provided dashboard data may be processed by an external service.

Skill content
result = client.create_chat(\n    prompt="[your task prompt]", ...\n    chat_mode="agent",\n)
Recommendation

Only send data you are allowed to share with CellCog, remove secrets or regulated personal data when possible, and review CellCog's data-handling terms before uploading sensitive business files.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

The safety and behavior of the workflow also depend on the referenced CellCog component.

Why it was flagged

The skill relies on a separate CellCog dependency or skill that is not included in the provided artifact contents. This is not suspicious by itself, but it means important behavior may be defined outside this single SKILL.md.

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

Install the CellCog dependency from the expected source and review its own instructions and permissions before using this skill with sensitive data.

#
ASI10: Rogue Agents
Low
What this means

A requested dashboard-generation job may continue running remotely until completion and may consume service quota.

Why it was flagged

The documented OpenClaw mode creates an asynchronous agent task and notifies the session when done. This is clearly disclosed and aligned with the skill purpose, but it is still autonomous remote work after the initial request.

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

Use fire-and-forget mode only for tasks you intend CellCog to complete, and monitor returned notifications or task labels for completion.