
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
> Because writing commit messages and pull requests sucks. Let the AI do it.
Because writing commit messages and pull requests sucks. Let the AI do it.
git-chimp automates your Git commits and pull requests using AI. It analyzes your staged changes or commit history, then generates surprisingly coherent commit messages and PRs—so you can stop typing “fix stuff” for the fifth time today.
⚠️ This is an early-stage tool! Features are limited, monkeys are still learning.
git-chimp commit – GPT-powered commit message generation from staged changesgit-chimp pr – GPT-generated pull request descriptions from commit diffsgit-chimp changelog – Auto-generate changelogs, with optional AI summariesgit-chimp config – Manage .chimprc settings without editing the file.chimprc configsComing soon:
git-chimp name or git-chimp branch)--dry-run)npm install -g git-chimp
Or use it via npx:
npx git-chimp commit
initYou can quickly create or update your .chimprc file using the built-in init command:
npx git-chimp init
You'll be prompted to choose:
./.chimprc~/.chimprcThen you'll be walked through a few simple questions to generate the correct config for your project or environment. If a config already exists, it will be merged with your new choices — no overwrites or data loss.
Some fields (like openaiApiKey) are only written to global config for security and reusability.
[!WARNING]
The.git-chimprcfile has been replaced with.chimprc. It will, however, continue to work - for now.
git-chimp supports configuration via the gitChimp namespace in a .chimprc file at the root of your repo. This should be a plain JSON file (no .json extension).
.chimprc:{
"gitChimp": {
"model": "gpt-3.5-turbo",
"tone": "sarcastic",
"prMode": "draft",
"enforceSemanticPrTitles": true,
"enforceConventionalCommits": true,
"changelog": {
"aiSummary": true,
"output": "CHANGELOG.md",
"from": "v1.0.0",
"to": "HEAD"
}
}
}
| Key | Type | Description |
|---|---|---|
tone | string | Sets the writing style (e.g., "corporate-safe", "dry sarcasm", "chaotic evil") |
model | string | OpenAI model to use (gpt-3.5-turbo, gpt-4, gpt-4o, gpt-4o-mini) |
enforceConventionalCommits | boolean | If true, enforces Conventional Commit style |
enforceSemanticPrTitles | boolean | If true, enforces semantic PR titles (e.g., feat: prefix) |
prMode | string | PR mode: open (default), draft, display |
changelog | object | Changelog generation options (see below) |
changelog options:
| Key | Type | Description |
|---|---|---|
aiSummary | boolean | If true, generates an AI summary section for the changelog |
output | string | File path to write or append changelog content (e.g., "CHANGELOG.md") |
from | string | Git tag or commit to start from (e.g., "v1.0.0") |
to | string | Git ref to end at (defaults to HEAD if omitted) |
You can use git-chimp config to manage settings in your .chimprc without editing the file manually (though you still can if you like that sort of thing).
config listgit-chimp config list
Prints all current config values under the gitChimp namespace.
config get <key>git-chimp config get model
Gets the value of a specific config key.
git-chimp config set tone "corporate-safe"
git-chimp config set enforceSemanticPrTitles true
Sets a config key. Supports string, boolean, number, and arrays (as comma-separated values).
commitgit add .
git-chimp commit
Generates a commit message based on your staged changes.
| Flag | Description |
|---|---|
--tone <style> | Writing style for commit message |
--model <model> | OpenAI model to use |
--enforce-cc | Enforce Conventional Commit style |
--scope <scope> | Optional scope to include in commit message (e.g. feat(scope): ...) |
-c, --custom | Manually type your commit message (you beautiful control freak) |
-m, --message | Print GPT commit message to stdout and exit (good for CI, scripting) |
prgit-chimp pr
Generates a PR description and opens one on GitHub.
| Flag | Description |
|---|---|
--tone <style> | Writing style for PR |
--model <model> | OpenAI model to use |
--pr-mode <mode> | PR mode: open, draft, display |
--semantic-title | Enforce semantic PR title style |
-u, --update | Update an existing PR instead of creating a new one (if it exists) |
changeloggit-chimp changelog
Generates a changelog from commit history.
| Flag | Description |
|---|---|
--from <tag> | Git tag or commit to start from (defaults to latest tag) |
--to <ref> | Git ref to end at (defaults to HEAD) |
--output <file> | File path to write the changelog to |
--ai | Use OpenAI to generate a summary section |
The config system is merge-friendly. It works like this (highest priority wins):
--tone).chimprc configSo yeah — you can go full control freak without ever touching a config file, or commit to the chimp with a persistent setup.
Yes... but with caution. You can alias git commit to use git-chimp, but this disables standard Git commit behavior.
Here’s an alias override (not recommended unless you're into danger):
git config --global alias.commit '!git-chimp commit'
For a safer setup, try:
git config --global alias.chimp-commit '!git-chimp commit'
git config --global alias.chimp-pr '!git-chimp pr'
Then use:
git chimp-commit
git chimp-pr
Or if you're lazy and proud:
alias gc='git-chimp commit'
alias gp='git-chimp pr'
Features on the way:
Feature requests, bug reports, and “this sucks” feedback all welcome. Start an issue or throw a PR.
Want to add your own AI model or custom formatter? Stay tuned for plugin support.
MIT. You break it, you bought it. Just kidding. But seriously, don’t blame the monkeys.
"Let the monkey write the messages. You’ve got bigger bugs to squash."
— Ancient Git Proverb
FAQs
> Because writing commit messages and pull requests sucks. Let the AI do it.
We found that git-chimp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.