The documented install command points at abisola/bimstack, but the public repo is govtech-bb/bimstack. Anyone who isn't the original author cannot install the plugin by following the README.
Separately, three docs hard-code a personal filesystem path (/Users/abisola/dev-env/claude/bimstack) as the local-install route.
Wrong account path
README.md:119 — /plugin marketplace add abisola/bimstack
MANUAL.md:96 — same command
.claude-plugin/plugin.json:9 — homepage
.claude-plugin/plugin.json:10 — repository
examples/production-renew-medical-licence/package.json:27 — "repository": "github:abisola/bimstack"
Hard-coded personal filesystem path
README.md:126
PLAYBOOK.md:28
MANUAL.md:82, MANUAL.md:89
Suggested fix
Replace the account path with govtech-bb/bimstack throughout. Replace the personal-path instructions with a clone-then-add flow:
git clone https://github.com/govtech-bb/bimstack
/plugin marketplace add ./bimstack
Filed as one issue because it is a single find-and-replace sweep over nine locations — splitting it means two PRs touching the same lines.
The documented install command points at
abisola/bimstack, but the public repo isgovtech-bb/bimstack. Anyone who isn't the original author cannot install the plugin by following the README.Separately, three docs hard-code a personal filesystem path (
/Users/abisola/dev-env/claude/bimstack) as the local-install route.Wrong account path
README.md:119—/plugin marketplace add abisola/bimstackMANUAL.md:96— same command.claude-plugin/plugin.json:9—homepage.claude-plugin/plugin.json:10—repositoryexamples/production-renew-medical-licence/package.json:27—"repository": "github:abisola/bimstack"Hard-coded personal filesystem path
README.md:126PLAYBOOK.md:28MANUAL.md:82,MANUAL.md:89Suggested fix
Replace the account path with
govtech-bb/bimstackthroughout. Replace the personal-path instructions with a clone-then-add flow:Filed as one issue because it is a single find-and-replace sweep over nine locations — splitting it means two PRs touching the same lines.