用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vellum-ai/vellum-assistant --skill influencer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | influencer |
| description | Research influencers on Instagram, TikTok, and X/Twitter through your browser |
| compatibility | Designed for Vellum personal assistants |
| metadata | {"emoji":"🔍","vellum":{"category":"browsing","display-name":"Influencer Research","includes":["vellum-browser-use"]}} |
Use browser automation for collection and host_bash helper scripts for deterministic parsing, scoring, and comparison. All browser operations are executed through the assistant browser CLI, invoked via host_bash.
host_bash for assistant browser CLI commands and helper scripts in scripts/.assistant browser chrome relay.Use deterministic routing when intent is unclear:
bun {baseDir}/scripts/influencer-intent.ts --request "<latest user request>" --has-candidates <true|false> --has-shortlist <true|false>
Use returned step to route to discover, enrich_profile, or compare_shortlist.
discover)assistant browser --session influencer --json snapshot
assistant browser --session influencer --json extract --include-links
bun {baseDir}/scripts/influencer-parse-candidates.ts --platform instagram --input-json '<json payload with extracted text/links>'
assistant browser --session influencer scroll + assistant browser --session influencer wait-for to load additional candidates.bun {baseDir}/scripts/influencer-parse-candidates.ts --platform tiktok --input-json '<json payload with extracted text>'
f=user).assistant browser --session influencer --json snapshot
assistant browser --session influencer --json extract --include-links
bun {baseDir}/scripts/influencer-parse-candidates.ts --platform twitter --input-json '<json payload with extracted text/links>'
enrich_profile)For each selected candidate profile:
bun {baseDir}/scripts/influencer-score.ts --query "<user query>" --min-followers <n> --max-followers <n> --verified-only <true|false> --input-json '<json payload with profiles>'
bun {baseDir}/scripts/influencer-theme-extract.ts --bio "<bio>" --query "<user query>"
compare_shortlist)Generate deterministic comparison output:
bun {baseDir}/scripts/influencer-compare.ts --limit <n> --input-json '<json payload with profiles and criteria>'
Present results grouped by platform with:
assistant browser --session influencer --json snapshot.{
"phase": "discover",
"context": { "platform": "instagram" },
"extracted": {
"text": "...",
"links": ["https://www.instagram.com/example/"]
},
"userIntent": "find fitness creators"
}