Find and rank GitHub developers by location, technology, and role. Search for candidates, get scored profiles with tech stack matches, activity, and contact info.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install githunt或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install githunt⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/githunt/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: githunt description: Find and rank GitHub developers by location, technology, and role. Search for candidates, get scored profiles with tech stack matches, activity, and contact info. version: 1.0.0 author: mordka ---
Find top developers on GitHub by location, tech stack, and role. Get scored, ranked candidates with detailed profiles.
Website: https://githunt.ai
Base URL: https://api.githunt.ai/v1
Real-time streaming search that returns candidates as they're found. Returns top 10 sample results for free.
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
}'
Body Parameters: | Param | Required | Description | |-------|----------|-------------| | location | Yes | City, country, or region (e.g., "berlin", "germany", "san francisco") | | role | No | Role type (see Supported Roles below) | | skills | No | Array of technology keywords to match | | maxUsers | No | Max users to search (default: 100) |
| Role | Technologies Included | |------|----------------------| | 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 |
Get detailed score for a specific GitHub user.
curl -X POST "https://api.githunt.ai/v1/rank/user" \
-H "Content-Type: application/json" \
-d '{
"username": "torvalds",
"skills": ["c", "linux"]
}'
The streaming endpoint returns Server-Sent Events (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}}
Each user result includes:
{
"login": "username",
"name": "Full Name",
"bio": "Developer bio",
"location": "Berlin, Germany",
"company": "@company",
"email": "[email protected]",
"websiteUrl": "https://...",
"twitterUsername": "handle",
"isHireable": true,
"score": 85,
"avatarUrl": "https://avatars.githubusercontent.com/...",
"followers": 1234,
"repositories": 45,
"primaryLanguage": "TypeScript",
"languages": ["TypeScript", "Python", "Go"],
"matchingKeywords": ["react", "typescript", "node"]
}
| Feature | Free (via API) | Full Report ($19) | |---------|----------------|-------------------| | Results | Top 10 sample | All matched developers | | Export | — | Excel/CSV download | | Contact info | Limited | Full (emails, websites, socials) | | Scoring details | Basic | Detailed breakdown |
For the complete list of all matched developers with full contact info:
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
安装 GitHunt 后,可以对 AI 说这些话来触发它
Help me get started with GitHunt
Explains what GitHunt does, walks through the setup, and runs a quick demo based on your current project
Use GitHunt to find and rank GitHub developers by location, technology, and role
Invokes GitHunt with the right parameters and returns the result directly in the conversation
What can I do with GitHunt in my developer & devops workflow?
Lists the top use cases for GitHunt, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/githunt/ 目录(个人级,所有项目可用),或 .claude/skills/githunt/(项目级)。重启 AI 客户端后,用 /githunt 主动调用,或让 AI 根据上下文自动发现并使用。
GitHunt 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
GitHunt 可免费安装使用。请查阅仓库了解许可证信息。
Find and rank GitHub developers by location, technology, and role. Search for candidates, get scored profiles with tech stack matches, activity, and contact info.
GitHunt 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using GitHunt
Identifies repetitive steps in your workflow and sets up GitHunt to handle them automatically