.claude/skills/deploy-to-vercel/SKILL.md
Deploy projects to Vercel through git push, CLI deploy, or fallback script. Handles linked/unlinked projects, team selection, and preview vs production deployments.
npx skillsauth add wallacedobbs428/thecalltaker deploy-to-vercelInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This documentation outlines how to deploy projects to Vercel through four primary methods, determined by your project's current state.
Before choosing a deployment strategy, gather project state by checking:
.vercel/project.json or .vercel/repo.json)1. Linked + Git Remote → Git Push This is the ideal long-term setup. After asking for user approval, commit changes and push. Vercel automatically triggers deployments; non-production branches get previews.
2. Linked + No Git Remote → Direct CLI Deploy
Use vercel deploy [path] -y --no-wait to deploy directly without git integration.
3. Not Linked + CLI Authenticated → Link First
Link the project to Vercel (using vercel link --repo for git repos or vercel link otherwise), then deploy via the appropriate method above.
4. CLI Not Available → Fallback Script
In sandboxed environments, use the deployment script at /mnt/skills/user/deploy-to-vercel/resources/deploy.sh, which requires no authentication and returns both preview and claim URLs.
--no-wait to return immediately with deployment URLsvercel ls, vercel link) to detect unlinked state — they trigger side effectsAlways provide deployment URLs to users. For fallback deployments, show both the preview URL and claim URL for account transfer.
documentation
Agentic memory system for writers - track characters, relationships, scenes, and themes
tools
Automate repetitive development tasks and workflows. Use when creating build scripts, automating deployments, or setting up development workflows. Handles npm scripts, Makefile, GitHub Actions workflows, and task automation.
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices". Fetches latest Vercel guidelines and checks files against all rules.
development
Implement web accessibility (a11y) standards following WCAG 2.1 guidelines. Use when building accessible UIs, fixing accessibility issues, or ensuring compliance with disability standards. Handles ARIA attributes, keyboard navigation, screen readers, semantic HTML, and accessibility testing.