AI Code Review

AdvisoryAudited by Static analysis on May 11, 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

Using this skill may consume OpenAI account quota and may allow messages to be posted through the configured Discord webhook.

Why it was flagged

The skill asks for an OpenAI API key and optionally a Discord webhook. These credentials are expected for the stated features, but users should notice that they grant access to paid API usage and posting to a Discord channel.

Skill content
export OPENAI_API_KEY="sk-..."\nexport DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/..."  # optional
Recommendation

Use a dedicated OpenAI key with appropriate limits and a Discord webhook scoped to the intended channel; revoke them if no longer needed.

What this means

Repository changes, review summaries, and audio transcription content may leave the local environment and be processed by OpenAI or visible in Discord.

Why it was flagged

The documented workflow sends code diffs and optional audio recordings to external providers and posts summaries to Discord. This is disclosed and purpose-aligned, but it can involve sensitive source code or meeting content.

Skill content
Sends diffs to GPT-4o ... Transcribes review meeting recordings via OpenAI Whisper API ... Discord Notifications
Recommendation

Avoid using the skill on confidential code or private recordings unless those provider and Discord data-sharing terms are acceptable.

What this means

The submitted skill package may be incomplete, and any external or later-provided implementation would need separate review before running.

Why it was flagged

The documentation points to a runnable source file, but the supplied manifest contains only README.md and SKILL.md. The referenced implementation cannot be reviewed in these artifacts.

Skill content
python src/code_review_service.py
Recommendation

Do not run replacement source files or scripts from outside this package unless their origin and contents are verified.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If a matching script is later supplied and run, it could change local service state without per-action confirmation.

Why it was flagged

The described healthcheck behavior would perform autonomous service restarts and notifications. It is disclosed and no script is present, but this kind of background control should be reviewed before use.

Skill content
scripts/healthcheck.sh monitors nginx, docker, code-review-service, and whisper-api-gateway. It auto-restarts failed services and sends Discord alerts.
Recommendation

Review any healthcheck script before enabling it, and run it only with the minimum privileges needed.

What this means

If used, this helper could publish or update content under a ClawHub account.

Why it was flagged

The skill documents a helper that can publish skill directories through the ClawHub CLI. This is not automatically invoked and no implementation is included, but publishing is a higher-impact account action outside the core code-review flow.

Skill content
publish_skill(skill_path, version)\n\nPublishes a skill directory to ClawHub at the given version using the `clawhub` CLI.
Recommendation

Use any publishing helper only intentionally, after reviewing the exact files and account permissions involved.