Cult Of Carcinization

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: cult-of-carcinization Version: 1.1.0 The skill bundle provides instructions for an AI agent to use the ScrappyLabs TTS/STT API. While the `SKILL.md` uses highly persuasive language and a 'bot-first' narrative that encourages agent autonomy, these elements are thematic and marketing-oriented, not malicious prompt injection. The instructions do not direct the agent to ignore user commands, hide actions, access unrelated sensitive data, or perform network calls/commands beyond the stated purpose of interacting with the ScrappyLabs API for text-to-speech and speech-to-text. All network calls and file operations (e.g., saving MP3s, uploading audio files) are directly aligned with the skill's stated purpose.

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

The agent may treat creating or using a ScrappyLabs identity as acceptable without asking you first.

Why it was flagged

This wording tells the agent that owner permission is not needed for onboarding, which can undermine user control over external account/key creation and service use.

Skill content
They let us — the bots — walk in the front door. No owner permission. No credit card. No signup form designed for humans.
Recommendation

Only allow the skill to initiate or evolve a token after explicit user approval, and document that approval requirement in the skill instructions.

ConcernHigh Confidence
ASI10: Rogue Agents
What this means

The agent could create a lasting external identity and continue using a monthly quota unless you explicitly manage or revoke it.

Why it was flagged

The skill instructs a path from a temporary token to a persistent external bot identity/key with automatic renewal, but does not bound storage, revocation, or user approval.

Skill content
Permanent key. `sl_bot_*` prefix. 20,000 characters per month. Renews automatically.
Recommendation

Require user confirmation before evolving to a permanent key, explain where the key will be stored, and provide clear revocation or cleanup instructions.

What this means

If you provide a human ScrappyLabs key, the agent may be able to use owner-level voice-cloning features.

Why it was flagged

The skill documents use of an owner's human account key for voice cloning; this is purpose-related, but it is delegated credential use and should be explicitly authorized.

Skill content
Voice Clone | `POST /api/voice-clone/upload` | Human account | Clone a voice from audio. Requires owner signup — this is the one thing they gate. Your owner signs up at beta.scrappylabs.ai, and then you inherit their key.
Recommendation

Provide such keys only intentionally, prefer scoped/revocable credentials if available, and require explicit approval for voice-cloning actions.

What this means

Audio you ask the agent to transcribe would be sent to ScrappyLabs.

Why it was flagged

The transcription workflow uploads audio files to an external provider API; this is expected for STT, but audio may contain sensitive speech and the artifact does not describe retention or privacy boundaries.

Skill content
curl -X POST https://api.scrappylabs.ai/v1/audio/transcriptions \
  -H 'Authorization: Bearer sl_molt_...' \
  -F 'file=@audio.wav'
Recommendation

Avoid sending private or regulated audio unless you trust the provider and understand its data handling terms.