Add Vercel Deployment (add-vercel)
Installs the Vercel CLI into NanoClaw agent containers and wires up OneCLI credential injection so agents can deploy web apps.
AutomationAdvanced★ 30,471⑂ 12,865AI score 7/10Last updated: Aug 9, 2026
What it does
Automates the whole process of giving NanoClaw agents the ability to deploy web applications to Vercel.
- Pre-flight checks: already installed? is OneCLI available?
- Copies the bundled
container/skills/vercel-clicontainer skill - Stores a Vercel personal access token in OneCLI and injects it as an
Authorization: Bearerheader forapi.vercel.com - Assigns the secret to every agent (merging with the existing list)
- Adds a version-pinned
vercelentry tocontainer/cli-tools.json, then builds the image - Runs a structural guard test (vitest), syncs skills to running agent groups, and restarts containers
Who it's for
- Teams running NanoClaw who want agents to ship real deployments
- Setups already using OneCLI secret injection
- Anyone who wants install → verify → sync handled in one pass instead of by hand
Examples
- "Let the agents deploy to Vercel" → the skill checks OneCLI, copies the container skill, asks for a token, and rebuilds the image.
- Running it where
vercelis already in the manifest → skips the rebuild and only configures credentials and syncs skills. - After install, an agent runs
vercel deploy --yes --prod --token placeholderfor a production deploy, with the real token injected by OneCLI.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/add-vercel folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/add-vercel/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/nanocoai/nanoclaw.git && cp -r nanoclaw/.claude/skills/add-vercel ~/.claude/skills/add-vercel⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and clone the NanoClaw repo:
git clone https://github.com/nanocoai/nanoclaw.git - Move into the repo root:
cd nanoclaw - The skill already ships at
.claude/skills/add-vercel/. For another NanoClaw checkout, copy that folder into its.claude/skills/directory. - Run
onecli versionto confirm OneCLI works; if it's missing, run/init-oneclifirst. - Create a personal access token at https://vercel.com/account/tokens and copy it (shown only once).
- Start Claude Code from the repo root and invoke
/add-vercel, or ask "add Vercel deploy capability to my agents". - Paste the token when prompted, then wait for the image build, guard test, and container restart steps to finish.
View source on GitHub ↗License: MIT