From 0330ccb0b10e0d306bec75db4b8719da6f6bb15b Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Sun, 15 Mar 2026 04:04:18 +0100 Subject: [PATCH 1/3] refactor: exclude body on open commits --- lib/commands/CreateCommand.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/commands/CreateCommand.ts b/lib/commands/CreateCommand.ts index 0fab8bd..358f245 100644 --- a/lib/commands/CreateCommand.ts +++ b/lib/commands/CreateCommand.ts @@ -1,7 +1,7 @@ import type { Argv, ArgumentsCamelCase } from "yargs" import { CLICommand } from "../cli/CLICommand" import { parseTodoFile, writeTodoFile } from "../file" -import { getCurrentBranch, commitFileWithBody } from "../git" +import { getCurrentBranch, commitFile } from "../git" import type { IssueType, IssuePriority } from "../issue" export class CreateCommand extends CLICommand { @@ -76,11 +76,7 @@ export class CreateCommand extends CLICommand { }) writeTodoFile(todo) - commitFileWithBody( - "TODO", - `todo(${nextId}): open`, - args.plan as string - ) + commitFile("TODO", `todo(${nextId}): open`) console.log(`Created issue #${nextId}: ${args.title}`) return 0 } From af740888782ca501f64c1153a4e7eed462e96660 Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Sun, 15 Mar 2026 04:06:12 +0100 Subject: [PATCH 2/3] docs: reword README abstract --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f4ce076..6ac0a24 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # @byteb4rb1e/mime-todo -CLI for the [MIME TODO specification](https://bitbucket.org/byteb4rb1e/mime-todo-spec) — a -deterministic, spec-first issue tracker that lives inside a SCM repository as a -plain-text `TODO` file. +CLI implementation for the [MIME TODO specification](https://bitbucket.org/byteb4rb1e/mime-todo-spec) + +A deterministic, spec-first issue tracker that lives inside a SCM repository as +a plain-text `TODO` file. ## Install From b3f9e495604b83e45a7cd4f99cc491f0463d994c Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Sun, 15 Mar 2026 04:07:16 +0100 Subject: [PATCH 3/3] chore: bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4411252..4e8ba54 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@byteb4rb1e/mime-todo", - "version": "0.1.0", + "version": "0.2.0", "description": "CLI for the MIME TODO issue tracker specification with Bugzilla integration", "author": "Tiara Rodney ", "license": "CC-BY-ND-4.0",