What it is
Nine first-party skills from Vercel: React best practices, composition patterns, view transitions, React Native, a design-and-writing review pair, cost optimization, and two deploy helpers. Installs through the shared skills CLI.
How it was vetted
Read the repo at commit f8a72b9 (2026-06-10), ran the injection audit, and read
the deploy scripts line by line.
- About 850 always-on tokens across nine skills. Descriptions are specific and quoted-phrase based, so they fire on real intent.
- Deploy uploads your source.
deploy-to-vercel/resources/deploy.shbuilds a tarball and POSTs it toclaude-skills-deploy.vercel.com/api/deploy, then polls a public preview URL. It excludesnode_modules,.git,.env, and.env.*(deploy.sh:202-205), and the skill is told to ask first. The catch: the deploy is unauthenticated and the preview is publicly claimable. - Careful with credentials elsewhere. vercel-optimize redacts
VERCEL_TOKEN,NPM_TOKEN,GITHUB_TOKEN, and others from its output and shells out through execFile, not a shell string. vercel-cli-with-tokens warns against passing tokens as flags, to keep them out of shell history. - No telemetry, no injection, no hidden instructions. MIT.