git404hub

what is portfolio-dumper fr?

abduznik/portfolio-dumper — explained in plain English

Analysis updated 2026-05-18

19HTMLAudience · developerComplexity · 2/5LicenseSetup · easy

tl;dr

A static browser app that converts a GitHub profile or single repo into clean Markdown for documentation, portfolios, or LLM prompts.

vibe map

mindmap
  root((portfolio-dumper))
    Inputs
      GitHub username
      Profile URL
      Repo URL
      Optional PAT
    Outputs
      Markdown file
      Clipboard text
      Repo statistics
    Use Cases
      Build a prompt context
      Generate a portfolio
      Document a repo
    Tech Stack
      HTML
      Vanilla JS
      Tailwind CSS
      Docker

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Dump a GitHub profile to Markdown for an AI prompt

VIBE 2

Self-host the static site on Nginx or Docker for your team

VIBE 3

Ingest one repo README plus metadata for documentation

VIBE 4

Export a developer's repo list with star and language stats

what's the stack?

HTMLJavaScriptTailwindDockerGitHub API

how it stacks up fr

abduznik/portfolio-dumperadcbueno/flashcardscodyschneiderx/seo-ai-search-dashboard
Stars191919
LanguageHTMLHTMLHTML
Setup difficultyeasyeasymoderate
Complexity2/51/53/5
Audiencedevelopergeneralpm founder

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 5min

Without a GitHub PAT you will hit the unauthenticated API rate limit quickly when ingesting large profiles.

MIT licensed: free to use, modify, and distribute commercially as long as the copyright notice stays in the source.

in plain english

Portfolio Dumper is a small web page that turns a GitHub profile, or a single GitHub repository, into a plain Markdown document. The idea is that Markdown is easy for a person to read and easy for a language model to ingest as part of a prompt, so this tool gives you a quick way to grab the public information about a developer or a project in that format. Typical uses the author suggests are dropping the output into documentation, into a personal portfolio, or into an AI prompt. The input can be a raw username, a profile URL, or a deep link to a specific repository. There are three modes: pull only the profile README, pull only the list of repositories, or pull both. When you point it at a specific repository instead of a profile, it pulls that repository's README and metadata directly. While running, it also shows simple statistics: how many repositories there are, total stars, forks, and the spread of programming languages used. There is an option to paste in a GitHub Personal Access Token. This is not required, but the unauthenticated GitHub API has tight rate limits, and a token raises them. A token also gives access to your private repositories if you want to include them. The output can be copied to the clipboard or downloaded as a Markdown file. The application is entirely static, which means there is no backend server. The README emphasizes that all API calls go directly from your browser to GitHub, so any token you paste in stays in your own browser tab and is not sent anywhere else. The page itself is built with vanilla JavaScript and uses Tailwind CSS loaded from a CDN. For self-hosting the README gives two paths. Because everything is a static file, any web server like Nginx, Apache, or even Python's built-in http server can host the index page and the assets folder. A prebuilt Docker image is also published, with a one-line docker run command and a short docker-compose example that exposes the app on port 8080.

prompts (copy fr)

prompt 1
Add a new ingestion mode to portfolio-dumper that pulls only pinned repos
prompt 2
Replace the Tailwind CDN with a built Tailwind bundle and update index.html
prompt 3
Add a button that exports the Markdown output as a downloadable JSON file too
prompt 4
Wire up a small Node proxy so the GitHub PAT is stored server-side instead of in the browser
prompt 5
Write a Dockerfile that builds from source instead of pulling the prebuilt GHCR image

Frequently asked questions

what is portfolio-dumper fr?

A static browser app that converts a GitHub profile or single repo into clean Markdown for documentation, portfolios, or LLM prompts.

What language is portfolio-dumper written in?

Mainly HTML. The stack also includes HTML, JavaScript, Tailwind.

What license does portfolio-dumper use?

MIT licensed: free to use, modify, and distribute commercially as long as the copyright notice stays in the source.

How hard is portfolio-dumper to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is portfolio-dumper for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.