From 4a5ad230115cb2d13359732a11d291f4e67dc7d3 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Tue, 14 Jul 2026 19:14:40 +0000 Subject: [PATCH] [#151] toony-cli: UNLICENSED + private, removing the false MIT/publishable claim MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `packages/cli/package.json` declared `"license": "MIT"` + `"private": false` (the only publishable manifest with a `bin`), a public MIT grant the repo LICENSE never made ("intended … PolyForm Noncommercial", terms an open operator gate). Per the Batch 22 amendment, set `"license": "UNLICENSED"` + `"private": true` (matching every other manifest) until the operator finalizes terms — package- local, non-contradictory with LICENSE, and unpublishable meanwhile. Swept every package.json: no other `MIT` value and no other `"private": false` remain. Metadata-only; the actual license decision stays the operator's gate. check + test green uncached Node 20.20.2 + 24.15.0. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/cli/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index a5820f6..5030bd1 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,9 +1,9 @@ { "name": "toony-cli", "version": "0.0.0", - "private": false, + "private": true, "description": "Toony — agent CLI with a bundled Studio web app. `toony` runs headless commands; `toony studio` launches the local web studio from a single install.", - "license": "MIT", + "license": "UNLICENSED", "type": "module", "bin": { "toony": "./dist/bin.js"