npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tailor4job

v1.0.3

Published

A command-line tool that helps candidates tailor their resumes and cover letters to specific job descriptions. Tailor4Job analyzes the provided documents, evaluates strengths and weaknesses, and offers actionable feedback to improve alignment with job req

Readme

Tailor4Job

Tailor4Job is a command-line tool that helps candidates tailor their resume and cover letter to specific job descriptions. By leveraging the Groq API and a specified model, Tailor4Job analyzes your resume and cover letter in relation to a job description, providing valuable insights to optimize your application for better chances of passing Applicant Tracking System (ATS) screenings.


Features

  • Resume and Cover Letter Analysis: Compare your resume and cover letter with the job description to highlight relevant skills and experiences.
  • Detailed Feedback: Receive in-depth insights into your strengths, areas for improvement, and specific recommendations.
  • ATS Compatibility Analysis: Get an estimation of your application's compatibility with ATS, including keyword suggestions.
  • Customizable Models: Use different processing models (e.g., llama3-8b-8192) for analysis. [Optional Feature]
  • Flexible File Formats: Choose between .docx or .pdf output formats for tailored documents. [Optional Feature]

Prerequisites

Ensure the following are installed on your system:

  1. Python 3.7 or later: Download Python
    • Check if Python is installed:
      python --version
    • Ensure pip (Python package manager) is installed:
      pip --version
  2. wkhtmltopdf: Required for PDF generation.
  3. Groq API Key:

Installation

Option 1: From npm (Recommended)

  1. Install Tailor4Job globally using npm:
    npm install -g tailor4job
  2. Test the installation:
    tailor4job --help

Option 2: From Source

  1. Clone the Repository:

    git clone https://github.com/InderParmar/Tailor4Job
    cd Tailor4Job
  2. Create and Activate a Virtual Environment (recommended):

    python3 -m venv env
    source env/bin/activate  # On Windows use: env\Scripts\activate
  3. Install Dependencies:

    pip install -r requirements.txt
  4. Set Up wkhtmltopdf (for PDF output):

    • Download and install wkhtmltopdf and ensure it’s available in your system’s PATH.
  5. Configure the .env File:

    • Create a .env file in the project root and add your Groq API key:
      GROQ_API_KEY=your_actual_api_key_here

Usage

Tailor4Job Commands

Run Tailor4Job from the command line to analyze your resume and cover letter.

Basic Analysis Command

tailor4job --model llama3-8b-8192 --output Output_Analysis.docx --analysis_mode basic GENERAL_RESUME.docx General_Cover_Letter.docx job_description.txt

Detailed Analysis Command

tailor4job --model llama3-8b-8192 --output Output_Analysis.docx --analysis_mode detailed GENERAL_RESUME.docx General_Cover_Letter.docx job_description.txt

Check Version

tailor4job --version

Display Help

tailor4job --help

Get an API Key

To use Tailor4Job, you’ll need an API key for the Groq API. Follow these steps:

  1. Sign up for an account at Groq API.
  2. Navigate to the API section and generate an API key.
  3. Add the API key to your .env file in the project root:
    GROQ_API_KEY=your_actual_api_key_here

Troubleshooting

  1. Python Not Found:

    • Ensure Python is installed and added to your system’s PATH.
    • For Windows, re-install Python and select the "Add Python to PATH" option during setup.
  2. pip Command Not Recognized:

    • Ensure pip is installed. Use the following command to install pip manually:
      python -m ensurepip --upgrade
  3. wkhtmltopdf Not Found:

    • Verify wkhtmltopdf is installed and added to PATH:
      wkhtmltopdf --version
  4. Command Not Found After npm Installation:

    • Ensure npm's global bin directory is in your PATH:
      npm config get prefix
      Add /prefix/bin to your PATH if necessary.
  5. API Key Missing:

    • Ensure the .env file contains the correct API key. The tool will raise an error if the key is missing or invalid.

Inputs and Outputs

Input Files

  • Resume: A .docx file with your general resume.
  • Cover Letter: A .docx file with your general cover letter.
  • Job Description: A .txt file containing the job description.

Output

Tailored resume and cover letter analysis results are saved as either .docx or .pdf files based on your preference.


License

This project is licensed under the MIT License. See the LICENSE file for details.


Happy tailoring, and best of luck with your job applications! 🚀