npm Name Migration
This note records the clean npm naming plan for SecOpsAI.
Availability Result
Checked on 2026-05-21:
npm view secopsai --json
npm view @techris93/secopsai --json
Result:
secopsaiexists on the public npm registry as[email protected].- The public npm package is maintained by
techris. @techris93/secopsaireturnsE404from the public npm registry.- GitHub Packages remains scoped as
@techris93/secopsai.
Decision:
- Keep the public npm package name as
secopsai. - Prepare the next public npm wrapper release as
[email protected]. - Preserve GitHub Packages as
@techris93/secopsaithrough workflow-local manifest rewriting. - Do not publish or deprecate anything without explicit maintainer approval.
Install Paths
Preferred public npm install:
npm install -g secopsai
GitHub Packages install:
npm config set @techris93:registry https://npm.pkg.github.com
npm install @techris93/secopsai
If a scoped public npm package is introduced later, document it separately and
keep it as a migration bridge rather than replacing the clean secopsai name.
Release Preparation
Files prepared for public npm release:
supply-chain/package.json: unscoped package namesecopsai, version1.0.1, andbin.secopsai.supply-chain/.npmignore: excludes local auth files, logs, caches, tarballs, and generated outputs..github/workflows/publish-npm-package.yml: manual/tag-gated public npm release workflow..github/workflows/publish-github-package.yml: existing scoped GitHub Packages workflow remains unchanged.
Required repository secret:
NPM_TOKEN
The token should be an npm automation token with publish access to secopsai.
Do not commit .npmrc, tokens, generated tarballs, or npm debug logs.
Manual Publish Checklist
Only run this after explicit maintainer approval:
cd /Users/chrixchange/secopsai
git status --short
npm view secopsai --json
cd supply-chain
npm pack --dry-run
npm publish --access public
npm view secopsai --json
npm install -g secopsai
secopsai --help
GitHub Actions alternative:
- Open the
Publish npm Packageworkflow. - Run it with
dry_run=true. - Review the package contents and version.
- Run it with
dry_run=falseonly after approval. - Verify
npm view secopsai --json.
Rollback Notes
Npm package versions cannot be overwritten after publication. If a bad release is published:
- Publish a corrected higher version.
- Deprecate only the bad version, not the whole package.
- Update docs and Marketplace Action references if needed.
Example deprecation command, requiring explicit approval:
npm deprecate [email protected] "Superseded by a corrected SecOpsAI release. Please upgrade."
Brand Reservation Checklist
Reserve or verify ownership for the surfaces tracked in Name Reservation:
- npm:
secopsai - GitHub:
secopsai/secopsai,secopsai/secopsai-action, andsecopsai/homebrew-secopsai - Docker Hub:
secopsai/secopsai - PyPI:
secopsai - Homebrew tap:
secopsai/homebrew-secopsaiorsecopsai/homebrew-tap - Domains:
secopsai.devand related product domains
If a registry name is unavailable, document ownership, contact path, and the fallback name before publishing an alternate package.