Lucky Coding Agent

WarnAudited by ClawScan on May 10, 2026.

Overview

The skill is a coherent coding-delegation helper, but it recommends background coding agents and no-approval/no-sandbox modes that can change projects with limited containment.

Install only if you are comfortable letting external coding-agent CLIs work on your projects. Prefer sandboxed modes, avoid '--yolo' by default, run PR reviews in temporary clones or worktrees, keep everything under version control, monitor background sessions, and review diffs before accepting changes.

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

A delegated coding agent could modify important code or run commands with little opportunity for the user to review each action first.

Why it was flagged

The skill presents a background coding-agent workflow using a mode that explicitly disables sandboxing and approvals, which can allow broad project or local-environment changes without per-action review.

Skill content
| `--yolo` | NO sandbox, NO approvals (fastest, most dangerous) | ... bash pty:true workdir:~/project background:true command:"codex --yolo 'Refactor the auth module'"
Recommendation

Avoid '--yolo' unless you explicitly trust the repo and task. Prefer sandboxed modes, temporary clones/worktrees, version control checkpoints, and manual diff review before accepting changes.

What this means

Users may assume files outside the chosen project directory are protected when the delegated CLI may still be able to access more of the local environment.

Why it was flagged

The guidance may overstate the protection provided by a working directory. A workdir focuses the process but is not necessarily a security boundary, especially when the same document recommends a no-sandbox mode.

Skill content
`workdir` ... `Working directory (agent sees only this folder's context)` ... `--yolo` ... `NO sandbox, NO approvals`
Recommendation

Treat workdir as a convenience, not a sandbox. Use real sandboxing or isolated temporary directories for sensitive work, and avoid running no-sandbox agents near private files.

What this means

A coding-agent process may keep running and changing files until it finishes or is killed.

Why it was flagged

The skill intentionally starts coding agents as background sessions and provides monitoring and kill commands. This is purpose-aligned, but users should notice that work can continue after the initial command returns.

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

Monitor background sessions, review logs, and kill sessions that are no longer needed or appear to be doing unexpected work.

What this means

Actions may be performed under the user's existing Codex/Claude/OpenCode/Pi accounts and local permissions.

Why it was flagged

The skill relies on locally installed coding-agent CLIs and their local configuration, which likely means it uses the user's existing tool accounts and permissions. The artifact does not show credential theft or leakage.

Skill content
"anyBins": ["claude", "codex", "opencode", "pi"] ... `gpt-5.2-codex` is the default (set in ~/.codex/config.toml)
Recommendation

Confirm which CLI account is logged in, what permissions it has, and whether the repository is appropriate to share with that tool.

What this means

Private code, prompts, or repository context may be processed by the selected external coding-agent tool.

Why it was flagged

The skill delegates prompts and project-context work to other coding-agent CLIs. This is expected for the purpose, but the artifact does not spell out data boundaries or provider handling.

Skill content
Delegate coding tasks to Codex, Claude Code, or Pi agents via background process.
Recommendation

Use it only on repositories and prompts that are allowed under the selected provider's data policy, and remove secrets before delegating work.