chore(cli): rename @imdeadpool/colony-cli → colonyq#505
Merged
NagyVikt merged 1 commit intoMay 10, 2026
Conversation
The scoped name @imdeadpool/colony-cli was awkward as a published handle (long, scope-bound to a single user namespace). Switch to the unscoped colonyq — short, available on npm, and the 'q' suffix nods at the @colony/queen orchestrator package without renaming the binary itself (still `colony`). Live source-of-truth changes: - apps/cli/package.json: name field - README.md: install commands, npm badges, release-note references - .changeset/config.json: linked array - 3× .changeset/*.md: pending release frontmatter Historical untouched: - packages/hooks/CHANGELOG.md (released changelog refs) - openspec/changes/* (historical change docs) - apps/cli/release/* (gitignored build output, regenerates on publish) Verification: - pnpm --filter colonyq build: 80ms, all chunks emit - pnpm --filter colonyq test: 241/241 pass - pnpm --filter colonyq typecheck: clean Post-merge follow-ups (separate concerns): - Publish 0.7.0 to npm under colonyq (replaces stale @imdeadpool/colony@0.5.0 global link) - Update consumer refs: ~/Documents/Justfile, soul/skills meta/workspace-recipes, soul/mcps catalog README
1 task
NagyVikt
added a commit
that referenced
this pull request
May 10, 2026
PR #505 renamed the package to `colonyq` but missed two `pnpm --filter` calls in the publish scripts. Without this fix, `pnpm publish:cli` fails because the filter no longer matches a workspace package. Verified via `pnpm publish:cli:dry-run`: tarball generates correctly as `colonyq-0.7.0.tgz` (422.5 kB packed). Co-authored-by: NagyVikt <nagy.viktordp@gmail.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.
Summary
The scoped npm name
@imdeadpool/colony-cliis awkward as a public handle — long, scope-bound to a single user namespace, and confusingly differs from the binary name (colony). Switch tocolonyq— short, unscoped, available on npm, and theqsuffix nods at the@colony/queenorchestrator package without renaming the binary itself.After this lands, the install becomes:
What changed (live source-of-truth only)
apps/cli/package.jsonname:@imdeadpool/colony-cli→colonyqREADME.md.changeset/config.jsonlinkedarray.changeset/colony-demo-command-and-policy-examples.md.changeset/bridge-lifecycle-replay-and-dry-run.md.changeset/mcp-error-fallback-and-sqlite-busy-timeout.mdWhat stayed (historical / generated)
packages/hooks/CHANGELOG.md— describes already-released historyopenspec/changes/**/*.md— past change-records (rewriting them would falsify history)apps/cli/release/*— gitignored build output, regenerates onpnpm publish:cliTest plan
pnpm --filter colonyq build→ 80ms, all chunks emitpnpm --filter colonyq test→ 241/241 passpnpm --filter colonyq typecheck→ cleanPost-merge follow-ups (separate concerns)
colonyq@0.7.0to npm (replaces the stale globally-linked@imdeadpool/colony@0.5.0)~/Documents/Justfileline 90 (pnpm --filter @imdeadpool/colony-cli build→pnpm --filter colonyq build)~/Documents/soul/skills/skills/meta/workspace-recipes/SKILL.mdline 50 (same recipe)~/Documents/soul/mcps/mcps/colony/README.md(catalog install command)🤖 Generated with Claude Code