chore(release): scope package to @wastedcode/claudemux#4
Merged
Conversation
npm blocks the unscoped name `claudemux` — too similar to the active package `claude-mux` (a dashboard for monitoring multiple Claude Code sessions, v0.9.5). Scope under the org instead, per npm's own suggestion. - package.json name → @wastedcode/claudemux (publish with --access public). - README + examples: install/import lines now `@wastedcode/claudemux`. - UNCHANGED on purpose: the `claudemux` bin/CLI command, the default `claudemux` namespace + socket name, and the brand prose. Users still type `claudemux spawn …`; only the npm install/import identity is scoped. Enables `npm publish` for the v0.2.0 release. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The scope rename updated the examples' imports to "@wastedcode/claudemux" but
left tsconfig's `paths` alias keyed on the old "claudemux", so the examples fell
through to the package's own `exports` self-resolution → TS2209 ("project root
is ambiguous … export map entry '.'"). Re-key the alias to the new name so they
resolve to ./src/index.ts as before. typecheck green.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
npm publishof the unscopedclaudemuxis blocked (403): npm flags it as too similar to the active packageclaude-mux(v0.9.5, "Real-time web dashboard for monitoring and controlling multiple Claude Code sessions"). Scoping under the org is npm's own suggested fix.What changes
package.jsonname→@wastedcode/claudemux(will publish with--access public).examples/install/import lines →@wastedcode/claudemux.What deliberately does NOT change
claudemuxCLI command (thebinname is independent of the package name — users still typeclaudemux spawn …).claudemuxnamespace and socket name.Release steps after merge
v0.2.0tag to the merge commit (it currently points at the pre-rename commit; nothing is published yet, so the tag isn't load-bearing).npm run build && npm publish --access public→@wastedcode/claudemux@0.2.0.🤖 Generated with Claude Code