1- # Publishing Guide for @sirenapp /agent-toolkit
1+ # Publishing Guide for @trysiren /agent-toolkit
22
33This guide covers how to publish the Siren Agent Toolkit TypeScript package to npm.
44
@@ -7,7 +7,7 @@ This guide covers how to publish the Siren Agent Toolkit TypeScript package to n
77Before publishing, ensure you have:
88
991 . ** npm Account** : Create an account at [ npmjs.com] ( https://www.npmjs.com )
10- 2 . ** Organization Access** : Must be added to the ` @sirenapp ` organization on npm
10+ 2 . ** Organization Access** : Must be added to the ` @trysiren ` organization on npm
11113 . ** Authentication** : Configured npm authentication locally
12124 . ** Repository Access** : Push access to the GitHub repository
1313
@@ -24,10 +24,10 @@ Enter your npm credentials when prompted.
2424### 2. Verify Organization Access
2525
2626``` bash
27- npm access list packages @sirenapp
27+ npm access list packages @trysiren
2828```
2929
30- You should see the packages you have access to in the @sirenapp organization.
30+ You should see the packages you have access to in the @trysiren organization.
3131
3232### 3. Configure npm Token (for CI/CD)
3333
@@ -88,10 +88,10 @@ The `prepublishOnly` script will automatically run:
8888
8989``` bash
9090# Check if package is available
91- npm view @sirenapp /agent-toolkit
91+ npm view @trysiren /agent-toolkit
9292
9393# Test installation
94- npm install @sirenapp /agent-toolkit
94+ npm install @trysiren /agent-toolkit
9595```
9696
9797## 🤖 Automated Publishing via GitHub Actions
@@ -180,8 +180,8 @@ npm version prerelease --preid=beta
180180npm publish --tag beta
181181
182182# Install pre-release
183- npm install @sirenapp /agent-toolkit@alpha
184- npm install @sirenapp /agent-toolkit@beta
183+ npm install @trysiren /agent-toolkit@alpha
184+ npm install @trysiren /agent-toolkit@beta
185185```
186186
187187## 🐛 Troubleshooting
@@ -190,13 +190,13 @@ npm install @sirenapp/agent-toolkit@beta
190190
191191** 1. Permission Denied**
192192```
193- npm ERR! 403 Forbidden - PUT https://registry.npmjs.org/@sirenapp %2fagent-toolkit
193+ npm ERR! 403 Forbidden - PUT https://registry.npmjs.org/@trysiren %2fagent-toolkit
194194```
195- Solution: Ensure you're added to the @sirenapp organization and have publish permissions.
195+ Solution: Ensure you're added to the @trysiren organization and have publish permissions.
196196
197197** 2. Version Already Exists**
198198```
199- npm ERR! 403 Forbidden - PUT https://registry.npmjs.org/@sirenapp %2fagent-toolkit - You cannot publish over the previously published versions
199+ npm ERR! 403 Forbidden - PUT https://registry.npmjs.org/@trysiren %2fagent-toolkit - You cannot publish over the previously published versions
200200```
201201Solution: Bump the version number in package.json.
202202
@@ -218,11 +218,11 @@ Solution: Use `npm publish --otp=123456` with your 2FA code.
218218If you need to configure the npm registry:
219219
220220``` bash
221- # Set registry for @sirenapp scope
222- npm config set @sirenapp :registry https://registry.npmjs.org/
221+ # Set registry for @trysiren scope
222+ npm config set @trysiren :registry https://registry.npmjs.org/
223223
224224# Verify configuration
225- npm config get @sirenapp :registry
225+ npm config get @trysiren :registry
226226```
227227
228228## 📊 Post-Publication
@@ -240,13 +240,13 @@ View package information:
240240
241241``` bash
242242# Latest version info
243- npm view @sirenapp /agent-toolkit
243+ npm view @trysiren /agent-toolkit
244244
245245# All versions
246- npm view @sirenapp /agent-toolkit versions --json
246+ npm view @trysiren /agent-toolkit versions --json
247247
248248# Download stats
249- npm view @sirenapp /agent-toolkit --json
249+ npm view @trysiren /agent-toolkit --json
250250```
251251
252252## 🆘 Support
0 commit comments