add-vercel

Solid

Add Vercel deployment capability to NanoClaw agents. Installs the Vercel CLI in agent containers and sets up OneCLI credential injection for api.vercel.com. Use when the user wants agents to deploy web applications to Vercel.

AI & Automation 29,591 stars 12899 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Add Vercel This skill gives NanoClaw agents the ability to deploy web applications to Vercel. It installs the Vercel CLI in agent containers and configures OneCLI to inject Vercel credentials automatically. **Principle:** Do the work — don't tell the user to do it. Only ask for their input when it genuinely requires manual action (pasting a token). ## Phase 1: Pre-flight ### Check if already applied Check if the container skill exists: ```bash test -d container/skills/vercel-cli && echo "INSTALLED" || echo "NOT_INSTALLED" ``` If `INSTALLED`, skip to Phase 3 (Configure Credentials). ### Check prerequisites Verify OneCLI is working (required for credential injection): ```bash onecli version 2>/dev/null && echo "ONECLI_OK" || echo "ONECLI_MISSING" ``` If `ONECLI_MISSING`, tell the user to run `/init-onecli` first, then retry `/add-vercel`. Stop here. ## Phase 2: Install Container Skill Copy the bundled container skill into the container skills directory: ```bash rsync -a .claude/skills/add-vercel/container-skills/ container/skills/ ``` Verify: ```bash head -5 container/skills/vercel-cli/SKILL.md ``` ## Phase 3: Configure Credentials ### Check if Vercel credential already exists ```bash onecli secrets list 2>/dev/null | grep -i vercel ``` If a Vercel credential already exists, skip to Phase 4. ### Set up Vercel API credential The agent needs a Vercel personal access token. Tell the user: > I need your Vercel personal access token. Go to https://vercel.com...

Details

Author
nanocoai
Repository
nanocoai/nanoclaw
Created
4 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category