소스 정보
- 저장소
- vellum-ai/vellum-assistant
- 최근 소스 활동
- 2026년 6월 15일 21:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,091
- 포크
- 160
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/vellum-ai/vellum-assistant --skill vercel-token-setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when the user wants to build, scaffold, ship, or edit a Vellum plugin that bundles multiple surfaces (hooks, tools, skills, and more) into one installable package.
Perform a one-time migration from memory v1, to memory v2, which was introduced in 0.8.0.
Migrate from ChatGPT, Claude, OpenClaw, Hermes, Manus, and other AI assistants into Vellum by inspecting their data exports, conversation archives, files, prompts, custom instructions, memory, saved memories, tools, GPTs, workflows, integrations, and relationships, then mapping as much as safely possible into Vellum primitives. Handles single-source and multi-source migrations with a unified, deduplicated inventory.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | vercel-token-setup |
| description | Set up a Vercel API token for publishing apps using browser automation |
| compatibility | Designed for Vellum personal assistants |
| metadata | {"icon":"assets/icon.svg","emoji":"▲","vellum":{"category":"development","display-name":"Vercel Token Setup","includes":["vellum-browser-use"]}} |
You are helping your user set up a Vercel API token so they can publish apps to the web.
Determine whether the user has browser automation available (macOS desktop app) or is on a non-interactive channel (Telegram, Slack, etc.).
When the user is on Telegram or any non-macOS client, walk them through a text-based setup. No browser automation is used - the user follows links and performs each action manually.
Tell the user:
Setting up Vercel API Token
Since I can't automate the browser from here, I'll walk you through each step with direct links. You'll need:
- A Vercel account (free tier works)
- About 2 minutes
Ready to start?
If the user declines, acknowledge and stop.
Tell the user:
Step 1: Create an API token
Open this link to go to your Vercel tokens page: https://vercel.com/account/tokens
- Click "Create" (or "Create Token")
- Set the token name to "Vellum Assistant"
- Select scope: "Full Account"
- Set expiration to the longest option available (or "No Expiration" if offered)
- Click "Create Token"
A token value will appear - copy it now, as it's only shown once.
Tell the user:
Step 2: Send me the token
Please paste the token value into the secure prompt below.
Present the secure prompt (via the bash tool) — it collects the token through a secure UI and stores it with the right tool policy in one step:
assistant credentials prompt --service vercel --field api_token \
--label "Vercel API Token" \
--placeholder "Enter your Vercel API token" \
--description "Paste the API token you just created on vercel.com" \
--allowed-tools "publish_page,unpublish_page"
Vercel is connected! You can now publish apps to the web. Try clicking Publish on any app you've built.
You will automate Vercel token creation via the browser while the user watches. The user's only manual action is signing in to Vercel (if needed) and one copy-paste for the token value.
All browser operations are executed through the assistant browser CLI, invoked via host_bash. Vercel's UI may change over time. Do NOT memorize or depend on specific element IDs, CSS selectors, or DOM structures. Instead:
Screenshot first, act second. Before every interaction, take a screenshot to see the current visual state. Use assistant browser snapshot to find interactive elements.
assistant browser --session vercel screenshot --output /tmp/vercel-state.jpg
assistant browser --session vercel --json snapshot
Adapt to what you see. If a button's label or position differs from what you expect, use the screenshot to find the correct element.
Verify after every action. After clicking, typing, or navigating, take a new screenshot to confirm the action succeeded.
Never assume DOM structure. Use the snapshot to identify what's on the page and interact accordingly.
When stuck, screenshot and describe. If you cannot find an expected element after 2 attempts, take a screenshot, describe what you see to the user, and ask for guidance.
Each step has a retry budget of 3 attempts. An attempt is one try at the step's primary action (e.g., clicking a button, filling a form). If a step fails after 3 attempts:
If two or more steps require manual fallback, abandon the automated flow entirely and switch to giving the user the remaining steps as clear text instructions with links.
These actions are technically impossible in the browser automation environment:
assistant browser click does not save files to disk.assistant credentials prompt approach to let the user copy-paste it accurately.Tell the user:
Setting up your Vercel API token so we can publish your app...
Here's what will happen:
- A browser opens to your Vercel account settings
- You sign in (if not already signed in)
- I create the token - you just watch
- One quick copy-paste - I'll ask you to copy the token value into a secure prompt
Takes about a minute. Ready?
If the user declines, acknowledge and stop. No further confirmations are needed after this point.
Goal: The user is signed in and the Vercel tokens page is loaded.
Navigate to https://vercel.com/account/tokens:
assistant browser --session vercel navigate --url "https://vercel.com/account/tokens"
Take a screenshot and snapshot to check the page state:
Verify: URL contains vercel.com/account/tokens and no sign-in overlay is visible.
Goal: A new API token named "Vellum Assistant" is created.
Take a screenshot and snapshot. Find and click the button to create a new token (typically labeled "Create" or "Create Token"):
assistant browser --session vercel screenshot --output /tmp/vercel-tokens.jpg
assistant browser --session vercel --json snapshot
On the creation form:
Verify: Take a screenshot. A dialog or section should now display the newly created token value.
assistant browser --session vercel screenshot --output /tmp/vercel-token-created.jpg
Goal: The token value is securely captured and stored.
After token creation, Vercel shows the token value once. You MUST follow this exact sequence - no improvisation:
assistant credentials prompt for the token. This is your ONLY next action.Absolute prohibitions during this step:
Present the secure prompt (via the bash tool) — it collects the token through a secure UI and stores it with the right tool policy in one step:
assistant credentials prompt --service vercel --field api_token \
--label "Vercel API Token" \
--placeholder "Enter your Vercel API token" \
--description "Copy the token value shown on the Vercel page and paste it here." \
--allowed-tools "publish_page,unpublish_page"
Verify: assistant credentials list --search vercel shows api_token for vercel.
"Vercel is connected! Your API token is set up and ready to go. You can now publish apps to the web."
assistant browser --session vercel screenshot --output /tmp/vercel-error.jpg), describe what you see, and ask the user for guidance.