MCPcopy Index your code
hub / github.com/xitanggg/open-resume

github.com/xitanggg/open-resume @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
235 symbols 551 edges 102 files 0 documented · 0% updated 20mo ago★ 8,73996 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

OpenResume

OpenResume is a powerful open-source resume builder and resume parser.

The goal of OpenResume is to provide everyone with free access to a modern professional resume design and enable anyone to apply for jobs with confidence.

Official site: https://open-resume.com

⚒️ Resume Builder

OpenResume's resume builder allows user to create a modern professional resume easily.

Resume Builder Demo

It has 5 Core Features: |

Feature

| Description | |---|---| | 1. Real Time UI Update | The resume PDF is updated in real time as you enter your resume information, so you can easily see the final output. | | 2. Modern Professional Resume Design | The resume PDF is a modern professional design that adheres to U.S. best practices and is ATS friendly to top ATS platforms such as Greenhouse and Lever. It automatically formats fonts, sizes, margins, bullet points to ensure consistency and avoid human errors. | | 3. Privacy Focus | The app only runs locally on your browser, meaning no sign up is required and no data ever leaves your browser, so it gives you peace of mind on your personal data. (Fun fact: Running only locally means the app still works even if you disconnect the internet.) | | 4. Import From Existing Resume PDF | If you already have an existing resume PDF, you have the option to import it directly, so you can update your resume design to a modern professional design in literally a few seconds. | | 5. Successful Track Record | OpenResume users have landed interviews and offers from top companies, such as Dropbox, Google, Meta to name a few. It has been proven to work and liken by recruiters and hiring managers. |

🔍 Resume Parser

OpenResume’s second component is the resume parser. For those who have an existing resume, the resume parser can help test and confirm its ATS readability.

Resume Parser Demo

You can learn more about the resume parser algorithm in the "Resume Parser Algorithm Deep Dive" section.

📚 Tech Stack

|

Category

|

Choice

| Descriptions | |---|---|---| | Language | TypeScript | TypeScript is JavaScript with static type checking and helps catch many silly bugs at code time. | | UI Library | React | React’s declarative syntax and component-based architecture make it simple to develop reactive reusable components. | | State Management | Redux Toolkit | Redux toolkit reduces the boilerplate to set up and update a central redux store, which is used in managing the complex resume state. | | CSS Framework | Tailwind CSS | Tailwind speeds up development by providing helpful css utilities and removing the need to context switch between tsx and css files. | | Web Framework | NextJS 13 | Next.js supports static site generation and helps build efficient React webpages that support SEO. | | PDF Reader | PDF.js | PDF.js reads content from PDF files and is used by the resume parser at its first step to read a resume PDF’s content. | | PDF Renderer | React-pdf | React-pdf creates PDF files and is used by the resume builder to create a downloadable PDF file. |

📁 Project Structure

OpenResume is created with the NextJS web framework and follows its project structure. The source code can be found in src/app. There are a total of 4 page routes as shown in the table below. (Code path is relative to src/app)

|

Page Route

| Code Path | Description | |---|---|---| | / | /page.tsx | Home page that contains hero, auto typing resume, steps, testimonials, logo cloud, etc | | /resume-import | /resume-import/page.tsx | Resume import page, where you can choose to import data from an existing resume PDF. The main component used is ResumeDropzone (/components/ResumeDropzone.tsx) | | /resume-builder | /resume-builder/page.tsx | Resume builder page to build and download a resume PDF. The main components used are ResumeForm (/components/ResumeForm) and Resume (/components/Resume) | | /resume-parser | /resume-parser/page.tsx | Resume parser page to test a resume’s AST readability. The main library util used is parseResumeFromPdf (/lib/parse-resume-from-pdf) |

💻 Local Development

Method 1: npm

  1. Download the repo git clone https://github.com/xitanggg/open-resume.git
  2. Change the directory cd open-resume
  3. Install the dependency npm install
  4. Start a development server npm run dev
  5. Open your browser and visit http://localhost:3000 to see OpenResume live

Method 2: Docker

  1. Download the repo git clone https://github.com/xitanggg/open-resume.git
  2. Change the directory cd open-resume
  3. Build the container docker build -t open-resume .
  4. Start the container docker run -p 3000:3000 open-resume
  5. Open your browser and visit http://localhost:3000 to see OpenResume live

Extension points exported contracts — how you extend this code

InputProps (Interface)
(no doc)
src/app/components/ResumeForm/ThemeForm/InlineInput.tsx
InputProps (Interface)
(no doc)
src/app/components/ResumeForm/Form/InputGroup.tsx
TextItem (Interface)
(no doc)
src/app/lib/parse-resume-from-pdf/types.ts
TextScore (Interface)
(no doc)
src/app/lib/parse-resume-from-pdf/types.ts
Settings (Interface)
(no doc)
src/app/lib/redux/settingsSlice.ts

Core symbols most depended-on inside this repo

cx
called by 20
src/app/lib/cx.ts
getTextWithHighestFeatureScore
called by 15
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/lib/feature-scoring-system.ts
deepClone
called by 12
src/app/lib/deep-clone.ts
getSectionLinesByKeywords
called by 7
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/lib/get-section-lines.ts
handleSettingsChange
called by 5
src/app/components/ResumeForm/ThemeForm/index.tsx
getAllFontFamiliesToLoad
called by 4
src/app/components/fonts/lib.ts
makeObjectCharIterator
called by 4
src/app/lib/make-object-char-iterator.ts
isBold
called by 4
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/lib/common-features.ts

Shape

Function 221
Interface 13
Enum 1

Languages

TypeScript100%

Modules by API surface

src/app/components/ResumeForm/Form/InputGroup.tsx14 symbols
src/app/lib/redux/settingsSlice.ts12 symbols
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/lib/common-features.ts12 symbols
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/extract-profile.ts12 symbols
src/app/lib/redux/types.ts8 symbols
src/app/lib/redux/resumeSlice.ts7 symbols
src/app/components/ResumeForm/Form/index.tsx7 symbols
src/app/components/ResumeDropzone.tsx7 symbols
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/lib/bullet-points.ts6 symbols
src/app/resume-parser/ResumeParserAlgorithmArticle.tsx5 symbols
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/lib/subsections.ts5 symbols
src/app/lib/parse-resume-from-pdf/extract-resume-from-sections/extract-education.ts5 symbols

Dependencies from manifests, versioned

@heroicons/react2.0.18 · 1×
@react-pdf/renderer3.1.10 · 1×
@reduxjs/toolkit1.9.5 · 1×
@tailwindcss/aspect-ratio0.4.2 · 1×
@testing-library/react14.0.0 · 1×
@types/node20.2.5 · 1×
@types/react18.2.7 · 1×
@types/react-dom18.2.4 · 1×
@vercel/analytics1.0.1 · 1×
autoprefixer10.4.14 · 1×
eslint8.41.0 · 1×

For agents

$ claude mcp add open-resume \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact