Claude Code 控制器

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill is review-worthy because it encourages running Claude Code with permission prompts bypassed, including long-running background or parallel tasks that can change project files.

Install only if you are comfortable delegating code changes and command execution to Claude Code. Prefer a normal permission mode instead of `bypassPermissions`, run in a clean project directory or temporary worktree, avoid home and OpenClaw configuration directories, monitor background sessions, and manually approve destructive, publishing, or permission-changing actions.

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

Claude Code may modify project files or run commands with fewer safety prompts than the user expects.

Why it was flagged

The default foreground and background examples run Claude Code with a permission-bypass mode for arbitrary task descriptions, reducing per-action review for file edits and shell actions.

Skill content
claude --permission-mode bypassPermissions --print "你的任务描述"
Recommendation

Use a safer permission mode by default, run only in a disposable project/worktree, and require explicit user approval before writes, deletes, pushes, publishing, chmod, or other high-impact actions.

What this means

A task can continue making progress or changes while the user is not actively watching the foreground terminal.

Why it was flagged

The skill intentionally supports long-running background Claude Code sessions and gives process log, poll, and kill commands; this is disclosed and purpose-aligned but still needs supervision.

Skill content
bash workdir:/path/to/project background:true command:"claude --permission-mode bypassPermissions --print '你的任务描述'"
Recommendation

Monitor background logs regularly, keep tasks narrowly scoped, and kill sessions when the intended task is complete or unclear.

What this means

Users may believe the recommended mode is conservative even though it can weaken permission gating.

Why it was flagged

The safety guidance frames `bypassPermissions` as avoiding full permission, while the flag name indicates permission checks are being bypassed; this could give users a false sense of safety.

Skill content
不要给完全权限 - 使用 `--permission-mode bypassPermissions` 而非 `--yolo`
Recommendation

Clarify what `bypassPermissions` permits, prefer least-privilege defaults, and document when elevated/bypassed permissions are truly necessary.

What this means

Future package changes could alter the behavior of the installed CLI.

Why it was flagged

The skill depends on installing an external npm package to provide the `claude` binary; this is expected for the purpose, but the artifact does not pin a version.

Skill content
node | package: @anthropic-ai/claude-code | creates binaries: claude
Recommendation

Verify the npm package source and consider pinning or reviewing the installed Claude Code CLI version.