{"id":36892117,"url":"https://github.com/kaatinga/commit","last_synced_at":"2026-01-12T15:38:25.665Z","repository":{"id":199368003,"uuid":"701576395","full_name":"kaatinga/commit","owner":"kaatinga","description":"AI-powered commit message generator CLI tool","archived":false,"fork":false,"pushed_at":"2025-10-28T18:57:01.000Z","size":109,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-28T20:37:09.397Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kaatinga.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-07T00:47:47.000Z","updated_at":"2025-10-28T18:55:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"5af67217-aed6-4165-8aa4-dece87199930","html_url":"https://github.com/kaatinga/commit","commit_stats":null,"previous_names":["kaatinga/commit"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/kaatinga/commit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaatinga%2Fcommit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaatinga%2Fcommit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaatinga%2Fcommit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaatinga%2Fcommit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaatinga","download_url":"https://codeload.github.com/kaatinga/commit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaatinga%2Fcommit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28341127,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-12T15:38:22.521Z","updated_at":"2026-01-12T15:38:25.657Z","avatar_url":"https://github.com/kaatinga.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Tests](https://github.com/kaatinga/commit/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/kaatinga/commit/actions/workflows/test.yml)\n[![GitHub release](https://img.shields.io/github/release/kaatinga/commit.svg)](https://github.com/kaatinga/commit/releases)\n[![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/kaatinga/commit/blob/main/LICENSE)\n[![lint workflow](https://github.com/kaatinga/commit/actions/workflows/golangci-lint.yml/badge.svg)](https://github.com/kaatinga/commit/actions?query=workflow%3Alinter)\n[![help wanted](https://img.shields.io/badge/Help%20wanted-True-yellow.svg)](https://github.com/kaatinga/commit/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)\n\n# commit CLI Tool\n\n`commit` is an AI-powered commit message generator that helps you streamline your version control workflow.\n\n## Overview\n\nInstead of racking your brains for a descriptive commit message, simply run the `commit` tool. It will automatically\nstage all changed files in your git repository and craft a concise, meaningful commit message for you.\n\n## Features:\n\n- Leverages OpenAI to generate commit messages based on your code changes.\n- Automatically stages all changed files in the git repository.\n- Commits with the AI-generated message.\n- Optional `push` command to commit and push in one step.\n- Dry-run mode to preview commit messages without committing.\n- Works with user-provided API keys and repository paths.\n\n## Installation:\n\n    go install github.com/kaatinga/commit@latest\n\n## Usage:\n\n    commit [global options] command [command options] [arguments...]\n\n### Commands:\n\n- `commit` (default): Generate a commit message and commit changes.\n- `push`: Generate a commit message, commit changes, and push to remote.\n\n### Global Options:\n\n- `--key value`: Provide a valid key to work with OpenAI API.\n- `--path value`: Specify the path to your git repository (default: current directory).\n- `--help, -h`: Display help information.\n- `--version, -v`: Print the current version of the tool.\n\n## Environment Variables:\n\n- `OPENAI_API_KEY`: The tool can optionally read from this environment variable to interface with the OpenAI API. Set this variable if you don't intend to use the `--key` option directly.\n- `COMMIT_DRYRUN`: Set to `true` to enable dry-run mode, which will display the generated commit message without actually committing.\n\n## Examples:\n\n### Basic usage (uses OPENAI_API_KEY environment variable):\n\n    commit\n\n### With explicit API key:\n\n    commit --key sk-your-api-key-here\n\n### Specify a different repository path:\n\n    commit --path /home/user/my-repo\n\n### Commit and push in one command:\n\n    commit push\n\n### Dry-run mode (preview commit message without committing):\n\n    export COMMIT_DRYRUN=true\n    commit\n\nFor further help or to view a list of commands, run:\n\n    commit help\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaatinga%2Fcommit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaatinga%2Fcommit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaatinga%2Fcommit/lists"}