Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

helixcommit

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

helixcommit

Automated release notes generator for Git repositories.

pipPyPI
Version
1.2.4
Weekly downloads
52
Maintainers
1

HelixCommit

CI Python Version License: MIT Code style: Ruff

HelixCommit turns Git history into polished, publish-ready release notes. It understands Conventional Commits, enriches entries with GitHub pull requests, and can summarize changes with OpenAI-compatible LLMs.

Features

  • Automated change log -> Build structured release notes from commits and tags.
  • AI summarization -> Optional OpenAI/OpenRouter support with caching to minimize costs.
  • AI Commit Generation -> Generate commit messages from staged changes with a free AI model.
  • Conventional Commits friendly -> Detects types, scopes, and breaking changes automatically.
  • GitHub enrichment -> Resolves pull requests and links commits for richer context.
  • Multiple outputs -> Render Markdown, HTML, or plain text.
  • Fast + resilient -> Uses GitPython when available with CLI fallback.

Zero-config Quickstart

pip install helixcommit

# Generate release notes with no external services
# - works offline
# - skips GitHub API calls
helixcommit generate --unreleased --no-prs --format markdown > RELEASE_NOTES.md

# Or for a specific tag range
helixcommit generate --since-tag v1.2.0 --until-tag v1.2.1 --format html --out dist/release.html

# Generate a commit message from staged changes (uses free AI model)
helixcommit generate-commit

From source (development)

git clone https://github.com/bjornefisk/helixcommit.git
cd helixcommit
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

# Smoke test
helixcommit --help
pytest -q

Common options

  • --repo PATH – Point to a different repository (defaults to the current directory).
  • --since / --until – Limit the commit range to specific refs or SHAs.
  • --no-prs – Skip GitHub API lookups.
  • --no-include-scopes – Hide commit scopes in output.

Optional environment variables

  • OPENAI_API_KEY – Required only when using --use-llm with the OpenAI provider.
  • OPENROUTER_API_KEY – Required only when using --use-llm --llm-provider openrouter.
  • GITHUB_TOKEN – Optional; improves GitHub API rate limits when fetching PR data. Not required when using --no-prs.

Community & Support

Join the HelixCommit community on Discord: https://discord.gg/UewHHrxNRE

  • Welcome: #rules, #announcements (release notes), #roadmap
  • Community: #general, #showcase, #introductions
  • Support: #help-installation, #help-usage, #help-errors, #faq (read-only)
  • Development: #dev-general, #issues, #pull-requests, #architecture, #ai-summarization
  • Testing: #alpha-builds, #bug-reports, #perf-testing
  • Documentation: #docs-feedback, #examples, #tutorials

Development

git clone https://github.com/bjornefisk/gitreleasegen.git
cd gitreleasegen
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

# Lint and format
ruff check .
ruff format .

# Run tests with coverage
pytest --cov=gitreleasegen

Contributing

Contributions are welcome! Please open an issue to discuss major changes first. Make sure pre-commit hooks pass before submitting a pull request.

License

Distributed under the MIT License. See LICENSE for details.

FAQs

Did you know?

Socket

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.

Install

Related posts