• Stars
    star
    7,420
  • Rank 4,936 (Top 0.1 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 1 year ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A CLI that writes your git commit messages for you with AI
AI Commits

AI Commits

A CLI that writes your git commit messages for you with AI. Never write a commit message again.

Current version

Setup

The minimum supported version of Node.js is the latest v14. Check your Node.js version with node --version.

  1. Install aicommits:

    npm install -g aicommits
  2. Retrieve your API key from OpenAI

    Note: If you haven't already, you'll have to create an account and set up billing.

  3. Set the key so aicommits can use it:

    aicommits config set OPENAI_KEY=<your token>

    This will create a .aicommits file in your home directory.

Upgrading

Check the installed version with:

aicommits --version

If it's not the latest version, run:

npm update -g aicommits

Usage

CLI mode

You can call aicommits directly to generate a commit message for your staged changes:

git add <files...>
aicommits

aicommits passes down unknown flags to git commit, so you can pass in commit flags.

For example, you can stage all changes in tracked files with as you commit:

aicommits --all # or -a

πŸ‘‰Β Tip: Use the aic alias if aicommits is too long for you.

Generate multiple recommendations

Sometimes the recommended commit message isn't the best so you want it to generate a few to pick from. You can generate multiple commit messages at once by passing in the --generate <i> flag, where 'i' is the number of generated messages:

aicommits --generate <i> # or -g <i>

Warning: this uses more tokens, meaning it costs more.

Generating Conventional Commits

If you'd like to generate Conventional Commits, you can use the --type flag followed by conventional. This will prompt aicommits to format the commit message according to the Conventional Commits specification:

aicommits --type conventional # or -t conventional

This feature can be useful if your project follows the Conventional Commits standard or if you're using tools that rely on this commit format.

Git hook

You can also integrate aicommits with Git via the prepare-commit-msg hook. This lets you use Git like you normally would, and edit the commit message before committing.

Install

In the Git repository you want to install the hook in:

aicommits hook install

Uninstall

In the Git repository you want to uninstall the hook from:

aicommits hook uninstall

Usage

  1. Stage your files and commit:

    git add <files...>
    git commit # Only generates a message when it's not passed in

    If you ever want to write your own message instead of generating one, you can simply pass one in: git commit -m "My message"

  2. Aicommits will generate the commit message for you and pass it back to Git. Git will open it with the configured editor for you to review/edit it.

  3. Save and close the editor to commit!

Configuration

Reading a configuration value

To retrieve a configuration option, use the command:

aicommits config get <key>

For example, to retrieve the API key, you can use:

aicommits config get OPENAI_KEY

You can also retrieve multiple configuration options at once by separating them with spaces:

aicommits config get OPENAI_KEY generate

Setting a configuration value

To set a configuration option, use the command:

aicommits config set <key>=<value>

For example, to set the API key, you can use:

aicommits config set OPENAI_KEY=<your-api-key>

You can also set multiple configuration options at once by separating them with spaces, like

aicommits config set OPENAI_KEY=<your-api-key> generate=3 locale=en

Options

OPENAI_KEY

Required

The OpenAI API key. You can retrieve it from OpenAI API Keys page.

locale

Default: en

The locale to use for the generated commit messages. Consult the list of codes in: https://wikipedia.org/wiki/List_of_ISO_639-1_codes.

generate

Default: 1

The number of commit messages to generate to pick from.

Note, this will use more tokens as it generates more results.

proxy

Set a HTTP/HTTPS proxy to use for requests.

To clear the proxy option, you can use the command (note the empty value after the equals sign):

aicommits config set proxy=

model

Default: gpt-3.5-turbo

The Chat Completions (/v1/chat/completions) model to use. Consult the list of models available in the OpenAI Documentation.

Tip: If you have access, try upgrading to gpt-4 for next-level code analysis. It can handle double the input size, but comes at a higher cost. Check out OpenAI's website to learn more.

timeout

The timeout for network requests to the OpenAI API in milliseconds.

Default: 10000 (10 seconds)

aicommits config set timeout=20000 # 20s

max-length

The maximum character length of the generated commit message.

Default: 50

aicommits config set max-length=100

type

Default: "" (Empty string)

The type of commit message to generate. Set this to "conventional" to generate commit messages that follow the Conventional Commits specification:

aicommits config set type=conventional

You can clear this option by setting it to an empty string:

aicommits config set type=

How it works

This CLI tool runs git diff to grab all your latest code changes, sends them to OpenAI's GPT-3, then returns the AI generated commit message.

Video coming soon where I rebuild it from scratch to show you how to easily build your own CLI tools powered by AI.

Maintainers

Contributing

If you want to help fix a bug or implement a feature in Issues, checkout the Contribution Guide to learn how to setup and test the project.

More Repositories

1

roomGPT

Upload a photo of your room to generate your dream room with AI.
TypeScript
9,563
star
2

restorePhotos

Restoring old and blurry face photos with AI.
TypeScript
3,737
star
3

twitterbio

Generate your Twitter bio with Mixtral and GPT-3.5.
TypeScript
1,562
star
4

notesGPT

Record voice notes & transcribe, summarize, and get tasks
TypeScript
1,447
star
5

pdftochat

Chat with your PDFs with AI
TypeScript
664
star
6

qrGPT

An AI QR Code Generator
TypeScript
473
star
7

news-summarizer

News summarizer with AI
TypeScript
327
star
8

tailwind-color-picker

A chrome extension color picker for Tailwind
TypeScript
317
star
9

nsfw-filter

A minimal library that helps filter out NSFW images.
TypeScript
162
star
10

alt-text-generator

A flask API that generates a description for any image using AI.
Python
115
star
11

devwriting

All resources & exercises from the Miami Dev Writer's Retreat
101
star
12

devrel-resources

A repo filled with devrel resources, communities, and people in the space to follow
69
star
13

aiangels

A directory of angel investors in AI startups.
TypeScript
61
star
14

whatisdevrel

A site that explains what developer relations is
JavaScript
56
star
15

vercel-deploy-extension

A chrome extension that can deploy any Github repo to Vercel for you
JavaScript
53
star
16

nextjs-swell

A Next.js and Swell demo
JavaScript
41
star
17

devtool-angels

A site that lists angel investors that invest in devtools
TypeScript
38
star
18

intercom-nextjs

A Next.js app that uses Intercom
JavaScript
24
star
19

yt-search-engine

Search Engine for YouTuber Ali Abdaal's videos
JavaScript
24
star
20

scripts

Scripts I use to enhance my workflow, focused on React & Git
Shell
23
star
21

algorithms

My solved algorithm problems, notes, and techniques
Python
19
star
22

bobrossextension

A Chrome extension that replaces all images on Youtube.com with pictures of Bob Ross.
JavaScript
19
star
23

chat

A simple Next.js chat app.
TypeScript
16
star
24

passive-to-active-voice

Transform passive voice into active voice with AI.
TypeScript
14
star
25

finetuning

Python scripts to finetune GPT 3.5
Python
12
star
26

deliveroo

A site I made for one of my dad's app ideas to get feedback
JavaScript
11
star
27

together-js

Together.ai Node.js SDK
TypeScript
10
star
28

next-blog

My blog where I talk about devrel, tech, and coding.
JavaScript
9
star
29

prisma-data-proxy

A serverless app using the Next.js and the Prisma Data Proxy presented at Prisma Serverless Conference
JavaScript
8
star
30

pmsox-site

Landing page for a fintech startup
JavaScript
8
star
31

nextjs-prisma-demo

A Next.js and Prisma Demo.
JavaScript
7
star
32

uploader

Simple Next.js app that uses ByteScale to upload docs
TypeScript
6
star
33

vscode

My vscode settings, custom keybindings, and extensions
5
star
34

json_to_firestore

A script that turns a JSON file into a FireStore collection
JavaScript
5
star
35

nowtrailer-site

A site I made for one of my dad's friends about trailers
JavaScript
4
star
36

polls-app

A polling react app that allows users to vote and create polls anonymously
JavaScript
4
star
37

dotfiles

My dotfiles
Shell
4
star
38

ultimate_rust_crash_course

Exercises from the Rust Fundamentals Course
Rust
3
star
39

eatnow

A mobile app that reminds you to eat each day
JavaScript
3
star
40

css

Documenting my knowledge about CSS
HTML
2
star
41

sveltekit-app

Default Sveltekit app
Svelte
2
star
42

cell-tracking-viz

Dashboard for Cell Tracking Challenge data for Dr. Andrew Cohen
JavaScript
2
star
43

astro-markdown

A minimalistic markdown page in Astro
JavaScript
2
star
44

advent-of-code

Advent of Code 2021
2
star
45

TIL

A collection of tips and learnings about CS
2
star
46

qualtrics-spss

A script that uses the Qualtrics API to scrape survey data and format it into a CSV/SPSS file
Python
1
star
47

dvtpd

Landing page for my DVT prevention medical device
JavaScript
1
star
48

covid-tracker

A React web app that tracks covid in the US (in-progress)
JavaScript
1
star
49

Nutlope

Personal README
1
star
50

covid-classifier

A machine learning model that classifies CT scans as covid or non-covid using a k-nearest neighbor algorithm
Python
1
star