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

@useresume/cli

v1.0.0

Published

CLI for AI-powered resume and cover letter generation via useresume.ai — built for OpenClaw agents

Downloads

81

Readme

@useresume/cli

CLI for AI-powered resume and cover letter generation via useresume.ai — built for OpenClaw agents.

Install

npm install -g @useresume/cli

Setup

export USERESUME_API_KEY=ur_your_key_here

Get your API key at useresume.ai/account/api-platform.

Commands

All commands output JSON to stdout.

Resume

# Create a resume (1 credit)
useresume resume:create --input resume.json

# Create a tailored resume for a specific job (5 credits)
useresume resume:create-tailored --input tailored.json

# Parse an existing resume file (4 credits)
useresume resume:parse --file-url "https://example.com/resume.pdf" --parse-to json
useresume resume:parse --file ./resume.pdf --parse-to markdown

Cover Letter

# Create a cover letter (1 credit)
useresume cover-letter:create --input cover-letter.json

# Create a tailored cover letter for a specific job (5 credits)
useresume cover-letter:create-tailored --input tailored-cl.json

# Parse an existing cover letter file (4 credits)
useresume cover-letter:parse --file-url "https://example.com/cl.pdf" --parse-to json
useresume cover-letter:parse --file ./cover-letter.pdf --parse-to markdown

Utility

# Check status of an async run (0 credits)
useresume run:get <run-id>

# Test your API key (0 credits)
useresume credentials:test

JSON Input Format

resume:create

{
  "content": {
    "name": "Jane Doe",
    "role": "Software Engineer",
    "email": "[email protected]",
    "summary": "Experienced software engineer...",
    "employment": [
      {
        "title": "Senior Engineer",
        "company": "Acme Corp",
        "start_date": "2020-01-01",
        "present": true,
        "responsibilities": [{ "text": "Led team of 5 engineers" }]
      }
    ],
    "education": [],
    "skills": [{ "name": "TypeScript", "proficiency": "Expert" }]
  },
  "style": {
    "template": "clean",
    "template_color": "blue",
    "font": "inter"
  }
}

resume:create-tailored

{
  "resume_content": {
    "content": { "...same as resume:create content..." },
    "style": { "...same as resume:create style..." }
  },
  "target_job": {
    "job_title": "Senior Frontend Engineer",
    "job_description": "We are looking for..."
  },
  "tailoring_instructions": "Emphasize React experience"
}

Response Format

All commands return JSON with this structure:

{
  "success": true,
  "data": {
    "file_url": "https://...",
    "file_url_expires_at": 1234567890,
    "file_expires_at": 1234567890,
    "file_size_bytes": 54321
  },
  "meta": {
    "run_id": "run_abc123",
    "credits_used": 1,
    "credits_remaining": 95
  }
}

Output Contract

All commands output JSON to stdout — including errors. This is critical for agent consumption:

  • Success and error JSON always goes to stdout (never stderr)
  • Non-zero exit code on failure
  • yargs parse errors are also JSON: { "success": false, "error": { "code": "CLI_ERROR", "message": "..." } }
  • API errors use the SDK's UseResumeError.status directly: { "code": "HTTP_401", "message": "..." }
  • credentials:test returns account status on success, and { "success": false, "data": { "valid": false, ... } } with a non-zero exit code on invalid credentials

OpenClaw / ClawHub

This CLI includes a SKILL.md for discovery by OpenClaw agents. Install via ClawHub:

openclaw skills install useresume

Or place the skill folder in ~/.openclaw/skills/useresume/ manually.

See SKILL.md for the full agent-readable spec.

License

MIT