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

create-me-txt

v0.1.1

Published

CLI tool to generate, validate, and fetch me.txt files

Readme

create-me-txt

CLI tool to generate, validate, and fetch me.txt files — the open standard for personal AI-readable identity.

Quick Start

npx create-me-txt

Not a developer? Tell your AI agent:

Create a me.txt file for me following the spec at metxt.org/spec. Place it at my site root (/me.txt). Keep it concise.

Installation

npm install -g create-me-txt
# or
pnpm add -g create-me-txt

This installs two binaries: create-me-txt (generator) and me-txt (utility commands).

Usage

Generate a me.txt

Run the interactive wizard:

create-me-txt
# or
create-me-txt generate

Pre-fill from your GitHub profile:

create-me-txt generate --github yourusername

Include all optional sections (Writing, Talks, Optional):

create-me-txt generate --full

Skip prompts and generate from flags only:

create-me-txt generate --github yourusername --yes

Output as JSON:

create-me-txt generate --github yourusername --yes --json

Specify output path:

create-me-txt generate -o public/me.txt

Validate a me.txt

me-txt lint me.txt

Example output:

  ✓ Valid me.txt (spec v0.1)
  ℹ 6 sections found: Now, Skills, Stack, Links, Preferences
  ℹ Estimated token count: ~340 tokens

Fetch someone's me.txt

me-txt fetch example.com

The fetch command tries these URLs in order:

  1. https://example.com/me.txt
  2. https://example.com/.well-known/me.txt
  3. https://metxt.org/api/lookup (directory fallback)

Print full contents:

me-txt fetch example.com --print

Save to a file:

me-txt fetch example.com --save their-me.txt

me.txt Format

# Your Name

> One-line summary of who you are and what you do.

## Now

What you're currently working on or focused on.

## Skills

- Skill 1
- Skill 2
- Skill 3

## Stack

- Technology 1
- Technology 2

## Work

- [Project Name](url) - Description
- Company Name - Role

## Links

- [GitHub](https://github.com/username): Open source projects
- [Website](https://example.com): Blog and portfolio
- [Twitter](https://twitter.com/username): Tech thoughts

## Preferences

- Timezone: EST / UTC-5
- Contact: Email for serious inquiries
- Response time: 24-48 hours

Programmatic API

import { parse } from 'create-me-txt'

The package exports the parser, validator, renderer, and token estimator for use in other tools.

License

MIT