ソース情報
- リポジトリ
- openlark/skills
- ソースの最終更新活動
- 2026年6月2日 01:44
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/openlark/skills --skill vercel-cliコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Crawl and analyze a website's visual design system from a given URL, identifying design style, color system, typography, component styles, and UI patterns. Output a structured design specification document for UI generation. Suitable for competitive design analysis, UI restoration, design system reverse engineering, style migration, and similar scenarios.
Agent Skills standard reference guide. Covers SKILL.md specification format, progressive loading, skill discovery and activation, authoring best practices, quality evaluation, description optimization, and more.
Loop Engineering AI programming paradigm guide. Covers the core concepts of transitioning from single prompt calls to autonomous loop systems, key components, loop patterns, configuration examples, and anti-patterns.
SOC 職業分類に基づく
SKILL.md を表示中
| name | vercel-cli |
| description | Vercel CLI skill for deploying and managing Vercel projects from the terminal. |
| metadata | {"openclaw":{"emoji":"▲","requires":{"bins":"[Truncated]","env":"[Truncated]"},"primaryEnv":"VERCEL_TOKEN"}} |
Vercel CLI skill for deploying and managing Vercel projects from the terminal. Use when the user wants to deploy, list, inspect, rollback, or manage Vercel deployments; configure domains, SSL certificates, environment variables; manage teams or view usage; or needs help with vercel CLI commands.
Install Vercel CLI:
pnpm i -g vercel
Update:
pnpm i -g vercel@latest
Verify Version:
vercel --version
Interactive Login:
vercel login
CI/CD Environment (Recommended):
VERCEL_TOKEN environment variablePrefer using the
VERCEL_TOKENenvironment variable over the--tokenflag to avoid exposing the token in process lists or logs.
vercel # Deploy to preview environment
vercel deploy --prod # Deploy to production environment
vercel build # Build locally
vercel dev # Develop locally simulating Vercel environment
vercel init # Initialize from official template
vercel link # Link local directory to Vercel project
vercel pull # Pull remote environment variables to local
vercel list [project] # List recent deployments
vercel inspect [url/id] # View deployment details (add --logs for build logs)
vercel logs [url] # View runtime logs (--follow for real-time tracking)
vercel promote [url/id] # Promote specified deployment to production
vercel redeploy [url/id] # Rebuild and redeploy
vercel rollback # Rollback production environment
vercel remove [url] # Remove deployment or project
vercel bisect # Bisect to locate problematic deployment
vercel alias set [url] [domain] # Set custom domain
vercel alias rm [domain] # Remove domain alias
vercel domains ls # List domains
vercel domains add [domain] # Add domain
vercel certs ls # List SSL certificates
vercel certs issue [domain] # Issue certificate for domain
vercel env ls # List environment variables
vercel env add [name] [env] # Add (env optional: production/preview/development)
vercel env rm [name] [env] # Remove environment variable
vercel env pull [file] # Pull to local file
vercel whoami # Current logged-in username
vercel teams list # List teams
vercel switch [team] # Switch team
vercel usage # View usage and billing
vercel api [endpoint] # Make authenticated API request (Beta)
vercel curl [path] # HTTP request (Beta)
vercel cache purge # Purge CDN cache
vercel blob # Vercel Blob storage operations
vercel integration # Manage integrations
vercel mcp # MCP client configuration
--help for detailed parameters: vercel help [command]vercel is equivalent to vercel deploy--prod / --production flag deploys to production environment--follow for logs command enables real-time log trackingVERCEL_TOKEN environment variable for automated authentication; do not expose token on the command linereferences/commands.md for detailed command parameter descriptions