Jeremy
CLI

CLI

Manage Jeremy libraries from the command line.

The jeremy CLI lets you manage documentation libraries from the terminal. Use it to ingest new libraries, list existing ones, refresh content, and delete libraries you no longer need.

Commands

CommandDescription
jeremy addIngest a new library from an llms.txt file or web URL
jeremy listList all ingested libraries
jeremy refreshRe-ingest a library from its stored source
jeremy deleteDelete a library
jeremy configGet or set CLI configuration

See Commands for full usage details and examples.

Quick Example

# Ingest a library from its llms.txt
jeremy add --name react --id react --llms-txt https://react.dev/llms.txt

# List all libraries
jeremy list

# Refresh a library to pick up new docs
jeremy refresh --id react

# Delete a library
jeremy delete --id react

Next Steps