Uh oh!
There was an error while loading. Please reload this page.
chore(cli): migrate docs references (CLI-2171) - #6155
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit:dc8bbfa8ea
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
7ttp
commented
Aug 11, 2026
@codex review |
Codex Review: Didn't find any major issues. Nice work! Reviewed commit: ℹ️ About Codex in GitHubCodex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback". |
dc8bbfa to
1cdd193CompareCodex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
1cdd193 to
f9d5ea8CompareCodex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
Uh oh!
There was an error while loading. Please reload this page.
## TL;DR re-points CLI reference docs generation at the TypeScript command tree, replacing the retired Go generator with `scripts/generate-docs-spec.ts`. ## What's introduced? - `scripts/generate-docs-spec.ts`, walking the legacy Effect command tree and merging the overlays and examples under `apps/cli/docs` into the reference spec - docs-local introspection helpers and unit tests - build time validation of the static tables, so command or flag renames fail loudly Purely additive, no existing source files modified. ## Why was it needed? - the reference was generated from the Go command tree, which the Go CLI deprecation deletes - TS only additions never appeared on the docs site The output was parity checked against the Go generator before its removal: all 135 command ids, anchors, flags and defaults match, and TS only surfaces like `completion` and `issue` now appear. ## ref: - stacks on top of: supabase#6155 - closes: CLI-2171
TL;DR
moves the 47 docs ref(s) from
apps/cli-go/docs/toapps/cli/docs/because we are deprecating/moving away from GO-CLI in M9...
the upcoming ts docs spec generator will read them from the this new location, nothing consumes it yet and the Go originals are untouched.
The copies differ from the originals only by oxfmt whitespace and list marker normalization required by this workspace's format check...
ref: