Code Review

WarnAudited by ClawScan on May 11, 2026.

Overview

This is mostly a code-review guide, but it can go beyond reviewing by fixing, committing, and pushing code with your GitHub privileges without clear confirmation.

Use this skill as a review assistant only if you are comfortable with its GitHub and local-command workflow. Before use, set a rule that it must ask before running project scripts, staging files, committing, or pushing. Prefer read-only GitHub access for review-only tasks and use a sandbox for untrusted repositories.

Findings (4)

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 review request could turn into remote repository changes made under the user's account.

Why it was flagged

These instructions tell the agent to stage all local changes, commit, and push them when handling CI failures on the user's PR. That can publish unintended files or code changes if not explicitly approved and scoped.

Skill content
git add .
git commit -m "fix: resolve CI failures"
git push
Recommendation

Require explicit user approval before any write action, replace `git add .` with a reviewed file list, show the diff before committing, and only push when the user specifically asks.

What this means

The agent may act with whatever repository permissions the signed-in GitHub account has.

Why it was flagged

The skill expects GitHub CLI authentication and also documents GitHub/PR operations and pushes, but the registry metadata declares no primary credential. Authenticated GitHub access is expected for PR review, but the scope and write authority are not clearly bounded.

Skill content
# 認証
gh auth login
Recommendation

Use least-privilege GitHub credentials, prefer read-only access for review-only tasks, and document exactly when write operations are allowed.

What this means

If the repository or PR is untrusted, local test/build scripts could run unsafe code on the user's machine.

Why it was flagged

Running local project scripts is a normal way to reproduce CI failures, but those scripts can execute code from the repository being reviewed.

Skill content
npm run build
npm run type-check
npm test
npm run ci
Recommendation

Run project commands only in trusted repositories or in a sandbox/container, especially for third-party PRs.

What this means

Review behavior may depend on local persistent instructions outside the skill itself.

Why it was flagged

The skill says it bases reviews on a persistent local Claude guideline file. This is purpose-aligned, but persistent instructions can influence future reviews if they are stale or modified unexpectedly.

Skill content
ガイドライン(`~/.claude/CLAUDE.md`)に基づいた体系的なコードレビュー
Recommendation

Keep `~/.claude/CLAUDE.md` reviewed and trusted, and do not place secrets or untrusted instructions in it.