@floriandejonckheere/autocommit
v0.0.5
Published
Leverage the power of LLMs to automatically generate commit messages based on the staged changes in your git repository.
Readme
autocommit
Leverage the power of LLMs to automatically generate commit messages based on the staged changes in your git repository.
Usage
Install the CLI globally using npm:
npm install -g @floriandejonckheere/autocommitOr run it directly using npx:
npx @floriandejonckheere/autocommitConfigure the CLI by running:
autocommit configureThis will create a ~/.autocommit.mjs file where you can set the default options for the CLI.
Ensure the environment variable GEMINI_API_KEY is set with your Gemini API key, which can be obtained from the Google Cloud Console.
Generate a commit message based on the staged changes in your git repository by running:
autocommit generateSee the Commands section below for more details on available commands.
Commands
autocommit configure
Configure commit message generation options
USAGE
$ autocommit configure [--log-level debug|error|info|warn] [--dry-run] [--force]
FLAGS
--force Force the generation of a commit message even if the staged changes are too large
GLOBAL FLAGS
--dry-run Run the command without making any API calls
--log-level=<option> [default: info] Specify level for logging
<options: debug|error|info|warn>
DESCRIPTION
Configure commit message generation options
EXAMPLES
$ autocommit configureSee code: src/commands/configure.ts
autocommit generate
Generate a commit message
USAGE
$ autocommit generate [--log-level debug|error|info|warn] [--dry-run] [--force] [--head] [--temperature
<value>] [--style simple|detailed] [--typed] [--scoped] [--technical] [--tense present|past] [--emoji]
FLAGS
--emoji Include emoji in the commit message
--force Force the generation of a commit message even if the staged changes are too large
--head Use the current HEAD as the base for the commit message
--scoped Include scope in the commit message (e.g. core, auth, ui)
--style=<option> Specify the style of the commit message
<options: simple|detailed>
--technical Include technical details in the commit message
--temperature=<value> [default: 0.1] Set the temperature for the commit message generation (0.0 to 1.0)
--tense=<option> Specify the tense of the commit message
<options: present|past>
--typed Prefix commit message with type (e.g., feat, fix, docs)
GLOBAL FLAGS
--dry-run Run the command without making any API calls
--log-level=<option> [default: info] Specify level for logging
<options: debug|error|info|warn>
DESCRIPTION
Generate a commit message
EXAMPLES
$ autocommit generate
$ autocommit generate --style detailed --typed --scoped --technical --tense past --emojiSee code: src/commands/generate.ts
License
This project is licensed under the MIT License - see the LICENSE file for details.
