Claw Claude

PassAudited by ClawScan on May 13, 2026.

Overview

This is a coherent Claude Code integration, but users should understand it delegates coding work to an external CLI that can modify projects, use a logged-in Claude account, and run long tasks or subagents.

Install only if you want coding requests routed through the Claude Code CLI. Before using it on important repositories, make sure Claude Code is installed from a trusted source, confirm which Anthropic account is logged in, use plan mode for larger changes, and monitor long-running or parallel subagent tasks.

Findings (5)

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 read, modify, build, test, or scaffold local code projects when the assistant uses this skill.

Why it was flagged

The skill intentionally routes code mutation and review through an external CLI instead of the platform's built-in tools. This is its disclosed purpose, but it means the CLI can act on local project files.

Skill content
All code-related work goes through Claude Code CLI (`claude`) ... Never use built-in tools (Write / Edit / Bash code-modification commands) to directly manipulate source files.
Recommendation

Use it for projects where you are comfortable giving Claude Code write access, and ask for plan mode or explicit confirmation before large changes.

What this means

Long or parallel coding tasks could consume CPU, memory, terminal sessions, or make overlapping file changes if scoped poorly.

Why it was flagged

The skill documents background/parallel subagent use and no timeout for those invocations. This is disclosed and task-oriented, but it can keep local work running for a long time.

Skill content
Long-running task | Background subagent, main session stays responsive ... Subagents inherit the same no-timeout policy — they run to natural completion
Recommendation

Limit subagents to clearly independent tasks, monitor long runs, and stop them manually if they exceed expectations.

What this means

The skill may use the Claude Code CLI under your logged-in Anthropic account.

Why it was flagged

The integration expects the user to install Claude Code and authenticate with Anthropic. Account access is normal for this provider integration, and the artifacts do not show credential logging or unrelated use.

Skill content
npm install -g @anthropic-ai/claude-code ... claude login
Recommendation

Install Claude Code from the official source, understand which account is logged in, and review Anthropic/Claude Code permissions and billing behavior.

What this means

A future upstream package or repository change could alter what gets installed if users follow the README manually.

Why it was flagged

The README documents installation from an external GitHub repository and a global npm install. That is common for this type of CLI skill, but versions are not pinned in the documentation.

Skill content
git clone https://github.com/dajiaohuang/claude-code-skill.git
Recommendation

Prefer official Claude Code installation instructions, verify the repository before cloning, and pin or review versions for sensitive environments.

What this means

Project-level instructions or resumed session context may influence later coding work.

Why it was flagged

The workflow can create persistent project instructions and resume prior Claude Code sessions. This is normal Claude Code behavior, but persistent context can affect future tasks.

Skill content
run `claude init` to generate `CLAUDE.md`, ensuring all subsequent changes go through Claude Code ... `--resume` Resume last interactive session
Recommendation

Review generated `CLAUDE.md` files and be careful when resuming sessions in repositories that may contain untrusted instructions.