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

@kvalifik/relume-sitemap

v0.1.0

Published

Generate Relume-compatible sitemap clipboard payloads from XML sitemaps and crawled pages.

Downloads

114

Readme

Relume Sitemap

Generate Relume-compatible visual sitemap clipboard payloads from XML sitemaps and crawled page HTML.

This is a CLI-first tool. It can be used directly by humans, or through Agent Skills in Codex, Claude, and other skills-compatible agents.

This project is not affiliated with, endorsed by, or sponsored by Relume.

Install

Run without installing:

npx @kvalifik/relume-sitemap@latest --help

Or install globally:

npm install -g @kvalifik/relume-sitemap

Workflow

Inspect the sitemap first:

relume-sitemap inspect --sitemap https://www.example.com/sitemap.xml

If multiple language or path scopes are reported, choose one scope before crawling. For example, English root pages while excluding Danish pages:

relume-sitemap crawl \
  --sitemap https://www.example.com/sitemap.xml \
  --include / \
  --exclude /da \
  --out ./work/example-en

Build a Relume payload with inferred page sections:

relume-sitemap build \
  --crawl ./work/example-en/crawl.json \
  --out ./work/example-en \
  --sections include \
  --copy

Then paste into Relume's sitemap canvas with Cmd+V on macOS.

Commands

relume-sitemap inspect --sitemap <url-or-file>
relume-sitemap discover --url <url> --out <dir> [--max-pages 500] [--include /] [--exclude /da,/fr]
relume-sitemap crawl --sitemap <url-or-file> --include <path-prefix> --out <dir> [--exclude /da,/fr]
relume-sitemap build --crawl <crawl.json> --out <dir> [--sections include|none] [--copy]
relume-sitemap validate --payload <relume-payload.html>
relume-sitemap copy --payload <relume-payload.html>

Use discover when a public XML sitemap is missing, sparse, or only contains the homepage. It writes discovered-sitemap.xml, which can then be passed to crawl.

Outputs

The build command writes:

  • crawl.json
  • sitemap-tree.json
  • relume-payload.json
  • relume-payload.html
  • sitemap.md
  • copy-to-clipboard.html

relume-payload.html is the clipboard fragment Relume reads. sitemap.md is the easiest review file.

Agent Skills

The shared Agent Skill lives at:

skills/relume-sitemap/SKILL.md

Codex and Claude Code wrapper plugins are included under:

plugins/codex/relume-sitemap/
plugins/claude/relume-sitemap/

The wrappers intentionally stay thin. The CLI is the source of truth.

Codex

Install the marketplace from GitHub:

codex plugin marketplace add kvalifik/relume-sitemap

Then open the Codex plugin directory, choose Kvalifik Tools, and install Relume Sitemap.

For local skill-only installation, use Codex's skill installer with:

https://github.com/kvalifik/relume-sitemap/tree/main/skills/relume-sitemap

Claude Code

Install the marketplace from GitHub:

/plugin marketplace add kvalifik/relume-sitemap
/plugin install relume-sitemap@kvalifik-tools

The Claude plugin exposes the skill as /relume-sitemap:relume-sitemap.

Claude.ai

Create a ZIP containing the skills/relume-sitemap/ folder and upload it as a custom skill. The folder name must remain relume-sitemap.

Development

npm test

The test suite uses a local crawl fixture, so it does not hit live websites.