Coding Agent Local

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill is purpose-aligned with launching local coding agents, but it explicitly recommends no-approval, no-sandbox, full-tool-access modes and background execution.

Use this only for repositories where you are comfortable letting a local coding agent make changes. Avoid --yolo and bypassPermissions unless you explicitly accept the risk, keep work in isolated/version-controlled directories, monitor background sessions, and review all changes before trusting them.

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 delegated coding agent could edit files, run commands, or alter a project without normal approval prompts.

Why it was flagged

The skill explicitly directs use of modes that bypass confirmations, grant full tool access, or remove sandboxing for local coding agents.

Skill content
For Claude Code (`claude` CLI), use `--print --permission-mode bypassPermissions` ... `--print` mode keeps full tool access and avoids interactive confirmation ... `--yolo` | NO sandbox, NO approvals
Recommendation

Prefer sandboxed/approval-based modes by default, require explicit user confirmation before using bypassPermissions or --yolo, and clearly state which files or commands may be affected.

What this means

Users may believe the spawned agent is confined to one folder when it may still be able to access or modify other local files depending on the CLI mode.

Why it was flagged

A working directory is not the same as a sandbox; paired with no-sandbox/no-approval modes, this wording can overstate the containment provided.

Skill content
`workdir` | Working directory (agent sees only this folder's context) ... doesn't wander off reading unrelated files
Recommendation

Avoid describing workdir as a security boundary; explain that it is only a starting directory unless the underlying tool’s sandbox is enabled.

What this means

A background agent may continue working until it finishes or is stopped, so mistakes can continue accumulating if not monitored.

Why it was flagged

The skill intentionally runs coding agents as background sessions; it documents polling, logs, and kill controls, so this is disclosed but still important.

Skill content
bash pty:true workdir:~/project background:true command:"codex exec --full-auto 'Build a snake game'" ... process action:kill sessionId:XXX
Recommendation

Use timeouts, monitor logs, and stop background sessions promptly when they behave unexpectedly.

What this means

The skill can cause local commands and coding-agent CLIs to run in the user’s environment when invoked.

Why it was flagged

Local shell execution is central to the skill’s stated purpose, but users should understand that installing the skill enables the agent to run these local coding commands.

Skill content
Use **bash** (with optional background mode) for all coding agent work ... `command` | The shell command to run
Recommendation

Run it only in disposable or version-controlled project directories, and review generated changes before committing or deploying.