From 916de90dbf36658b83c9a54130afe768659c8332 Mon Sep 17 00:00:00 2001 From: Federico Jaramillo Martinez Date: Mon, 20 Jul 2026 09:18:14 +0200 Subject: [PATCH] fix(pi-ai): normalize bin path to avoid consumer lockfile churn (#6812) The npm registry normalizes bin paths in packument metadata ("dist/cli.js") while the published tarball keeps the authored "./dist/cli.js". npm consumers get perpetual one-line package-lock.json flips depending on whether resolution used registry metadata or the extracted package. Drop the "./" prefix to match the registry-normalized form and the sibling coding-agent package. Fixes #6811 --- packages/ai/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ai/package.json b/packages/ai/package.json index a3ed55f0..58b9113f 100644 --- a/packages/ai/package.json +++ b/packages/ai/package.json @@ -41,7 +41,7 @@ } }, "bin": { - "pi-ai": "./dist/cli.js" + "pi-ai": "dist/cli.js" }, "files": [ "dist",