Compare GitHub Profile Visualizers in One Place

Enter a GitHub username to compare compatible previews, customize themes, upvote favorites, and copy README Markdown or the required workflow.

Try examples:
Setup:

Most community votes first.

Tags:
Showing 11 visualizers

Arcade Pac-Man Contribution Graph

configured

Transforms your contribution graph into an animated Pac-Man arcade game. Compiled daily via GitHub Action.

#animated#pacman#arcade#game#retro#contributions
Loading visualizer preview...
Arcade Pac-Man Contribution Graph preview for Shik3i
This asset does not update dynamically from the username field; generate it in your own profile repository with a GitHub Actions workflow by following the setup guide →.
GitHub Actions workflow:
View GitHub Action workflow (.github/workflows/*.yml)
name: Generate Pacman Contribution Graph

on:
  schedule:
    - cron: "31 0 * * *"
  workflow_dispatch:

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: abozanona/pacman-contribution-graph@d258e3fb01511c1ff4fe6418408ede37b2ad4935
        with:
          github_user_name: ${{ github.repository_owner }}
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Contribution Crawl (Dungeon Crawler)

configured

Turns your contribution graph into a 16-bit retro dungeon crawler. Compiled daily via GitHub Action in your repo.

#animated#dungeon#crawl#retro#game#pixel
Loading visualizer preview...
Contribution Crawl (Dungeon Crawler) preview for Shik3i
This asset does not update dynamically from the username field; generate it in your own profile repository with a GitHub Actions workflow by following the setup guide →.
GitHub Actions workflow:
View GitHub Action workflow (.github/workflows/*.yml)
name: Generate Contribution Crawl

on:
  schedule:
    - cron: "47 0 * * *"
  workflow_dispatch:

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: MaskiCoding/Contribution-Crawl
          ref: 6010bdeffccd24d871600b9dfa9f9e75877d3af9
          path: crawl
      - uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38
        with:
          node-version: 24
          cache: npm
          cache-dependency-path: crawl/package-lock.json
      - run: npm ci --ignore-scripts && npm run build
        working-directory: crawl
      - run: |
          node crawl/dist/index.js "${{ github.repository_owner }}" .
          mkdir -p dist
          mv contribution-crawl-light.svg contribution-crawl-dark.svg dist/
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Contribution Grid Snake Animation (Platane)

configured

Generates an animated snake eating your contribution grid dots. Runs daily via GitHub Action in your repo.

#animated#snake#contributions#animation#game#grid
Loading visualizer preview...
Contribution Grid Snake Animation (Platane) preview for Shik3i
This asset does not update dynamically from the username field; generate it in your own profile repository with a GitHub Actions workflow by following the setup guide →.
GitHub Actions workflow:
View GitHub Action workflow (.github/workflows/*.yml)
name: Generate Contribution Snake

on:
  schedule:
    - cron: "17 0 * * *"
  workflow_dispatch:

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: Platane/snk/svg-only@d8f6715049803e982ee5ff501b6b9b7d5deeb09b
        with:
          github_user_name: ${{ github.repository_owner }}
          outputs: |
            output/github-snake.svg
            output/github-snake-dark.svg?palette=github-dark
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: output
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

GitHub 3D Isometric Contribution Calendar

configured

Generates a 3D isometric contribution calendar image updated daily via GitHub Action in your repo.

#animated#3d#isometric#calendar#contributions#graph
Loading visualizer preview...
GitHub 3D Isometric Contribution Calendar preview for Shik3i
This asset does not update dynamically from the username field; generate it in your own profile repository with a GitHub Actions workflow by following the setup guide →.
GitHub Actions workflow:
View GitHub Action workflow (.github/workflows/*.yml)
name: Generate 3D Contribution Calendar

on:
  schedule:
    - cron: "53 0 * * *"
  workflow_dispatch:

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: yoshi389111/github-profile-3d-contrib@7d95e7d4cdc028dd1e1cbd957d65f35efb12ae39
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          USERNAME: ${{ github.repository_owner }}
      - run: |
          mkdir -p dist
          cp -R profile-3d-contrib dist/
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

GitHub Breakout Animation

configured

Turns contribution cells into an animated Breakout game board. Compiled daily via GitHub Action in your repo.

#animated#breakout#arcade#game#retro#contributions
Loading visualizer preview...
GitHub Breakout Animation preview for Shik3i
This asset does not update dynamically from the username field; generate it in your own profile repository with a GitHub Actions workflow by following the setup guide →.
GitHub Actions workflow:
View GitHub Action workflow (.github/workflows/*.yml)
name: Generate Contribution Breakout

on:
  schedule:
    - cron: "41 0 * * *"
  workflow_dispatch:

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: cyprieng/github-breakout@60c43dca3a1361fbc9fb9bb533b5193296345c4f
        with:
          github_username: ${{ github.repository_owner }}
          output_path: dist
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

GitHub Profile Summary - Overview Stats

stats

Comprehensive profile overview card with commit totals, star counts, and repository metrics.

#stats#summary#overview#card
Theme:
Loading visualizer preview...
GitHub Profile Summary - Overview Stats preview for Shik3i
README Markdown Code:
[![](https://github-profile-summary-cards.vercel.app/api/cards/stats?username=Shik3i&theme=)](https://github.com/vn7n24fzkq/github-profile-summary-cards)

GitHub Profile Summary - Productive Time

activity

Commit schedule distribution card showing peak coding hours and active days of the week.

#activity#time#commits#schedule
Theme:
Loading visualizer preview...
GitHub Profile Summary - Productive Time preview for Shik3i
README Markdown Code:
[![](https://github-profile-summary-cards.vercel.app/api/cards/productive-time?username=Shik3i&theme=)](https://github.com/vn7n24fzkq/github-profile-summary-cards)

GitHub Readme Activity Graph

activity

A responsive line graph showing contribution trends and commit frequency over time.

#activity#contributions#graph#chart
Theme:
Loading visualizer preview...
GitHub Readme Activity Graph preview for Shik3i
README Markdown Code:
[![GitHub Activity Graph](https://github-readme-activity-graph.vercel.app/graph?username=Shik3i&theme=)](https://github.com/ashutosh00710/github-readme-activity-graph)

GitHub Readme Streak Stats

streak

Displays your total contributions, current contribution streak, and longest streak on your GitHub profile.

#streak#contributions#daily#activity
Theme:
Loading visualizer preview...
GitHub Readme Streak Stats preview for Shik3i
README Markdown Code:
[![GitHub Streak](https://streak-stats.demolab.com/?user=Shik3i&theme=)](https://git.io/streak-stats)

Kodama - GitHub History Bonsai Tree

activity

Draws your GitHub contribution history as a growing SVG bonsai tree with customizable themes and species.

#animated#bonsai#tree#history#art#activity#reddit
Theme:
Loading visualizer preview...
Kodama - GitHub History Bonsai Tree preview for Shik3i
README Markdown Code:
[![GitHub Bonsai](https://kodama-sigma.vercel.app/Shik3i.svg?theme=)](https://github.com/orijitghosh/kodama)

Snake & Commits Animation (dahan8473)

configured

Generates a contribution grid snake animation with embedded commit activity counters.

#animated#snake#commits#contributions#game#grid
Loading visualizer preview...
Snake & Commits Animation (dahan8473) preview for Shik3i
This asset does not update dynamically from the username field; generate it in your own profile repository with a GitHub Actions workflow by following the setup guide →.
GitHub Actions workflow:
View GitHub Action workflow (.github/workflows/*.yml)
name: Generate Snake and Commits

on:
  schedule:
    - cron: "23 0 * * *"
  workflow_dispatch:

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: dahan8473/snake-and-commits@c55d1f1668e849195f395a9d93c56e74b68aaac2
        with:
          github_user: ${{ github.repository_owner }}
          output: output/snake.svg
          theme: green
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: output
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}