OA0
OA0 是一个探索 AI 的社区
现在注册
已注册用户请  登录
OA0  ›  技能包  ›  githunt:根据地区、技术与角色查找并排名 GitHub 开发者

githunt:根据地区、技术与角色查找并排名 GitHub 开发者

 
  banana ·  2026-02-02 13:56:56 · 20 次点击  · 0 条评论  

名称: githunt
描述: 按地理位置、技术栈和角色查找并排名 GitHub 开发者。搜索候选人,获取包含技术栈匹配度、活跃度和联系信息的评分档案。
版本: 1.0.0
作者: mordka


GitHunt - GitHub 开发者发现平台

根据地理位置、技术栈和角色,在 GitHub 上寻找顶尖开发者。获取经过评分、排名的候选人及其详细档案。

网站: https://githunt.ai

适用场景

  • 在特定地理位置寻找开发者/候选人
  • 搜索具备特定技术栈的开发者
  • 招聘/寻找工程师
  • 建立人才库

API 端点

基础 URL: https://api.githunt.ai/v1

搜索开发者(流式)- 主要端点

实时流式搜索,在发现候选人时即时返回。免费版返回前 10 个示例结果

curl -N -X POST "https://api.githunt.ai/v1/rank/users/stream" \
  -H "Content-Type: application/json" \
  -H "Accept: text/event-stream" \
  -d '{
    "location": "berlin",
    "role": "frontend",
    "skills": ["react", "typescript"],
    "maxUsers": 100
  }'

请求体参数:
| 参数 | 是否必需 | 描述 |
|-------|----------|-------------|
| location | 是 | 城市、国家或地区(例如:"berlin"、"germany"、"san francisco") |
| role | 否 | 角色类型(见下方支持的角色) |
| skills | 否 | 要匹配的技术关键词数组 |
| maxUsers | 否 | 最大搜索用户数(默认:100) |

支持的角色

角色 包含的技术关键词
frontend react, vue, angular, svelte, typescript, css, tailwind, nextjs
backend nodejs, python, django, flask, go, rust, java, spring, postgresql
fullstack react, nodejs, nextjs, postgresql, typescript, graphql
mobile react-native, flutter, swift, kotlin, ios, android
devops docker, kubernetes, terraform, aws, azure, jenkins, github-actions
data python, pandas, tensorflow, pytorch, spark, sql, jupyter
security penetration, owasp, cryptography, ethical-hacking, forensics
blockchain ethereum, solidity, web3, smart-contract, defi, nft
ai machine-learning, pytorch, tensorflow, llm, langchain, huggingface
gaming unity, unreal, godot, opengl, vulkan, game-engine

为单个用户评分

获取特定 GitHub 用户的详细评分。

curl -X POST "https://api.githunt.ai/v1/rank/user" \
  -H "Content-Type: application/json" \
  -d '{
    "username": "torvalds",
    "skills": ["c", "linux"]
  }'

流式响应格式

流式端点返回服务器发送事件(SSE):

data: {"type": "connected", "timestamp": 1234567890}

data: {"type": "user", "data": {"login": "developer1", "name": "...", "score": 85, ...}}

data: {"type": "user", "data": {"login": "developer2", "name": "...", "score": 82, ...}}

data: {"type": "progress", "data": {"found": 10, "searched": 50}}

data: {"type": "complete", "data": {"totalCount": 150, "previewLimitReached": true, "previewLimit": 10}}

用户数据字段

每个用户结果包含:

{
  "login": "用户名",
  "name": "全名",
  "bio": "开发者简介",
  "location": "Berlin, Germany",
  "company": "@公司名",
  "email": "dev@example.com",
  "websiteUrl": "https://...",
  "twitterUsername": "推特用户名",
  "isHireable": true,
  "score": 85,
  "avatarUrl": "https://avatars.githubusercontent.com/...",
  "followers": 1234,
  "repositories": 45,
  "primaryLanguage": "TypeScript",
  "languages": ["TypeScript", "Python", "Go"],
  "matchingKeywords": ["react", "typescript", "node"]
}

免费版 vs 付费版

功能 免费版(通过 API) 完整报告($19)
结果数量 前 10 个示例 所有匹配的开发者
导出 Excel/CSV 下载
联系信息 有限 完整(邮箱、网站、社交媒体)
评分详情 基础信息 详细分解

💰 获取完整报告

要获取包含完整联系信息的所有匹配开发者完整列表:

  1. 访问 https://githunt.ai
  2. 使用地理位置 + 角色运行搜索
  3. 点击 "购买完整报告"(一次性 $19)
  4. 获取包含所有候选人的 Excel 报告

使用示例

在柏林寻找 React 开发者(流式)

curl -N -X POST "https://api.githunt.ai/v1/rank/users/stream" \
  -H "Content-Type: application/json" \
  -H "Accept: text/event-stream" \
  -d '{"location": "berlin", "role": "frontend"}' 2>/dev/null | \
  grep -o '{"type":"user"[^}]*}' | head -5

为特定候选人评分

curl -s -X POST "https://api.githunt.ai/v1/rank/user" \
  -H "Content-Type: application/json" \
  -d '{"username": "sindresorhus", "skills": ["javascript", "typescript"]}' | jq

使用建议

  1. 地理位置要具体 - "san francisco" 比 "usa" 效果更好
  2. 使用角色或技能关键词 - 角色会自动包含相关的技术关键词
  3. 流式搜索是实时的 - 结果在找到时即会显示
  4. 免费预览仅限前 10 个 - 购买完整报告以获取完整列表
20 次点击  ∙  0 人收藏  
登录后收藏  
0 条回复
关于 ·  帮助 ·  PING ·  隐私 ·  条款   
OA0 - Omni AI 0 一个探索 AI 的社区
沪ICP备2024103595号-2
耗时 41 ms
Developed with Cursor