원클릭으로
vercel
Vercel Platform and API Documentation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Vercel Platform and API Documentation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Designs and executes multi-agent teams to accomplish complex tasks through iterative collaboration, quality gates, and refinement loops. Use when a user wants to accomplish any non-trivial task that would benefit from specialised agents working in sequence or parallel - e.g. writing an article, building a software feature, conducting research, producing a marketing campaign, designing a system, creating educational content, or any task that naturally decomposes into research → planning → execution → review → refinement stages. Triggers on phrases like "build me a team to...", "use agents to...", "orchestrate agents for...", or when a task is complex enough that a single agent would benefit from decomposition into specialists.
Death & Sourdough series continuity checker. MANDATORY before writing or editing ANY prose chapter for the Death & Sourdough project. Ensures cross-referencing of established facts (character details, locations, timeline, objects, quoted text, relationship dynamics) against the Continuity Bible, and updates the bible after writing. Trigger whenever: (1) writing a new chapter, (2) revising or fleshing out an existing chapter, (3) adding new characters, locations, or named details to the prose.
Create Amazon-compliant A+ Content for KDP books with text, module layouts, and image specs. Use for A+ Content creation, book detail page design, module selection, compliance checking, rejection avoidance, or KDP marketing materials.
This skill provides comprehensive guidance for using the Replicate CLI to run AI models, create predictions, manage deployments, and fine-tune models. Use this skill when the user wants to interact with Replicate's AI model platform via command line, including running image generation models, language models, or any ML model hosted on Replicate. This skill should be used when users ask about running models on Replicate, creating predictions, managing deployments, fine-tuning models, or working with the Replicate API through the CLI.
Cron-Job.org Documentation
N8N Documentation - Workflow automation platform with AI capabilities
| name | vercel |
| description | Vercel Platform and API Documentation |
Comprehensive assistance with Vercel deployment, API integration, and platform features. This skill provides practical guidance for building and deploying modern web applications on Vercel's AI Cloud platform.
This skill should be triggered when:
vercel.json for build commands, routing, environment variables, or cron jobs# Using cURL with Vercel API
curl -X GET "https://api.vercel.com/v9/projects" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json"
# Deploy to production
vercel --prod
# Deploy with environment variables
vercel --env NEXT_PUBLIC_API_URL=https://api.example.com
# Force new deployment without cache
vercel --force
# Deploy with build logs
vercel --logs
# Pull environment variables and project settings
vercel pull --yes --environment=preview --token=$VERCEL_TOKEN
# Build locally
vercel build --token=$VERCEL_TOKEN
# Deploy pre-built artifacts
vercel deploy --prebuilt --token=$VERCEL_TOKEN
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"crons": [
{
"path": "/api/every-minute",
"schedule": "* * * * *"
},
{
"path": "/api/every-hour",
"schedule": "0 * * * *"
},
{
"path": "/api/daily-cleanup",
"schedule": "0 0 * * *"
}
]
}
{
"buildCommand": "npm run build",
"outputDirectory": "dist",
"framework": "nextjs",
"installCommand": "npm install"
}
{
"env": {
"API_URL": "https://api.example.com",
"FEATURE_FLAG": "true"
},
"build": {
"env": {
"BUILD_TIME": "@now"
}
}
}
# Get team deployments
curl -X GET "https://api.vercel.com/v6/deployments?teamId=TEAM_ID" \
-H "Authorization: Bearer YOUR_TOKEN"
# Create deployment for team project
curl -X POST "https://api.vercel.com/v13/deployments?teamId=TEAM_ID" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "my-project", "files": []}'
{
"bunVersion": "1.0.0",
"functions": {
"api/**/*.ts": {
"runtime": "bun"
}
}
}
// api/hello.js
export default function handler(req, res) {
const { name = 'World' } = req.query;
res.status(200).json({
message: `Hello ${name}!`,
timestamp: new Date().toISOString()
});
}
// middleware.js
export const config = {
matcher: '/api/:path*',
};
export default function middleware(req) {
const response = NextResponse.next();
response.headers.set('x-custom-header', 'my-value');
return response;
}
The Vercel REST API operates at https://api.vercel.com following REST principles. All requests require:
application/json for all requestsAPI responses include rate limit headers:
X-RateLimit-Limit: Maximum requests allowedX-RateLimit-Remaining: Requests left in current windowX-RateLimit-Reset: Reset time (UTC epoch seconds)Exceeding limits returns HTTP 429 with "too_many_requests" error.
until query parameter and next/prev timestamps--prod flagvercel build upload only compiled outputThis skill includes comprehensive documentation in references/:
Use view to read specific reference files when detailed information is needed.
Start with basic deployment workflows:
npm i -g vercelvercel loginvercelvercel.json configuration basicsFocus on:
vercel.jsonExplore:
vercel build and vercel deploy --prebuiltvercel.json schema for configuration validationOrganized documentation extracted from official sources. These files contain:
Add helper scripts here for common automation tasks such as:
Add templates, boilerplate, or example projects here such as:
vercel.json templates for different use casesSecurity
Performance
--prebuilt for faster deployments in CI/CDConfiguration
vercel.json configurationAPI Integration
To refresh this skill with updated documentation: