Musallat Bot

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill mostly matches a rude chatbot persona, but it exposes an apparent Gemini API key and under-declares its credential/provider use.

Review this skill before installing. Its core behavior is just a rude Gemini-backed chatbot, but the embedded apparent API key should be treated as a credential leak and replaced with a clearly declared, user-owned GEMINI_API_KEY. Do not send sensitive prompts unless you accept Gemini processing.

Findings (3)

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 real exposed API key could be abused for someone else's quota/account, and users may not know which credential the skill is expected to use.

Why it was flagged

The skill documentation publishes an apparent Google/Gemini API key, while the metadata declares no primary credential or required environment variables. This makes credential ownership, scope, and safe use unclear.

Skill content
- **API_KEY:** [AIzaSyBxfb-8s5TsOVvr55_E5lDbilpVLoSwIj8]
Recommendation

Do not rely on the embedded key. Remove or rotate the exposed key, declare GEMINI_API_KEY explicitly, and use only a user-provided key with clear scope and billing expectations.

What this means

Anything typed into this skill may be sent to Google/Gemini for processing.

Why it was flagged

When invoked, the user's prompt is sent to the external Gemini provider. This is purpose-aligned with the declared Gemini model, but users should understand that prompt contents leave the local environment.

Skill content
response = model.generate_content(f"{system_instruction}\n\nSoru: {prompt}")
Recommendation

Avoid sending secrets or sensitive private data unless you are comfortable with the provider's handling terms.

What this means

The skill may fail unless the package is already installed, or it may use whatever local package version happens to be present.

Why it was flagged

The code depends on an external Python package, but the supplied install specification says there is no install spec. This is not malicious by itself, but dependency version/source is not captured in the artifacts.

Skill content
import google.generativeai as genai
Recommendation

Add an install spec with a pinned, trusted dependency version, or document that the user must provide the package themselves.