# Send GitHunt to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "githunt",
    "name": "GitHunt",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mordka/githunt",
    "canonicalUrl": "https://clawhub.ai/mordka/githunt",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/githunt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=githunt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/githunt-search.sh",
      "skill/SKILL.md",
      "skill/_meta.json",
      "skill/scripts/githunt-search.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "githunt",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T18:18:05.611Z",
      "expiresAt": "2026-05-10T18:18:05.611Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=githunt",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=githunt",
        "contentDisposition": "attachment; filename=\"githunt-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "githunt"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/githunt"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/githunt",
    "downloadUrl": "https://openagent3.xyz/downloads/githunt",
    "agentUrl": "https://openagent3.xyz/skills/githunt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/githunt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/githunt/agent.md"
  }
}
```
## Documentation

### 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:

ParamRequiredDescriptionlocationYesCity, country, or region (e.g., "berlin", "germany", "san francisco")roleNoRole type (see Supported Roles below)skillsNoArray of technology keywords to matchmaxUsersNoMax users to search (default: 100)

### Supported Roles

RoleTechnologies Includedfrontendreact, vue, angular, svelte, typescript, css, tailwind, nextjsbackendnodejs, python, django, flask, go, rust, java, spring, postgresqlfullstackreact, nodejs, nextjs, postgresql, typescript, graphqlmobilereact-native, flutter, swift, kotlin, ios, androiddevopsdocker, kubernetes, terraform, aws, azure, jenkins, github-actionsdatapython, pandas, tensorflow, pytorch, spark, sql, jupytersecuritypenetration, owasp, cryptography, ethical-hacking, forensicsblockchainethereum, solidity, web3, smart-contract, defi, nftaimachine-learning, pytorch, tensorflow, llm, langchain, huggingfacegamingunity, 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": "dev@example.com",
  "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

FeatureFree (via API)Full Report ($19)ResultsTop 10 sampleAll matched developersExport—Excel/CSV downloadContact infoLimitedFull (emails, websites, socials)Scoring detailsBasicDetailed breakdown

### 💰 Get Full Report

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

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

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

Be specific with location - "san francisco" works better than "usa"
Use role OR skills - role auto-includes relevant tech keywords
Streaming is real-time - results appear as they're found
Free preview = top 10 - buy full report for complete list
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mordka
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T18:18:05.611Z
- Expires at: 2026-05-10T18:18:05.611Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/githunt)
- [Send to Agent page](https://openagent3.xyz/skills/githunt/agent)
- [JSON manifest](https://openagent3.xyz/skills/githunt/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/githunt/agent.md)
- [Download page](https://openagent3.xyz/downloads/githunt)