github-xp
v1.0.0
Published
Extract GitHub experience into AI-ready data formats
Maintainers
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-xpOr 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 --helpQuick 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.jsonCommands
| 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:
- Go to https://github.com/settings/tokens/new
- Create a token with
reposcope (or no scopes for public repos only) - Save it:
bun run src/index.ts config set-token ghp_xxxxxxxxxxxx
# Or use environment variable
export GITHUB_TOKEN=ghp_xxxxxxxxxxxxRate 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 buildContributing
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
