From CV to
GitHub Profile.

A comprehensive guide to transforming your professional experience into a stunning GitHub README.

1

Upload Your CV

Start by navigating to our Upload Page. We accept standard PDF formats. Ensure your CV is text-selectable (not a scanned image) for the best extraction results.

  • Use a clean, standard layout
  • Keep file size under 10MB
  • Ensure contact details are accurate
Upload CV Interface
2

AI Processing

Our advanced AI analyzes your document structure, extracting key skills, experience, and projects. This process typically takes about 30 seconds. We identify your unique strengths to highlight them effectively.

AI Analysis Process
3

Download & Edit

Once generated, you can preview and edit your README directly in our editor. When satisfied, download the README.md file.

Download and Edit
4

Create Repository

Go to GitHub and create a new repository with the same name as your username (e.g., username/username). This is a special repository that appears on your profile.

Create GitHub Repository
5

Push to GitHub

Upload your new README.md to this repository. You can do this via the web interface or command line.

# If using command line:

git clone https://github.com/username/username.git

cd username

# [Replace README.md file]

git add README.md

git commit -m "Update profile"

git push

Push to GitHub