DEV Community

Azeez Abiodun Solomon
Azeez Abiodun Solomon

Posted on

Introducing gitresume, an open-source cli tool for building résumé with LLM support

One of the challenges I’ve faced in the past is keeping track of my contributions across different projects, teams, and companies. When it’s time to update my résumé during a job search, it often turns into a struggle to recall what I’ve recently accomplished.

This is why I built Gitresume, a tool that helps me:

  1. Keep track of my contributions
  2. Create résumés with AI assistance
  3. Gain insights from my Git commits
  4. Export my résumé in multiple formats

Installation

To get started, visit https://gitresume.app and follow the installation instructions.
You’ll need to install the Gitresume CLI, which is available for Windows, macOS, and Linux.

Mac OSX

 $ brew tap iamhabbeboy/homebrew-tap
 $ brew install iamhabbeboy/tap/gitresume
Enter fullscreen mode Exit fullscreen mode

Linux

curl -sL https://raw.githubusercontent.com/iamhabbeboy/gitresume-cli/main/install.sh | bash
Enter fullscreen mode Exit fullscreen mode

Windows

choco install gitresume --version=0.1.0

Enter fullscreen mode Exit fullscreen mode

Create your first resume

To create a résumé, start the Gitresume server using the command below.
But first, verify that the installation was successful:

$ gitresume

Usage:
  gitresume [command]

Available Commands:
  ai          Test AI integration
  help        Help about any command
  init        Initialize gitresume config
  seed        Seed your commit messages
  serve       Web dashboard for managing your resumes

Flags:
  -h, --help   help for gitresume

Use "gitresume [command] --help" for more information about a command
Enter fullscreen mode Exit fullscreen mode

Then start the server using

$ gitresume serve

🚀 Starting dashboard on http://localhost:4000
✨ Build your resume visually...
Enter fullscreen mode Exit fullscreen mode

Next, open your browser and navigate to the dashboard URL. From there, click on Resumes.
Resume dashboard

Click Create Resume to begin
Create resume

You can now start editing the form and customizing your résumé
Resume form

Check out the full demo on how to create your résumé with Git activity + AI support

Top comments (0)