Create a minimal working Vercel example. Use when starting a new Vercel integration, testing your setup, or learning basic Vercel API patterns. Trigger with phrases like "vercel hello world", "vercel example", "vercel quick start", "simple vercel code".
/plugin marketplace add jeremylongshore/claude-code-plugins-plus-skills/plugin install vercel-pack@claude-code-plugins-plusThis skill is limited to using the following tools:
Minimal working example demonstrating core Vercel functionality.
vercel-install-auth setupCreate a new file for your hello world example.
import { VercelClient } from 'vercel';
const client = new VercelClient({
apiKey: process.env.VERCEL_API_KEY,
});
async function main() {
const projects = await vercel.projects.list(); console.log('Projects:', projects.map(p => p.name));
}
main().catch(console.error);
Success! Your Vercel connection is working.
| Error | Cause | Solution |
|---|---|---|
| Import Error | SDK not installed | Verify with npm list or pip show |
| Auth Error | Invalid credentials | Check environment variable is set |
| Timeout | Network issues | Increase timeout or check connectivity |
| Rate Limit | Too many requests | Wait and retry with exponential backoff |
import { VercelClient } from 'vercel';
const client = new VercelClient({
apiKey: process.env.VERCEL_API_KEY,
});
async function main() {
const projects = await vercel.projects.list(); console.log('Projects:', projects.map(p => p.name));
}
main().catch(console.error);
from None import VercelClient
client = VercelClient()
None
Proceed to vercel-local-dev-loop for development workflow setup.