Deploy Pilot

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If invoked in the wrong repository or context, the agent could push code to main and trigger a production deployment that affects users.

Why it was flagged

The skill explicitly frames deployment as autonomous and includes production push instructions. It asks for a deployment summary before pushing, but does not clearly require explicit user approval before a production-impacting action.

Skill content
You manage the full deployment pipeline autonomously... Production Deploy ... git push origin main
Recommendation

Require an explicit user approval step before pushing to main, promoting a deployment, changing domains, or modifying production environment variables.

What this means

A broadly scoped Vercel token could allow the agent to list, promote, change environment variables for, or otherwise affect projects beyond the intended deployment target.

Why it was flagged

The skill requires a Vercel token and uses it for production deployment operations, but the artifacts do not define token scope, project/team boundaries, or least-privilege guidance.

Skill content
"env": ["VERCEL_TOKEN"], "primaryEnv": "VERCEL_TOKEN"
Recommendation

Use a least-privilege token limited to the intended Vercel team/project where possible, and require the user to confirm the target project and environment before token-backed actions.

What this means

Users may not realize from the registry metadata that the skill depends on deployment CLIs and a Vercel credential.

Why it was flagged

The registry-facing metadata omits source and required credentials, while claw.json declares a homepage, version 1.1.0, required binaries, and VERCEL_TOKEN. This is a provenance and disclosure inconsistency rather than direct malicious behavior.

Skill content
Source: unknown; Homepage: none; Version: 0.1.2; Required env vars: none
Recommendation

Align registry metadata with claw.json, including source, version, required binaries, permissions, and credential requirements.

What this means

Running the deploy workflow in an untrusted repository could execute that repository's build or test code.

Why it was flagged

The skill instructs the agent to run local build/test commands. This is expected for a deployment skill, but these commands can execute project-defined code and scripts.

Skill content
npx tsc --noEmit ... npx vitest run ... npx next build
Recommendation

Use this skill only in repositories you trust, and review project scripts/dependencies before allowing automated build or deployment commands.