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

jobx

v1.2.2

Published

AI-powered CLI tool to automate job applications, generate personalized emails, and track applications using Google Sheets.

Readme

Features

  • AI-powered email generation using the OpenAI API
  • Google Sheets integration for application tracking
  • Optional email submission directly from the CLI
  • Minimal and flexible JSON-based configuration
  • Profile and template system for reusable workflows
  • Application status logging and monitoring
  • Fully written in TypeScript for reliability

Quick Start

Initialize the Project

npx jobx init

This command generates the required configuration files:

| File | Description | | ----------------------- | ------------------------------------------------ | | jobx.config.json | Profile and contact information | | jobx.credentials.json | API keys and authentication | | jobx.apply.json | Active job application metadata | | jobx.mail.md | Generated email output | | jobx.context.txt | Additional context for AI email generation | | jobx.cv.pdf | Your CV/curriculum vitae (PDF format) | | jobx.resume.pdf | Your resume (PDF format) |

Configuration

jobx.apply.json

The jobx.apply.json file contains metadata for your current job application:

{
  "company": "Company Name",
  "company_email": "[email protected]",
  "company_website": "https://company.com",
  "subject": "Application for Software Engineer Position",
  "position": "Software Engineer",
  "experience": "3 years of experience in full-stack development",
  "education": "Bachelor's in Computer Science",
  "job_source": "https://company.com/careers/job-id",
  "location": "Remote",
  "attachment_type": "resume"
}

Field Details:

  • company_website: Can be a valid URL or "N/A" if not available
  • location: Must be either "Remote" or "Onsite"
  • attachment_type: Must be either "cv" or "resume" (determines which PDF file to attach)

⚠️ Important Note:

When you run jobx mail generate, the AI may automatically update certain fields in jobx.apply.json based on the context from jobx.context.txt. Always review jobx.apply.json and the generated email in jobx.mail.md before running jobx mail submit.

Commands

| Command | Description | | ---------------------------------------- | ------------------------------------------------ | | jobx init | Initialize configuration files | | jobx mail generate | Generate job application email using AI | | jobx mail submit | Submit generated job application email | | jobx test | Validate configuration files | | jobx reset soft | Soft reset (keep credentials) | | jobx reset hard | Hard reset (reset everything) | | jobx sheet find | Find all job applications with pagination | | jobx sheet find -i <id> | Find job application by specific ID | | jobx sheet find -p <page> -l <limit> | Find jobs with custom page and limit | | jobx sheet delete <id> | Delete job application by ID | | jobx sheet update <id> <field> <value> | Update job application field | | jobx --version | Display version information | | jobx --help | Display help information |

Sheet Find Options

The jobx sheet find command supports the following options:

  • -p, --page <page> - Page number (default: 1)
  • -l, --limit <limit> - Records per page (default: 20)
  • -i, --id <id> - Find by specific ID

Examples:

# Find first 20 records (default)
jobx sheet find

# Find page 2
jobx sheet find -p 2

# Find first 50 records
jobx sheet find -l 50

# Find page 3 with 10 records per page
jobx sheet find -p 3 -l 10

# Find specific record by ID
jobx sheet find -i abc123

Development

Requirements

  • Node.js 18 or later
  • npm or yarn
  • TypeScript

Setup

git clone https://github.com/DevAbabil/jobx.git && cd jobx

npm install
npm run dev        # Development mode
npm run build      # Build for production

Project Structure

jobx/
├── src/
│   ├── cli/           # Command definitions
│   ├── core/          # Core logic
│   ├── types/         # TypeScript types
│   ├── utils/         # Utility functions
│   └── constants/     # Constant values
├── scripts/           # Build and support scripts
├── docs/              # Documentation site
└── dist/              # Compiled output

Security

  • All credentials are stored locally within your project.
  • API keys are only transmitted to their respective services.
  • OpenAI-powered email generation is executed locally using your API key.
  • Google Sheets integration uses service account authentication for secure access.

Contributing