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 34 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 }}

Galaxy Profile

configured

A space-themed profile package that renders a galaxy header, telemetry stats, tech stack, and project constellations.

#galaxy#space#header#stats#projects#workflow
Loading visualizer preview...
Galaxy Profile 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 Galaxy Profile

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

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 20
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: vinimlo/galaxy-profile
          ref: 5d4be766b4f9b76da9b7c6d9172fa6ba705e9b75
          path: galaxy-profile
      - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
        with:
          python-version: "3.12"
          cache: pip
          cache-dependency-path: galaxy-profile/requirements.txt
      - name: Install Galaxy Profile
        run: pip install -r galaxy-profile/requirements.txt
      - name: Generate SVG set
        working-directory: galaxy-profile
        env:
          GITHUB_TOKEN: ${{ github.token }}
        run: |
          cp config.example.yml config.yml
          sed -i "s/^username: galaxy-dev/username: ${{ github.repository_owner }}/" config.yml
          python -m generator.main
      - run: |
          mkdir -p dist/galaxy-profile
          cp galaxy-profile/assets/generated/*.svg dist/galaxy-profile/
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

ghstats

configured

A GitHub Action that generates a themed set of SVG profile summary cards in multiple categories.

#stats#summary#languages#contributions#workflow#svg
Theme:
Loading visualizer preview...
ghstats 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 ghstats Cards

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

permissions:
  contents: write

jobs:
  cards:
    runs-on: ubuntu-latest
    timeout-minutes: 20
    steps:
      - uses: tiennm99/ghstats@9f7c16f8357e8a26eada9a9652db7701c3ec5753
        with:
          user: ${{ github.repository_owner }}
          token: ${{ github.token }}
          out: dist/ghstats
          themes: dracula,github_dark,tokyonight
          include_private: "false"
          commit_changes: "false"
      - run: test -s dist/ghstats/dracula/stats.svg && test -s dist/ghstats/github_dark/stats.svg && test -s dist/ghstats/tokyonight/stats.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        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 Contribution Growth Graph

activity

Dynamic cumulative contribution and language growth graphs showing how GitHub activity compounds over time.

#growth#contributions#graph#languages#activity#png
Theme:
Loading visualizer preview...
GitHub Contribution Growth Graph preview for Shik3i
README Markdown Code:
[![GitHub Contribution Growth Graph](https://github-contribution-growth-graph.qkitzero.xyz/graph/contributions?user=Shik3i&theme=&size=medium)](https://github.com/qkitzero/github-contribution-growth-graph)

GitHub Gravity

configured

An animated contribution graph where activity falls under gravity and collides with profile text.

#animated#gravity#contributions#physics#workflow#svg
Loading visualizer preview...
GitHub Gravity 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 GitHub Gravity

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

permissions:
  contents: write

jobs:
  gravity:
    runs-on: ubuntu-latest
    timeout-minutes: 15
    steps:
      - uses: flycran/github-gravity@ea8d6643dfd97df88c2b8d7505f713df91cc45b8
        with:
          username: ${{ github.repository_owner }}
          text: ${{ github.repository_owner }}
          output-path: dist/github-gravity.svg
      - run: test -s dist/github-gravity.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

GitHub PR Stats

activity

Shareable SVG statistics for merged pull requests and open-source contribution impact.

#pull-requests#contributions#stats#svg#open-source
Theme:
Loading visualizer preview...
GitHub PR Stats preview for Shik3i
README Markdown Code:
[![GitHub PR Stats](https://github-pr-stats-five.vercel.app/api/github-pr-stats?username=Shik3i&limit=6&theme=)](https://github.com/f14XuanLv/github-pr-stats)

GitHub Profile Repository Pins

badges

Generates themed SVG repository pins with automatic ordering, translations, and optional contribution statistics.

#repositories#pins#badges#svg#workflow#github-pages
Loading visualizer preview...
GitHub Profile Repository Pins 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 Profile Repository Pins

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

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 20
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: profile-icons/readme-repo-pins-src
          ref: bcd154073916acc3205c42b08b4b28d1c9aaa1c4
          path: readme-repo-pins-src
      - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
        with:
          python-version: "3.13"
      - run: pip install -r readme-repo-pins-src/requirements.txt
      - name: Generate public repository pins
        env:
          GH_API_TOKEN: ${{ github.token }}
          GH_USERNAME: ${{ github.repository_owner }}
          GH_REPO_OWNER: ${{ github.repository_owner }}
        run: |
          rm -rf repo-pins-work
          mkdir -p repo-pins-work
          cp -R readme-repo-pins-src/. repo-pins-work/
          (cd repo-pins-work && python gh_profile_repo_pins.py)
          mkdir -p dist/profile-repo-pins
          cp repo-pins-work/imgs/*.svg dist/profile-repo-pins/
      - 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 Profile SVG

headers

Generates a self-contained SVG profile statistics card from public GitHub REST data.

#profile#stats#header#svg#php#workflow
Loading visualizer preview...
GitHub Profile SVG 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 GitHub Profile SVG

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

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: Axxel-L/github-profile-svg
          ref: 0c2d082bc8151d12f61c740369c52fa8eea5741a
          path: github-profile-svg
      - name: Generate SVG from local PHP endpoint
        run: |
          set -euo pipefail
          mkdir -p dist
          php -S 127.0.0.1:8080 -t github-profile-svg >/tmp/github-profile-svg.log 2>&1 &
          server_pid=$!
          trap 'kill "$server_pid"' EXIT
          for attempt in 1 2 3 4 5; do
            if curl --fail --silent --show-error --get --data-urlencode "username=${{ github.repository_owner }}" http://127.0.0.1:8080/api/generate.php -o dist/github-profile-svg.svg; then
              break
            fi
            sleep 2
          done
          test -s dist/github-profile-svg.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

GitHub Profile Trophy

trophies

GitHub achievement trophies generated from profile activity and published as an SVG.

#trophies#achievements#contributions#stats#profile#workflow
Loading visualizer preview...
GitHub Profile Trophy 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 GitHub Profile Trophy

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

permissions:
  contents: write

jobs:
  trophy:
    runs-on: ubuntu-latest
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: ryo-ma/github-profile-trophy
          ref: e3c89df995e92e67cdd4b2acaab9d974583dc1f7
          path: trophy
      - uses: denoland/setup-deno@11b63cf76cfcafb4e43f97b6cad24d8e8438f62d
        with:
          deno-version: v1.x
      - run: deno run --allow-net --allow-env --allow-read --allow-write trophy/render_svg.ts "${{ github.repository_owner }}" dist/github-profile-trophy.svg flat
        env:
          GITHUB_TOKEN1: ${{ github.token }}
      - run: test -s dist/github-profile-trophy.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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 Profile

stats

A clean dynamic SVG profile card with themes, color controls, and optional statistics sections.

#stats#profile#card#themes#svg
Theme:
Loading visualizer preview...
GitHub Readme Profile preview for Shik3i
README Markdown Code:
[![GitHub Readme Profile](https://gh-readme-profile.vercel.app/api?username=Shik3i&theme=)](https://github.com/FajarKim/github-readme-profile)

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)

GitHub Repository Contribution Stats

activity

Ranks repositories you contributed to in a generated SVG card, with contribution and star ordering options.

#contributions#repositories#stats#ranking#workflow#svg
Theme:
Loading visualizer preview...
GitHub Repository Contribution Stats 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 Repository Contribution Stats

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

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: HwangTaehyun/github-repository-contribution-stats
          ref: 95a90818c685ac6487d10750fbfc42bcdc5ef14f
          path: repository-contribution-stats
      - run: mkdir -p dist
      - name: Generate contribution stats
        run: node repository-contribution-stats/action/dist/index.js
        env:
          GITHUB_PERSONAL_ACCESS_TOKEN: ${{ github.token }}
          INPUT_USERNAME: ${{ github.repository_owner }}
          INPUT_OUTPUT-FILE: dist/github-repository-contribution-stats.svg
          INPUT_COMBINE-ALL-YEARLY-CONTRIBUTIONS: "true"
          INPUT_HIDE-CONTRIBUTOR-RANK: "true"
          INPUT_LIMIT: "6"
          INPUT_THEME: github_dark
      - run: test -s dist/github-repository-contribution-stats.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

GitHub Space Shooter

configured

Turns contribution activity into an animated space shooter GIF generated in your own workflow.

#animated#game#space#contributions#gif#workflow
Loading visualizer preview...
GitHub Space Shooter 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 GitHub Space Shooter

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

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 20
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: czl9707/gh-space-shooter
          ref: 6b945979b0cf53e7887e62d32fddcdb5bccbed89
          path: space-shooter
      - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
        with:
          python-version: "3.12"
      - run: pip install ./space-shooter
      - name: Generate shooter GIF
        env:
          GH_TOKEN: ${{ github.token }}
        run: |
          mkdir -p dist
          gh-space-shooter "${{ github.repository_owner }}" --output dist/github-space-shooter.gif --strategy random --fps 20
      - run: test -s dist/github-space-shooter.gif
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

GitHub Stats Card

stats

A compact hosted SVG card for user, language, and repository statistics with a large theme collection.

#stats#card#languages#repositories#themes#svg
Theme:
Loading visualizer preview...
GitHub Stats Card preview for Shik3i
README Markdown Code:
[![GitHub Stats Card](https://stats-card.pages.dev/user?user=Shik3i&layout=compact&theme=)](https://github.com/KasRoudra/github-stats-card)

GitHub Stats Extended

stats

Extended contribution, language, and profile statistics with the actively maintained GitHub Stats API.

#stats#overview#contributions#languages#activity
Theme:
Loading visualizer preview...
GitHub Stats Extended preview for Shik3i
README Markdown Code:
[![GitHub Stats Extended](https://github-stats-extended.vercel.app/api?username=Shik3i&theme=)](https://github.com/stats-organization/github-stats-extended)

GitHub Stats Terminal Style

stats

Animated terminal-style GitHub statistics with typing effects and configurable shell themes.

#terminal#stats#animated#typing#contributions#svg
Theme:
Loading visualizer preview...
GitHub Stats Terminal Style preview for Shik3i
README Markdown Code:
[![GitHub Stats Terminal](https://github-stats-terminal-style-five.vercel.app/api/stats?username=Shik3i&theme=&headerStyle=mac)](https://github.com/yogeshwaran01/github-stats-terminal-style)

GitHubPoster

configured

Creates animated GitHub contribution posters and skyline outputs from public contribution history.

#poster#contributions#animated#skyline#svg#workflow
Loading visualizer preview...
GitHubPoster 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 GitHubPoster

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

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 20
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
        with:
          repository: yihong0618/GitHubPoster
          ref: 61691ee19032e43bdb4277096279b304c2b9ad44
          path: github-poster
      - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
        with:
          python-version: "3.12"
      - run: pip install ./github-poster
      - name: Generate GitHub poster
        working-directory: github-poster
        run: python -m github_poster github --github_user_name "${{ github.repository_owner }}" --year 2025-2026 --with-animation
      - run: |
          mkdir -p dist
          cp github-poster/OUT_FOLDER/github.svg dist/github-poster.svg
      - run: test -s dist/github-poster.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Isometric Contributions Embeds

activity

3D isometric contribution visualizations with themes, rolling windows, statistics, and profile credits.

#isometric#3d#contributions#activity#png#stats
Theme:
Loading visualizer preview...
Isometric Contributions Embeds preview for Shik3i
README Markdown Code:
[![Isometric Contributions](https://isometric-contributions-spectrewolf8.onrender.com/api/graph?username=Shik3i&theme=&stats=true&credit=true)](https://github.com/Spectrewolf8/isometric-contributions-embeds)

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)

Maeul in the Sky

configured

Animated isometric terrain generated from your GitHub contributions with seasonal landscapes.

#animated#isometric#terrain#contributions#seasons#workflow
Loading visualizer preview...
Maeul in the Sky 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 Maeul in the Sky

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

permissions:
  contents: write

jobs:
  generate:
    runs-on: ubuntu-latest
    timeout-minutes: 15
    steps:
      - uses: t1seo/maeul-in-the-sky@e308d35ed2311502f44e557a93ab167de9922f5b
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          output_dir: ./dist
      - run: test -s dist/maeul-in-the-sky-dark.svg && test -s dist/maeul-in-the-sky-light.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Metrics

configured

A highly configurable GitHub infographic generated as an SVG by GitHub Actions.

#metrics#stats#infographic#plugins#workflow
Loading visualizer preview...
Metrics 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 GitHub Metrics

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

permissions:
  contents: write

jobs:
  metrics:
    runs-on: ubuntu-latest
    timeout-minutes: 20
    steps:
      - uses: lowlighter/metrics@366f8b9dfe3a59656c67d5dcad9950f59c9bc96d
        with:
          filename: metrics.svg
          output_action: none
          token: ${{ secrets.GITHUB_TOKEN }}
          template: classic
          config_timezone: Europe/Berlin
      - run: sudo cp /metrics_renders/metrics.svg dist/metrics.svg
      - uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
        with:
          target_branch: output
          build_dir: dist
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Nomlings Badge

badges

A small animated pixel pet that reflects GitHub contribution activity without signup, configuration, or private credentials.

#badge#pixel#pet#contributions#animated#svg
Loading visualizer preview...
Nomlings Badge preview for Shik3i
README Markdown Code:
[![Nomlings Badge](https://nomlings.cc/badge/Shik3i?scale=4&v=3)](https://nomlings.cc/badge)

Profile Bengo

stats

A rotating multi-slide SVG profile card with repositories, stars, languages, commits, and other GitHub metrics.

#stats#profile#slides#repositories#svg
Loading visualizer preview...
Profile Bengo preview for Shik3i
README Markdown Code:
[![Profile Bengo](https://readme-svg-profile-bengo.vercel.app/api/card?user=Shik3i)](https://github.com/readme-SVG/readme-SVG-profile-bengo)

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 }}

Stats SVG

stats

A cyberpunk-style SVG dashboard combining GitHub statistics with optional external data sources.

#stats#cyberpunk#dashboard#github#svg
Loading visualizer preview...
Stats SVG preview for Shik3i
README Markdown Code:
[![Stats SVG](https://stats-svg.vercel.app/api/github-status?username=Shik3i)](https://github.com/gh0stintheshe11/Stats-SVG)

Terminal Identity

headers

Customizable terminal-style profile cards with live GitHub stats, languages, themes, and animated SVG modes.

#terminal#header#animated#stats#languages#svg
Theme:
Loading visualizer preview...
Terminal Identity preview for Shik3i
README Markdown Code:
[![Terminal Identity](https://terminal-identity-opal.vercel.app/api?name=Shik3i&username=Shik3i&role=Developer&tagline=Building+in+public&command=git+commit+-m+ship&theme=&pattern=grid&width=980&height=auto&showContribs=on)](https://github.com/doyoon530/terminal-identity)

User Statistician

stats

Generates a detailed SVG summary of repositories, contributions, languages, and GitHub activity in a scheduled workflow.

#stats#activity#languages#repositories#workflow#svg
Theme:
Loading visualizer preview...
User Statistician 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 User Statistician

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

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
      - run: mkdir -p dist
      - uses: cicirello/user-statistician@f44e0aaf18447f3923eca30b6caa7d0b9fe84213
        with:
          image-file: dist/user-statistician.svg
          commit-and-push: false
          colors: dark
        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 }}