mcpbeat Sign in

Github Project Contributor Finder API Skill

This skill helps users extract GitHub repository project details and contributor contact information using keywords, stars, and update dates. Agent should proactively apply this skill when users express needs like search for GitHub projects by keywords, find top open-source contributors in specific domains, extract developer contacts from GitHub repositories, discover trending repositories with high stars, gather contributor profiles and social links for tech recruiting, retrieve GitHub project descriptions and metrics, build developer communities by finding active contributors, search for repositories updated recently, collect personal website and Twitter links of developers, generate targeted leads for developer tools, or track active open-source contributors for collaboration.

3k tokens
context cost
the whole folder, loaded on every use
2
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
5133
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/browser-act/skills --skill github-project-contributor-finder-api-skill

What comes with it

5 128 bytes besides the instruction
scripts/github_project_contributor_finder_api.py

The instruction itself

10 sections, as written by the author

GitHub Project & Contributor Finder API Skill

📖 Brief

This skill utilizes BrowserAct's GitHub Project & Contributor Finder API to extract project details and contributor contact information from GitHub. Simply provide keywords, minimum stars, and an update date filter — BrowserAct traverses the search results, extracts repository metrics, and fetches detailed contributor profiles, returning it all directly via API without building crawler scripts or dealing with rate limits.

✨ Features

  • No Hallucinations: Pre-set workflows avoid AI generative hallucinations, ensuring stable and precise data extraction.
  • No Captcha Issues: No need to handle reCAPTCHA or other verification challenges.
  • No IP Restrictions: No need to handle regional IP restrictions or geofencing.
  • Faster Execution: Tasks execute faster compared to pure AI-driven browser automation solutions.
  • Cost-Effective: Significantly lowers data acquisition costs compared to high-token-consuming AI solutions.

🔑 API Key Setup

Before running, check the BROWSERACT_API_KEY environment variable. If not set, do not take other measures; ask and wait for the user to provide it.

Agent must inform the user:

> "Since you haven't configured the BrowserAct API Key yet, please visit the BrowserAct Console to get your Key."

🛠️ Input Parameters

The agent should flexibly configure the following parameters based on user requirements:

  • KeyWords
  • Type: string
  • Description: Keywords for searching repositories.
  • Example: browser automation, react framework, machine learning
  • Default: browser automation
  • stars
  • Type: number
  • Description: Minimum number of stars the repository should have.
  • Example: 100, 1000
  • Default: 100
  • updated
  • Type: string
  • Description: Filter repositories by the date they were last updated (format: YYYY-MM-DD).
  • Example: 2026-01-01, 2025-06-01
  • Default: 2026-01-01
  • Page_Turns
  • Type: number
  • Description: Number of search result pages to paginate through. For example, if there are 39 pages and you want the first 2, input 2.
  • Example: 1, 2
  • Default: 1
  • date_limit_per_page
  • Type: number
  • Description: Number of data items to extract per page in the search results list.
  • Example: 5, 10
  • Default: 5

🚀 Invocation Method

Agent should execute the following command to invoke the skill:

# Example invocation (all parameters)
python -u ./scripts/github_project_contributor_finder_api.py "browser automation" 100 "2026-01-01" 1 5

# Minimal invocation (only keywords, others use defaults)
python -u ./scripts/github_project_contributor_finder_api.py "react framework"

⏳ Execution Monitoring

Since this task involves automated browser operations, it may take several minutes. The script outputs timestamped status logs continuously (e.g., [14:30:05] Task Status: running).

Agent guidelines:

  • Monitor the terminal output while waiting.
  • As long as new status logs appear, the task is running normally; do not misjudge it as frozen.
  • Only consider triggering retry if the status remains unchanged for a long time or output stops without a final result.

📊 Data Output

Upon successful execution, the script parses and prints the structured results from the API response.

Project Fields:

  • repository_name: The name of the GitHub repository.
  • repository_url: The URL link to the repository.
  • repository_owner_name: The owner/creator of the repository.
  • repository_description: A brief description of the repository.
  • star_count: The number of stars the repository has received.

Contributor Fields:

  • user_name: The GitHub username of the contributor.
  • profile_url: The URL link to the contributor's profile.
  • bio: The bio or short description of the contributor.
  • repositories_summary: A summary of other repositories owned by the contributor.
  • personal_website: The contributor's personal website link.
  • twitter: The contributor's Twitter handle.

⚠️ Error Handling & Retry

If an error occurs during script execution (e.g., network fluctuations or task failure), the Agent should follow this logic:

  • Check Output Content:
  • If the output contains "Invalid authorization", it means the API Key is invalid or expired. Do not retry; guide the user to re-check and provide the correct API Key.
  • If the output contains "concurrent" or "too many running tasks", it means the concurrent task limit has been reached. Do not retry; guide the user to upgrade their plan.

Agent must inform the user:

> "The current task cannot be executed because your BrowserAct account has reached the concurrent task limit. Please visit the BrowserAct Plan Upgrade Page to upgrade your plan."

  • If the output does not contain the above error keywords but the task failed (e.g., output starts with Error: or returns empty results), the Agent should automatically re-execute the script once.
  • Retry Limit:
  • Automatic retry is limited to one time. If the second attempt fails, stop retrying and report the specific error to the user.

🌟 Typical Use Cases

  • Tech Recruiting: Gather contributor profiles and social links from popular repositories to build candidate pipelines.
  • Open-Source Discovery: Search for trending repositories by keywords and star count to find valuable projects.
  • Developer Outreach: Collect personal websites and Twitter handles of active contributors for developer tool marketing.
  • Community Building: Identify and connect with active open-source contributors in specific domains.
  • Competitor Analysis: Monitor which developers contribute to competing projects.
  • Partnership Scouting: Find repository owners for potential collaboration or sponsorship.
  • Market Research: Analyze repository metrics and descriptions to understand technology trends.
  • Lead Generation: Generate targeted leads for developer tools by finding projects with relevant tech stacks.
  • Academic Research: Discover recently updated repositories in specific research areas.

10. Talent Mapping: Build a database of skilled developers based on their GitHub contributions and profiles.

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take browser-act/github-project-contributor-finder-api-skill from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.