plugin.market
← All plugins

commit-kit

v2.1.0

Splits messy working trees into reviewable commits and writes Conventional Commits messages that actually describe the change.

2 skills

by Mara JensenMIT92updated 8 months ago

Install

git clone https://github.com/tidyops/commit-kit

Clone into your agent client’s plugin directory — components are discovered from fixed locations per the spec.

Layout

commit-kit/
├── plugin.json
└── skills/
├── split-diff/
└── SKILL.md
└── write-commit/
└── SKILL.md

Skills2

split-diffskills/split-diff/

Partition an oversized working tree into independent, individually revertable commits.

write-commitskills/write-commit/

Write a Conventional Commits message for the staged diff, with scope inferred from touched packages.

Manifest

plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "commit-kit",
  "version": "2.1.0",
  "description": "Splits messy working trees into reviewable commits and writes Conventional Commits messages that actually describe the change.",
  "author": {
    "name": "Mara Jensen",
    "email": "mara@tidyops.io"
  },
  "repository": "https://github.com/tidyops/commit-kit",
  "license": "MIT",
  "keywords": [
    "productivity",
    "git",
    "conventional-commits"
  ]
}