From 50a0c03b95d48b3e7c26b653fece422e0deb5e5c Mon Sep 17 00:00:00 2001 From: Adam Jeniski Date: Mon, 5 Jan 2026 06:41:03 -1000 Subject: [PATCH] Update skills/commitly/commitly.md --- skills/commitly/commitly.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/skills/commitly/commitly.md b/skills/commitly/commitly.md index 6628d50..b751694 100644 --- a/skills/commitly/commitly.md +++ b/skills/commitly/commitly.md @@ -4,13 +4,13 @@ Use this skill when you need to commit and/or push changes across multiple git r ## What is Commitly? -Commitly is a Babashka script located at `commitly/commitly` that commits and pushes changes across all modified git subrepositories in the ajet-industries monorepo. +Commitly is a cli tool. You can invoke it using `commitly` that commits and pushes changes across all modified git subrepositories in the ajet-industries monorepo. ## Usage ```bash -./commitly/commitly status # Show status of modified repos -./commitly/commitly [-p] # Commit (and push) changes +commitly status # Show status of modified repos +commitly [-p] # Commit (and push) changes ``` ### Options @@ -22,22 +22,22 @@ Commitly is a Babashka script located at `commitly/commitly` that commits and pu **Show status of all modified repos:** ```bash -./commitly/commitly status +commitly status ``` **Commit all modified repos with a message:** ```bash -./commitly/commitly "fix: update configuration" +commitly "fix: update configuration" ``` **Commit and push all modified repos:** ```bash -./commitly/commitly -p "feat: add new feature" +commitly -p "feat: add new feature" ``` **Just push all repos (no commit):** ```bash -./commitly/commitly -p +commitly -p ``` ## How It Works