npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

github-xp

v1.0.0

Published

Extract GitHub experience into AI-ready data formats

Readme

GitHub XP

Extract your GitHub experience into AI-ready data formats

GitHub XP analyzes your GitHub repositories and outputs structured experience data (JSON/Markdown) that AI or resume builders can use to generate professional resumes.

Why?

Listing "React, TypeScript, Solana" on a resume doesn't prove anything. Recruiters want to see what you've built and the impact you made. GitHub XP scans your repos, extracts real project experience, and formats it for AI consumption.

Installation

npm install -g github-xp

Or run directly with npx:

npx github-xp scan <username>

Or from source:

git clone https://github.com/thejamesnick/github-xp
cd github-xp
bun install
bun run src/index.ts --help

Quick Start

# Scan your GitHub profile
gh-xp scan yourusername

# Show skills inventory
gh-xp skills yourusername

# Export to JSON for AI/resume builders
gh-xp export yourusername --format json > experience.json

Commands

| Command | Description | |---------|-------------| | scan <username> | List all repos with detected skills | | skills <username> | Show aggregated skills inventory | | export <username> | Export experience data for AI consumption | | config set-token <PAT> | Save GitHub token for private repos | | config status | Check if token is configured |

Options

| Flag | Description | |------|-------------| | --token, -t | GitHub Personal Access Token for private repos | | --format, -f | Output format: text, json, markdown (export only) | | --limit, -l | Number of projects to analyze (export only, default: 10) |

Example Output

Text Format (Default)

━ EXPERIENCE EVIDENCE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

📂 PROJECT: awesome-project
   ├─ URL: https://github.com/yourusername/awesome-project
   ├─ Stack: React, TypeScript, Node.js
   ├─ Description: A full-stack web application
   └─ README: # Awesome Project...

📂 PROJECT: cool-cli-tool  
   ├─ URL: https://github.com/yourusername/cool-cli-tool
   ├─ Stack: Rust, Shell
   ├─ Description: Command-line utility for developers
   └─ README: # Cool CLI Tool...

JSON Format

{
  "username": "yourusername",
  "scanned_at": "2026-03-11T10:30:00Z",
  "skills": {
    "React": { "projects": 3, "totalLines": 15420, "repos": ["project1", "project2"] },
    "TypeScript": { "projects": 2, "totalLines": 8930, "repos": ["project1"] },
    "Rust": { "projects": 1, "totalLines": 5200, "repos": ["cli-tool"] }
  },
  "projects": [
    {
      "name": "awesome-project",
      "url": "https://github.com/yourusername/awesome-project",
      "description": "A full-stack web application",
      "languages": ["TypeScript", "JavaScript"],
      "stars": 42,
      "forks": 5,
      "readme": "# Awesome Project\n\nA full-stack application built with React and Node.js..."
    }
  ]
}

Markdown Format

## Projects

### awesome-project
- **URL:** https://github.com/yourusername/awesome-project
- **Stack:** React, TypeScript, Node.js
- **Description:** A full-stack web application
- **Stars:** 42 | **Forks:** 5

**README:**

# Awesome Project

A full-stack application built with React and Node.js...

Authentication

For private repositories and higher rate limits, set up a GitHub Personal Access Token:

  1. Go to https://github.com/settings/tokens/new
  2. Create a token with repo scope (or no scopes for public repos only)
  3. Save it:
bun run src/index.ts config set-token ghp_xxxxxxxxxxxx

# Or use environment variable
export GITHUB_TOKEN=ghp_xxxxxxxxxxxx

Rate Limits:

  • Without auth: 60 requests/hour
  • With auth: 5,000 requests/hour

Use Cases

  • AI Resume Builders: Feed the JSON output to AI to generate tailored resumes
  • Portfolio Generation: Convert your GitHub work into portfolio content
  • Job Applications: Quickly match your experience to job requirements
  • Skills Inventory: See what technologies you've actually used in production

Supported Technologies

Frontend, Mobile, Backend, Blockchain, Databases, DevOps, and 20+ languages including:

  • JavaScript, TypeScript, Python, Rust, Go, Swift, Kotlin
  • React, Vue, Angular, Next.js, React Native, Flutter
  • Node.js, Express, Django, FastAPI
  • Solidity, Solana, ethers.js, web3.js
  • PostgreSQL, MongoDB, Redis, Prisma
  • Docker, Kubernetes, AWS, GCP

Development

# Clone the repo
git clone https://github.com/thejamesnick/github-xp
cd github-xp

# Install dependencies
bun install

# Run locally
bun run src/index.ts scan <username>

# Build standalone executable
bun run build

Contributing

PRs welcome! See PRD.md for the full product specification.

License

MIT


Built by: Nicholas James
Purpose: Extract GitHub experience data for AI-powered resume generation