Skip to content

mbokinala/autocommit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

autocommit

A small command-line utility to generate commit messages by passing the git diff to an LLM. No more "wip", "stuff", or "sdmcskdc" cluttering the commit log.

Installation

  1. Install with npm:
    npm install -g @mbokinala/autocommit
  2. Get an API key from OpenAI
  3. Set the API key using the config command:
    autocommit config set OPENAI_API_KEY your-api-key-here

Usage

git add <...>
autocommit

Alternatively, pass the -a flag to add all unstaged changes to the commit:

autocommit -a

Roadmap:

  • Add more LLM providers / model options
  • Better documentation
  • Customizable system prompt
  • Publish/distribute on npm/brew
  • Store API key / model preference in dedicated config file
  • Add tests
  • Proper config management in dotfile

Releases

No releases published