Skip to content

Commit 03c92ca

Browse files
anandgupta42claude
andcommitted
fix: use scoped name @altimateai/altimate-code for wrapper npm package
The unscoped name altimate-code-ai can't be published with a granular token scoped to @AltimateAI. Use @altimateai/altimate-code as the user-facing install package name. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ffe7311 commit 03c92ca

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
echo "" >> notes.md
150150
echo "### Install" >> notes.md
151151
echo '```bash' >> notes.md
152-
echo "npm install -g altimate-code-ai@${CURRENT_TAG#v}" >> notes.md
152+
echo "npm install -g @altimateai/altimate-code@${CURRENT_TAG#v}" >> notes.md
153153
echo "# or" >> notes.md
154154
echo "brew install altimate/tap/altimate-code" >> notes.md
155155
echo '```' >> notes.md

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ AI-powered CLI for SQL analysis, dbt integration, and data engineering.
2121

2222
```bash
2323
# npm
24-
npm install -g altimate-code-ai
24+
npm install -g @altimateai/altimate-code
2525

2626
# Homebrew
2727
brew install altimate/tap/altimate-code

packages/altimate-code/script/publish.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ await Bun.file(`./dist/${pkg.name}/LICENSE`).write(await Bun.file("../../LICENSE
2323
await Bun.file(`./dist/${pkg.name}/package.json`).write(
2424
JSON.stringify(
2525
{
26-
name: "altimate-code-ai",
26+
name: "@altimateai/altimate-code",
2727
bin: {
2828
"altimate-code": "./bin/altimate-code",
2929
},

0 commit comments

Comments
 (0)