From 5ce9e4c8392db37e23bf53fd62acd5da066e3746 Mon Sep 17 00:00:00 2001 From: Harsh Singh Date: Tue, 28 Jul 2026 19:45:12 +0530 Subject: [PATCH] docs: correct the unknown-command exit code in the release checklist 0.11.0 made an unknown command exit 2 (usage) with a did-you-mean suggestion, rather than 1 plus a full help dump. The checklist still told the releaser to expect 1, so walking it for 0.12.0 read as a failed gate on correct behaviour. --- docs/release-checklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-checklist.md b/docs/release-checklist.md index 0bf4d18..4dabc2e 100644 --- a/docs/release-checklist.md +++ b/docs/release-checklist.md @@ -28,7 +28,7 @@ R=$(mktemp -d); cd "$R"; mkdir .claude .cursor K=/packages/cli/dist/index.js # from `npm test`/`npm run build` node "$K" --version # prints version -node "$K" bogus-cmd; echo $? # unknown command → exit 1 +node "$K" bogus-cmd; echo $? # unknown command → exit 2 (usage), with a did-you-mean node "$K" init # creates kitbash.toml + .kitbash/skills/ ```