← Back to Packages
  • cocogitto

cocogitto

Package information

by Torrance Schneider Sr.

Generator NPM

The Conventional Commits toolbox

Support

#cocogitto on Discord

Views

1353

License

MIT

Documentation

Cocogitto – The conventional commits tool box

GitHub Actions workflow status Code coverage status
Conventional commits Repository license Discord logo

Website · Installation · Configuration

The Conventional Commits toolbox

Explore Cocogitto's docs  ▶

Foreword

What is it ?

Cocogitto is a CLI and GitOps toolbox for the Conventional Commits and Semver specifications.

Why ?

There are plenty of tools listed on the conventional commits web site to help you generate changelog, git hooks, commit template etc. Some of them are specifically designed for the Conventional Commits specification, and some of them are general purpose.

Cocogitto was designed to help you respect the conventional and semver standard and is not intended to be used in any other context.

It strives to be a set of simple, modern and fast command line interfaces.

Goals

Non goals

Quick start

This readme is a quick tour of what you can do with Cocogitto, for an in-depth guide please refer to the documentation.

Installation

Packaging status

Archlinux

pacman -S cocogitto

Cargo

cargo install --locked cocogitto

NixOs

nix-env -iA cocogitto

Void Linux

xbps-install cocogitto

Conventional commits

Note: coco has been deprecated in favor of the cog commit command.

To create conventional commits you can use the cog commit command. It has subcommands for the default fix and feat Conventional Commits types plus the angular commit conventional commit types.

Example:

# With cog
cog commit feat "add awesome feature"
 
# With git
git commit -m "feat: add awesome feature"

See User guide -> Conventional commits.

Auto-bumps

Creating a version with cog bump will perform the following actions :

  1. Determine a version number according to your commit history.
  2. Perform configuration defined pre-bump commands.
  3. Append the version's changelog to your repository changelog file.
  4. Create a version commit and tag it.
  5. Perform post-bump commands

Example:

# File: cog.toml
pre_bump_hooks = [
"echo {{version}}",
]
 
 
post_bump_hooks = [
"git push",
"git push origin {{version}}",
]
 
[changelog]
path = "CHANGELOG.md"
template = "remote"
remote = "github.com"
repository = "cocogitto_bot_playground"
owner = "cocogitto"
authors = [
{ username = "oknozor", signature = "Paul Delafosse"}
]

cog bump example

Changelogs

cog changelog uses tera templates to generate markdown changelogs. It has several built-in templates, and you can define your own.

Example:

cog changelog

Output :

## 1.2.0 - 2021-11-26
 
#### Bug Fixes
 
- **(parser)** handle lowercase identifier - (7521015) - *oknozor*
- handle unknown flag - (e2388dc) - oknozor
 
#### Features
 
- **(parser)** simple parser implementation - (0b25eb6) - *oknozor*
- add a new cli flag - (ff84173) - oknozor
 
#### Miscellaneous Chores
 
- **(version)** 1.2.0 - (15d1333) - *oknozor*
 
#### Refactoring
 
- **(parser)** use a parser interface instead of concrete impl - (ea24c36) - *oknozor*
 
#### Tests
 
- add integration test - (bae629c) - *oknozor*

See User guide -> Changelogs.

GitHub integration

GitHub action:

You can run cog check and perform automatic releases via GitHub action using cocogitto-action.

Example:

- name: Semver release
uses: cocogitto/cocogitto-action@main
with:
release: true
git-user: 'Cog Bot'
git-user-email: 'mycoolproject@org.org'

See Github integration -> GitHub action

GitHub bot:

cocogitto-bot is a standalone, zero-config bot checking your pull requests against the Conventional Commits specification.

cog bot example

See Github integration -> GitHub-bot

Similar projects

Contributing

Found a bug, have a suggestion for a new feature? Please read the contribution guideline and submit an issue.

Licence

All the code in this repository is released under the MIT License, for more information take a look at the LICENSE file.