agentsclimarketplace

Creator lookalike

Skill creativault/skills/creator-scraper-cv/discovery/creator-lookalike

CreatiVault official lookalike creator discovery skill. MUST be used when the user wants to find similar creators/KOLs/influencers based on a seed username, profile URL, creator UID, platform, audience style, content style, region, language, follower range, or cross-platform expansion. Use scripts/find_lookalike.mjs and CreatiVault OpenAPI as the authoritative source. Do not use web search unless the user explicitly asks for public web search or confirms fallback. Use when: similar creators, lookalike creators, find similar influencers, find similar KOLs, creator lookalike, seed creator, cross-platform creator search, TikTok to YouTube creators, 相似达人, 类似达人, 找相似, 找同类型达人, 种子达人, 跨平台找达人, 根据主页找相似, 根据用户名找相似, 根据达人找相似. 相似达人发现能力,支持种子达人解析、相似度匹配、跨平台搜索。通过 username、profile_url 或自动全平台搜索找到风格相似的创作者。 Use when: 相似达人, 类似达人, similar creators, lookalike, find similarFrom its SKILL.md

Install
npx -y skills add creativault/skills --skill creator-lookalike

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

5.9 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it

概述

基于种子达人查找风格相似的创作者,支持同平台匹配和跨平台发现(如从 TikTok 达人找到 YouTube 上的相似创作者)。

脚本引用

脚本路径模式状态
find_lookalike.mjs../../scripts/find_lookalike.mjsSync, 自动解析 username/URL

输入方式

API 内部自动将 username/URL 解析为平台 ID,无需额外 resolve 步骤。

方式一:username + platform(指定平台)

明确指定达人所在平台,直接在该平台查找相似达人:

node ../../scripts/find_lookalike.mjs '{"username":"creator_demo","platform":"tiktok","limit":10}'

方式二:profile_url(自动识别平台)

传入达人主页链接,API 自动解析平台和用户名:

node ../../scripts/find_lookalike.mjs '{"profile_url":"https://www.tiktok.com/@creator_demo","limit":10}'

支持的 URL 格式:

  • TikTok: https://www.tiktok.com/@username
  • YouTube: https://www.youtube.com/@username
  • Instagram: https://www.instagram.com/username

方式三:username only(搜索全平台)

仅传入用户名,不指定平台,API 自动在 TikTok、YouTube、Instagram 三个平台搜索匹配:

node ../../scripts/find_lookalike.mjs '{"username":"creator_demo","limit":10}'

参数说明

参数类型必填说明
usernamestring二选一达人用户名(不含 @),与 profile_url 二选一
platformstring种子达人平台:tiktok / youtube / instagram,省略则搜索全平台
profile_urlstring二选一达人主页链接(自动识别平台),与 username 二选一
target_platformstring目标搜索平台,省略则与种子达人同平台。设为不同平台可实现跨平台搜索
target_regionstring目标国家代码,all 表示不限
target_languagestring目标语言代码,all 表示不限
limitinteger返回数量,默认 20,最大 50
follower_mininteger最小粉丝数
follower_maxinteger最大粉丝数
avg_views_mininteger最小平均播放量
avg_views_maxinteger最大平均播放量
female_rate_minnumber最小女性受众比例(0~100)
langstring响应语言:cn / en,仅控制返回字段翻译,不筛选达人
service_levelstring服务等级,默认 S1

跨平台搜索说明

设置 target_platform 与种子达人不同平台,可发现跨平台相似达人:

# 从 TikTok 达人找 YouTube 上的相似创作者
node ../../scripts/find_lookalike.mjs '{"username":"creator_demo","platform":"tiktok","target_platform":"youtube","limit":10}'

输出格式

🔍 找到 N 个与 @seed_username 相似的达人

📊 相似达人列表

| #   | 用户名      | 昵称        | 粉丝数  | 平均播放 | 互动率  | 相似度  | 国家 | 主页链接          |
| --- | ----------- | ----------- | ------- | -------- | ------- | ------ | ---- | ----------------- |
| 1   | username1   | Nickname1   | 120K    | 3.8万    | 7.20%   | 85.0%  | US   | [查看][link1]     |
| 2   | username2   | Nickname2   | 95.5K   | 2.1万    | 5.50%   | 78.3%  | US   | [查看][link2]     |

[link1]: https://www.tiktok.com/@username1
[link2]: https://www.tiktok.com/@username2

📈 统计信息
• 种子达人:@seed_username(平台ID:7123456789)
• 结果总数:N 个相似达人
• 本次消耗:10 积分
• 剩余配额:xxx 次
• 请求ID:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

返回字段:uidusernamenicknameavatar_urlprofile_urlcountry_codefollowers_countavg_viewsengagement_ratematch_score

其中 match_score 为相似度评分(0~100),按相似度降序排列。

错误处理

错误码说明处理方式
40401达人不在数据库中告知用户该达人尚未被平台收录,建议换一个达人或提交采集任务
40001参数无效检查 username/profile_url 格式
42902每日配额耗尽等待 UTC 00:00 重置或升级套餐

决策规则

  • 用户给出主页链接 → 使用 profile_url 参数
  • 用户给出用户名 + 平台 → 使用 username + platform
  • 用户仅给出用户名 → 仅传 username,API 搜索全平台
  • 用户要求"找 YouTube 上类似的" → 设置 target_platform: "youtube"

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.