MIGRATE
From legacy packages to voidforge-build
Old Tom remembers the old names. thevoidforge, @voidforge/cli, @voidforge/methodology — all retired. The forge answers to one name now: voidforge-build. The commands you love? Every one of them still works.
BombadilWHAT CHANGED
VoidForge moved to a domain-matched package name. The CLI and methodology packages were renamed so npm install voidforge-build matches the site you're reading now: voidforge.build.
| Legacy package | New package |
|---|---|
thevoidforge | voidforge-build |
@voidforge/cli | voidforge-build |
thevoidforge-methodology | voidforge-build-methodology |
@voidforge/methodology | voidforge-build-methodology |
voidforge(bare, unscoped — squatter; only if previously installed via that name) | voidforge-build |
See ADR-061 for the rationale.
GLOBAL CLI USERS
If you installed the CLI globally under any of the old names, uninstall them and install voidforge-build:
$ npm uninstall -g thevoidforge @voidforge/cli voidforge 2>/dev/null$ npm install -g voidforge-build@latestPROJECT DEPENDENCIES
If your project's package.json lists the old methodology package, rename it:
"thevoidforge-methodology" → "voidforge-build-methodology""@voidforge/methodology" → "voidforge-build-methodology"$ npm installThe new package ships the same .claude/ tree, the same CLAUDE.md, the same agents and commands. Nothing about your build protocol changes.
COMMANDS ARE UNCHANGED
The bin name is still voidforge. Every slash command you already know works exactly the same:
/prd/build/campaign/assemble/gauntlet/review/qa/security/ux/deploy/devops/gitThe only thing that moves is the npm package name. The methodology, the agents, and the build protocol are the same canon — just served from a package whose name matches this domain.
VERIFY THE MIGRATION
Confirm the new CLI is on your PATH:
$ voidforge --version→ 23.x.x$ npm ls -g voidforge-build→ shows installed versionWant cryptographic proof the package you installed came from the real VoidForge build workflow? Head to the provenance verification guide.