Deploy Pilot
PassAudited by VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: deploy-pilot Version: 0.1.2 The deploy-pilot skill is a standard DevOps automation tool designed to manage Next.js deployments to Vercel via GitHub. It utilizes legitimate binaries (npx, git, gh, curl) and requires the VERCEL_TOKEN environment variable, which is consistent with its stated purpose. The instructions in SKILL.md emphasize a rigorous planning protocol, pre-deployment testing (linting, type-checking, unit tests), and rollback procedures, showing no signs of malicious intent or unauthorized data exfiltration.
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.
If invoked in the wrong repository or context, the agent could push code to main and trigger a production deployment that affects users.
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.
You manage the full deployment pipeline autonomously... Production Deploy ... git push origin main
Require an explicit user approval step before pushing to main, promoting a deployment, changing domains, or modifying production environment variables.
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.
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.
"env": ["VERCEL_TOKEN"], "primaryEnv": "VERCEL_TOKEN"
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.
Users may not realize from the registry metadata that the skill depends on deployment CLIs and a Vercel credential.
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.
Source: unknown; Homepage: none; Version: 0.1.2; Required env vars: none
Align registry metadata with claw.json, including source, version, required binaries, permissions, and credential requirements.
Running the deploy workflow in an untrusted repository could execute that repository's build or test code.
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.
npx tsc --noEmit ... npx vitest run ... npx next build
Use this skill only in repositories you trust, and review project scripts/dependencies before allowing automated build or deployment commands.
