← 返回 Skills 市场
mordka

GitHunt

作者 mordka · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2076
总下载
5
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install 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.
使用说明 (SKILL.md)

GitHunt - GitHub Developer Discovery

Find top developers on GitHub by location, tech stack, and role. Get scored, ranked candidates with detailed profiles.

Website: https://githunt.ai

When to Use

  • Finding developers/candidates in a specific location
  • Searching for developers with specific tech stacks
  • Recruiting/sourcing engineers
  • Building talent pipelines

API Endpoints

Base URL: https://api.githunt.ai/v1

Search Developers (Streaming) - Main Endpoint

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)

Supported Roles

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

Rank Single User

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"]
  }'

Stream Response Format

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}}

User Data Fields

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"]
}

Free vs Paid

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

💰 Get Full Report

For the complete list of all matched developers with full contact info:

  1. Go to https://githunt.ai
  2. Run your search with location + role
  3. Click "Buy Full Report" ($19 one-time)
  4. Get Excel report with all candidates

Usage Examples

Find React Developers in Berlin (Streaming)

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

Score a Specific Candidate

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

Tips

  1. Be specific with location - "san francisco" works better than "usa"
  2. Use role OR skills - role auto-includes relevant tech keywords
  3. Streaming is real-time - results appear as they're found
  4. Free preview = top 10 - buy full report for complete list
安全使用建议
What to consider before installing: - This skill calls an external, third‑party API (https://api.githunt.ai). If you use it the agent will send search queries (locations, skills, etc.) to that service — verify you trust the operator and their privacy/terms (especially when retrieving contact info). - The included scripts expect command‑line tools (curl, jq, sed and optionally gunzip/grep) even though the metadata lists none. Ensure those binaries are available in your agent runtime or the scripts will fail. - The skill requires no credentials, but it may return contact emails/URLs scraped from public profiles; check legal and privacy implications (GDPR, anti‑spam) before using contact data for outreach. - You can mitigate risk by testing with non-sensitive queries first, or by setting GITHUNT_API_URL to a proxy you control to inspect traffic. - The repository/website listed (githunt.ai / github.com/mordka/githunt) appears in metadata — verify the source and maintainers if you plan to pay for full reports or rely on it in production. Overall: the skill is not obviously malicious, but the mismatched dependency declarations, external API reliance, and contact‑info use justify caution and a quick manual vet (verify domain/repo, confirm required CLI tools, and test with safe queries) before enabling in production.
功能分析
Type: OpenClaw Skill Name: githunt Version: 1.0.0 The OpenClaw skill bundle for 'githunt' is benign. All files, including the `SKILL.md` instructions and the `githunt-search.sh` scripts, consistently describe and implement interactions with the `https://api.githunt.ai` service for finding GitHub developers. There is no evidence of data exfiltration, malicious execution, persistence, prompt injection attempts against the agent, or obfuscation. The scripts use standard shell commands (`curl`, `jq`, `sed`) to interact with the specified API and process its output, which is aligned with the stated purpose of the skill.
能力评估
Purpose & Capability
The skill's name, description, scripts, and SKILL.md consistently describe a GitHub developer discovery service that queries https://api.githunt.ai. That purpose aligns with the network calls in the scripts. However the package metadata declares no required binaries while the included shell scripts require curl, jq, sed, and (in docs/examples) gunzip/grep — a mild inconsistency.
Instruction Scope
Runtime instructions limit actions to building JSON payloads and calling the githunt.ai API (streaming or non‑streaming). They do not instruct reading arbitrary local files or environment variables beyond an optional GITHUNT_API_URL override. Minor inconsistencies exist between variant SKILL.md files (streaming vs non‑streaming endpoints, free preview size 10 vs 15) but nothing directs the agent to exfiltrate unrelated system data.
Install Mechanism
No install spec is provided (instruction-only + scripts). No external archives or third‑party package installs are performed by the skill itself, so nothing is written to disk by an installer step beyond the included files.
Credentials
The skill declares no required credentials or environment variables. The scripts do accept an optional GITHUNT_API_URL env var to override the API endpoint, which is reasonable, but the skill does not declare required runtime tools (curl, jq, gunzip). There are no requests for unrelated secrets or system config paths.
Persistence & Privilege
The skill does not request persistently elevated privileges; always is false and it does not modify other skills or system settings. It only makes outbound API calls when invoked.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install githunt
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /githunt 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial public release of githunt. - Search and rank GitHub developers by location, tech stack, and role. - Streaming API returns real-time candidate results, with top 10 shown for free. - Supports searching by popular roles (frontend, backend, devops, AI, etc.) and custom skills. - Get scored, detailed profiles including contact info, activity, and tech stack matches. - Option to purchase full reports for all matched developers and full contact details. - Clear usage examples and tips for sourcing technical talent efficiently.
元数据
Slug githunt
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2076 次。

如何安装 GitHunt?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install githunt」即可一键安装,无需额外配置。

GitHunt 是免费的吗?

是的,GitHunt 完全免费(开源免费),可自由下载、安装和使用。

GitHunt 支持哪些平台?

GitHunt 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 GitHunt?

由 mordka(@mordka)开发并维护,当前版本 v1.0.0。

💬 留言讨论