Github Release Analyzer
自动分析 GitHub 仓库发布内容并生成摘要,支持手动与定时任务模式。
下载 15
通过 Talent Protocol API 查询开发者声誉、身份验证及 GitHub 数据。
openclaw skills install @juampihernandez/talent-powers命令、参数、文件名以原文为准
从 [Talent Protocol](https://talent.app) 查询专业开发者数据 —— 一个追踪链上开发者的平台。
使用此技能可实现:
API Key: https://talent.app/~/settings/api
基础 URL: https://api.talentprotocol.com
curl -H "X-API-KEY: $TALENT_API_KEY" "https://api.talentprotocol.com/..."| 端点 | 用途 |
|---|---|
/search/advanced/profiles | 根据身份、标签、排名、验证状态搜索用户资料 |
/profile | 根据 ID 获取用户资料 |
/accounts | 获取关联的钱包、GitHub、社交账号 |
/socials | 获取社交账号及简介信息 |
/credentials | 获取数据点(收入、粉丝数、黑客松参与、项目贡献等) |
/human_checkmark | 检查是否为人工验证身份 |
/farcaster/scores | 批量查询 Farcaster 用户 |
身份查询:
query[identity]={handle}&query[identity_type]={twitter|github|farcaster|ens|wallet}筛选条件:
query[human_checkmark]=true
query[verified_nationality]=true
query[tags][]=developer排序方式:
sort[score][order]=desc&sort[score][scorer]=Builder%20Score分页设置: page=1&per_page=250(最大每页 250 条)
[ = %5B,] = %5D,空格 = %20
builder_score.rank_position —— 主要评分指标location —— 用户自行填写的位置信息(在响应中返回)scores[] —— 使用 builder_score_2025 获取最新排名不要使用 query[standardized_location]=Country —— 此参数无效。
**请使用 customQuery 配合正则表达式:**
curl -X POST -H "X-API-KEY: $TALENT_API_KEY" -H "Content-Type: application/json" \
"https://api.talentprotocol.com/search/advanced/profiles" \
-d '{
"customQuery": {
"regexp": {
"standardized_location": {
"value": ".*argentina.*",
"case_insensitive": true
}
}
},
"humanCheckmark": true,
"sort": { "score": { "order": "desc", "scorer": "Builder Score" } },
"perPage": 50
}'更多示例请参见 [use-cases.md](references/use-cases.md#by-location-country)。
customQuery 使用 POST)query[standardized_location] 参数已失效 —— 请改用 customQuery 的正则表达式方式在通过 /accounts 解析出 GitHub 用户名后,可进一步获取其项目与仓库信息:
# 1. 获取 GitHub 用户名
/accounts?id={profile_id} → { "source": "github", "username": "..." }
# 2. 查询 GitHub 数据
GET https://api.github.com/users/{username} # 用户资料
GET https://api.github.com/users/{username}/repos?sort=stars&per_page=5 # 之星最多的前 5 个仓库
GET https://api.github.com/users/{username}/repos?sort=pushed&per_page=5 # 最近更新的前 5 个仓库
GET https://api.github.com/users/{username}/events/public # 公共活动(提交记录)
GET https://api.github.com/search/issues?q=author:{username}+type:pr+state:open # 开放中的 PR 列表GitHub Token 获取地址:https://github.com/settings/tokens
无 Token 时请求速率限制为每小时 60 次;有 Token 时可提升至每小时 5000 次。
已收录 2 个 Skill