OSS Perks

ossperks CLI

Browse OSS perk programs and check if your project qualifies — right from the terminal.

Overview

ossperks is a zero-config command-line tool that lets you:

  • List every OSS perk program in one place
  • Search programs by keyword, provider, or category
  • Show full details for any program (perks, eligibility, how to apply)
  • Check whether your own repository qualifies for programs — automatically, by fetching live data from the GitHub or GitLab API

Installation

npm install -g ossperks

Quick start

# List all programs
ossperks list

# Check your current project
cd /path/to/your/repo
ossperks check

# Search by keyword
ossperks search "hosting"

# Show a specific program
ossperks show vercel

How repo detection works

ossperks check auto-detects your repository without any prompts:

  1. Reads the repository field from package.json in the current directory
  2. Falls back to parsing remote.origin.url from .git/config
  3. Calls the GitHub or GitLab public API to fetch live data (stars, license, activity, etc.)
  4. Matches that data against every program's eligibility rules

No API tokens required for public repositories.

Next steps

  • list — browse all programs
  • show — view program details
  • check — auto-check your repo eligibility
  • search — find programs by keyword
  • categories — list available categories

On this page