From 62da18725ae4996f57066ff6f319bb7bc036142f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Tue, 24 Feb 2026 00:17:55 +0000 Subject: [PATCH] Rename package to @alezmad/cladm for npm publish npm rejected unscoped "cladm" as too similar to "charm". Scoped under @alezmad with --access=public flag in CI workflow. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/publish.yml | 2 +- README.md | 4 ++-- package.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4388e4a..27fa826 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,4 +21,4 @@ jobs: env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - run: npm publish + - run: npm publish --access=public diff --git a/README.md b/README.md index 7ea7137..a15f7bb 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,10 @@ Requires [Bun](https://bun.sh) >= 1.3.0 and macOS (uses Terminal.app for launchi ```bash # Install globally -bun install -g cladm +bun install -g @alezmad/cladm # Or run directly -bunx cladm +bunx @alezmad/cladm ``` ### From source (for development) diff --git a/package.json b/package.json index 81cd932..fd05060 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "cladm", + "name": "@alezmad/cladm", "version": "0.1.0", "description": "TUI launcher for Claude Code sessions", "module": "index.ts", @@ -17,7 +17,7 @@ "author": "alezmad", "repository": { "type": "git", - "url": "https://github.com/alezmad/cladm.git" + "url": "git+https://github.com/alezmad/cladm.git" }, "engines": { "bun": ">=1.3.0"