From 8756b19509c3961c961f672fc272606d96f1311d Mon Sep 17 00:00:00 2001 From: Agent IX Date: Sat, 27 Jun 2026 09:30:52 -0700 Subject: [PATCH] chore(publish): publish scoped packages publicly (access: public) Scoped @agent-ix/* packages default to restricted on npmjs (402 Payment Required without a private plan). Add publishConfig.access=public so the three published packages publish publicly. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/ix/package.json | 3 +++ packages/elements/package.json | 3 +++ packages/local/package.json | 3 +++ 3 files changed, 9 insertions(+) diff --git a/apps/ix/package.json b/apps/ix/package.json index 561ed9e..1bda0b0 100644 --- a/apps/ix/package.json +++ b/apps/ix/package.json @@ -3,6 +3,9 @@ "description": "The Agent IX unified CLI binary.", "version": "0.6.0", "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "type": "module", "bin": { "ix": "./bin/ix.js" diff --git a/packages/elements/package.json b/packages/elements/package.json index b4c1fda..d481523 100644 --- a/packages/elements/package.json +++ b/packages/elements/package.json @@ -3,6 +3,9 @@ "description": "Element discovery, tap management, and project scaffolding commands for ix-cli.", "version": "0.6.0", "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "type": "module", "files": [ "dist/", diff --git a/packages/local/package.json b/packages/local/package.json index 7338378..ace8b36 100644 --- a/packages/local/package.json +++ b/packages/local/package.json @@ -3,6 +3,9 @@ "description": "Local cluster commands for ix-cli (up, down, init-cluster, auth).", "version": "0.6.0", "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "type": "module", "files": [ "dist/",