add-vercel

Installs the Vercel CLI in NanoClaw agent containers and configures OneCLI credential injection for api.vercel.com.

1|Updated May 22, 2026
One-click install
npx skills add https://github.com/roseDwayane/LocalizeAgenticSys --skill add-vercel-rosedwayane
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-vercel
Source: https://github.com/roseDwayane/LocalizeAgenticSys/tree/main/nanoclaw/.claude/skills/add-vercel
Command: npx skills add https://github.com/roseDwayane/LocalizeAgenticSys --skill add-vercel-rosedwayane

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires vitest.

What problem does it solve? NanoClaw agents cannot deploy web applications to Vercel out of the box because the Vercel CLI and API credentials are not wired into agent containers. This Skill automates the full setup: installing the CLI into the container image, registering a Vercel token with OneCLI, and syncing the capability to running agent groups. ## Core Features & Use Cases - Container Skill Installation: Copies a bundled vercel-cli container skill into the container skills directory and syncs it to all existing agent session groups. - Credential Injection via OneCLI: Creates a Vercel API token secret scoped to api.vercel.com and assigns it to every registered agent using selective secret mode. - Dockerfile Guard Test: Ships a vitest structural test that asserts the pinned VERCEL_VERSION arg and global pnpm install line remain present in container/Dockerfile. - Use Case: After running this Skill, an agent can execute vercel deploy --yes --prod to publish a user's web application, with OneCLI injecting the real token at the proxy level. ## Quick Start Ask the agent to add Vercel deployment capability to your NanoClaw setup and provide your Vercel personal access token when prompted.

Frequently Asked Questions about add-vercel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I give NanoClaw agents the ability to deploy to Vercel?

Run the add-vercel skill, which copies the vercel-cli container skill into container/skills, registers your Vercel token in OneCLI, and syncs the skill to all agent session groups. Agents can then run vercel deploy commands with credentials injected automatically.

How does Vercel authentication work inside NanoClaw agent containers?

OneCLI injects the real Vercel token at the HTTPS proxy level for requests to api.vercel.com. Agents pass --token placeholder on every vercel command, and the proxy replaces it with the actual credential stored as a OneCLI secret.

What Vercel token settings are required for agent deployments?

Create a personal access token at vercel.com/account/tokens with Full Account scope so agents can create projects, deploy, and manage domains. No expiration is recommended to avoid credential rotation, then register it via onecli secrets create.

Does the Vercel CLI need to be rebuilt into the container image?

The CLI ships in the base agent image via ARG VERCEL_VERSION and pnpm install -g in container/Dockerfile. If those lines are missing, the skill adds them and rebuilds with container/build.sh; otherwise no rebuild is needed.

Why does vercel deploy fail with an auth error inside the container?

Auth failures mean the Vercel token is missing or expired in OneCLI, or the secret is not assigned to that agent. Verify with vercel whoami --token placeholder, then refresh the token and reassign it using onecli agents set-secrets.