Uh oh!
There was an error while loading. Please reload this page.
Rename the tool to Kizen Admin CLI - #26
Merged
Merged
Conversation
Repository URLs move to kizen/kizen-admin-cli, and the user-facing name follows: kizen --help, the README, CONTRIBUTING.md and the bundled reference docs all said "Kizen Builder". The command is still kizen and the package is still kizen_builder, so this changes no invocation or import. The CLI-tree baseline is regenerated because the top-level help text is part of it.
annaliu-kizen
approved these changes
Sep 4, 2026
Uh oh!
There was an error while loading. Please reload this page.
jbedient-kizen
deleted the
chore/consistent-kizen-admin-cli-references
branch
September 4, 2026 16:30
jbedient-kizen
restored the
chore/consistent-kizen-admin-cli-references
branch
September 4, 2026 16:31
jbedient-kizen
deleted the
chore/consistent-kizen-admin-cli-references
branch
September 4, 2026 16:31
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 freeto 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.
Problem
The repository moved to
kizen/kizen-admin-cli, but every URL in the repo still pointed atkizen/builder-cli(working only via GitHub's redirect), and the tool still introduced itself as "Kizen Builder" inkizen --help, the README,CONTRIBUTING.md, and the bundled reference docs.Solution
Repository URLs move to the real remote, and the user-facing name follows it to "Kizen Admin CLI" everywhere it appears.
The command is still
kizenand the installed package is stillkizen_builder, so nothing about invoking or importing the tool changes. That is called out in the changelog so nobody goes looking for a renamed entry point.scripts/cli-tree-baseline.txtis regenerated rather than hand-edited — the top-level help text is captured in it, so the rename necessarily moves it.Testing
bin/check.sh— lint, format, typecheck, test, extra_checks all pass:1426 passed, 4 skipped.The live drift tier was also run against a disposable environment across this branch and the five stacked on top of it: identical results to
main(70 passed, with 3 pre-existing failures that reproduce onmainand are filed separately). No live regressions from any of the six.Design notes / tradeoffs
The clone-target directory in
CONTRIBUTING.mdwas renamed too, and thefile://URL-decoding example inupgrade.pyalong with its test — both are directory names rather than product references, but leaving them would have been the only "Kizen Builder" strings left in the tree.This is the first of six stacked branches; merging in order avoids a changelog conflict on each one.