Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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.

AutomationAdvanced30,47112,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-cli container skill
  • Stores a Vercel personal access token in OneCLI and injects it as an Authorization: Bearer header for api.vercel.com
  • Assigns the secret to every agent (merging with the existing list)
  • Adds a version-pinned vercel entry to container/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

  1. "Let the agents deploy to Vercel" → the skill checks OneCLI, copies the container skill, asks for a token, and rebuilds the image.
  2. Running it where vercel is already in the manifest → skips the rebuild and only configures credentials and syncs skills.
  3. After install, an agent runs vercel deploy --yes --prod --token placeholder for a production deploy, with the real token injected by OneCLI.

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal and clone the NanoClaw repo: git clone https://github.com/nanocoai/nanoclaw.git
  2. Move into the repo root: cd nanoclaw
  3. The skill already ships at .claude/skills/add-vercel/. For another NanoClaw checkout, copy that folder into its .claude/skills/ directory.
  4. Run onecli version to confirm OneCLI works; if it's missing, run /init-onecli first.
  5. Create a personal access token at https://vercel.com/account/tokens and copy it (shown only once).
  6. Start Claude Code from the repo root and invoke /add-vercel, or ask "add Vercel deploy capability to my agents".
  7. Paste the token when prompted, then wait for the image build, guard test, and container restart steps to finish.