Open Source Launchpad
From first PR to recognized contributor
Open source contribution is the fastest way to grow as a developer. This launchpad brings together a complete guide, essential CLI tools, and production workflows — everything you need to make your first PR and build a GitHub profile that opens doors.
Select a language or search to find projects
Results show repos with open “good first issue” labels
$ Data from GitHub REST API. Rate limited to 60 req/hr without a token.
The Workflow
Find a Project
Search repos with "good first issue" labels. Start with tools you already use.
Read the Codebase
Understand structure, conventions, and entry points before writing code.
Make the Change
Fork, branch, commit with clear messages. Keep changes focused and atomic.
Open a PR
Write a clear description. Reference the issue. Respond to review feedback.
Build Reputation
Consistent quality contributions lead to maintainer trust and recognition.
Featured Guide
Open Source Contribution — From First PR to Recognized Contributor
8minA complete guide to contributing to open source: finding projects, making your first PR, navigating reviews, and building a reputation that opens doors.
Essential Tool
GitHub from the command line. Manage repos, PRs, issues, CI, reviews, and releases without leaving your terminal.
Quick Start
Full open source contribution cycle in 8 commands. Install gh and you are ready.
# 1. Find a good first issue gh search issues --repo=vercel/next.js --label="good first issue" --limit=10 # 2. Fork and clone gh repo fork owner/project --clone cd project # 3. Create a branch git switch -c fix/issue-42 # 4. Make changes, then commit git add . git commit -m "fix: resolve login redirect loop" # 5. Push and create PR git push -u origin fix/issue-42 gh pr create --fill # 6. After merge, sync git switch main git pull upstream main
Also Available
Your GitHub is Your Resume
Hiring managers look at your GitHub before your resume. A profile with consistent, quality contributions across diverse projects speaks louder than any degree or certification. Start with one small PR today.