Pinkmess is a note-taking CLI tool that allows you to manage collections of markdown notes with AI-powered metadata generation capabilities.
It is a completely opinionated PKMS terminal manager for lazy people just like me.
Warning
This is a personal tool that I built for my own note-taking workflow and experimentation with AI-powered note organization. It is NOT intended for production use and comes with several important caveats:
- No Stability Guarantees: The API and CLI interface may change at any time without warning
- Limited Testing: The code has not been extensively tested beyond my personal use cases
- Security Considerations: The tool hasn't undergone security auditing
- Dependencies: Relies on specific versions of external libraries that may become outdated
- Performance: Not optimized for large-scale note collections
- Documentation: May be incomplete or outdated
pip install pinkmess
Or install the latest version from the repository:
$ pip install git+https://github.com/leodiegues/pinkmess.git
Requirements:
- Python 3.10+
- OpenAI API key
- Text editor (defaults to nvim)
- Set your OpenAI API key:
- Create and set a collection:
- Create and edit a note:
- Generate metadata:
The CLI is organized into three main command groups:
collection
: Manages note collectionsnote
: Handles individual notesconfig
: Manages application configuration
pinkmess collection create PATH [--name NAME] [--llm-model MODEL] [--llm-settings SETTINGS]
Creates a new collection at the specified path.
Example:
pinkmess collection create ~/notes --name personal
pinkmess collection set NAME
Sets the active collection by its name.
Example:
pinkmess collection set personal
pinkmess collection list
# or
pinkmess collection ls
Shows all registered collections.
pinkmess collection current
Displays the currently active collection.
pinkmess collection remove NAME
# or
pinkmess collection rm NAME
Removes a collection from the registry.
Example:
pinkmess collection remove personal
pinkmess collection open [--name NAME]
Opens the specified collection (or current collection if no name provided) in your configured editor.
Example:
# Open current collection
pinkmess collection open
# Open a specific collection
pinkmess collection open --name personal
pinkmess collection stats
Displays statistics about the current collection (number of notes, creation date, last modification).
pinkmess note create
Creates a new empty note in the current collection with a timestamp-based filename.
pinkmess note edit [--path PATH]
Opens the specified note (or last created note) in your configured editor.
pinkmess note generate-metadata [--path PATH] [--key {summary|tags}]
Generates AI-powered metadata for a note.
Examples:
# Generate summary for the last created note
pinkmess note generate-metadata --key summary
# Generate tags for a specific note
pinkmess note generate-metadata --path ~/notes/20230815123456.md --key tags
pinkmess note duplicate [--path PATH]
Creates a copy of the specified note (or last created note) with a new timestamp-based filename in the current collection.
Example:
# Duplicate the last created note
pinkmess note duplicate
# Duplicate a specific note
pinkmess note duplicate --path ~/notes/20230815123456.md
pinkmess note last
Shows the path of the most recently created note.
pinkmess config edit
Opens the configuration file in your default editor.
pinkmess config show
Displays the current configuration in JSON format.
pinkmess config set-env KEY VALUE
Sets an environment variable in the .env file.
Example:
pinkmess config set-env OPENAI_API_KEY your_api_key_here
The configuration is stored in TOML format at the user config directory:
- Linux:
~/.config/pinkmess/config.toml
- macOS:
~/Library/Application Support/pinkmess/config.toml
- Windows:
%LOCALAPPDATA%\pinkmess\config.toml
Key configuration options include:
- Collections list
- Current collection index
- Default LLM model
- LLM settings
- Editor preference
Environment variables are stored in a .env
file in the same directory.
- Create a new collection:
pinkmess collection create ~/notes/work --name work
- Set it as current:
pinkmess collection set work
- Create a new note:
pinkmess note create
- Edit the note:
pinkmess note edit
- Generate metadata:
pinkmess note generate-metadata --key summary
pinkmess note generate-metadata --key tags
The project is licensed under the GPLv3 license.
Happy note-taking! πΈ