create-me-txt
v0.1.1
Published
CLI tool to generate, validate, and fetch me.txt files
Maintainers
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-txtNot 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-txtThis 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 generatePre-fill from your GitHub profile:
create-me-txt generate --github yourusernameInclude all optional sections (Writing, Talks, Optional):
create-me-txt generate --fullSkip prompts and generate from flags only:
create-me-txt generate --github yourusername --yesOutput as JSON:
create-me-txt generate --github yourusername --yes --jsonSpecify output path:
create-me-txt generate -o public/me.txtValidate a me.txt
me-txt lint me.txtExample output:
✓ Valid me.txt (spec v0.1)
ℹ 6 sections found: Now, Skills, Stack, Links, Preferences
ℹ Estimated token count: ~340 tokensFetch someone's me.txt
me-txt fetch example.comThe fetch command tries these URLs in order:
https://example.com/me.txthttps://example.com/.well-known/me.txthttps://metxt.org/api/lookup(directory fallback)
Print full contents:
me-txt fetch example.com --printSave to a file:
me-txt fetch example.com --save their-me.txtme.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 hoursProgrammatic API
import { parse } from 'create-me-txt'The package exports the parser, validator, renderer, and token estimator for use in other tools.
License
MIT
