Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Autofix Details
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Homebrew formula omits
docs-version.jsonfrom install- Added
docs-version.jsonto the Homebrew install list in both the checked-in formula and the release workflow’s generated formula template.
- Added
Or push these changes by commenting:
@cursor push 091ac6422d
Preview (091ac6422d)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -170,6 +170,7 @@
(share/"mux").install "docs"
(share/"mux").install "skill"
(share/"mux").install "AGENTS.md"
+ (share/"mux").install "docs-version.json"
end
end
diff --git a/Formula/mux.rb b/Formula/mux.rb
--- a/Formula/mux.rb
+++ b/Formula/mux.rb
@@ -37,6 +37,7 @@
(share/"mux").install "docs"
(share/"mux").install "skill"
(share/"mux").install "AGENTS.md"
+ (share/"mux").install "docs-version.json"
end
endThis Bugbot Autofix run was free. To enable autofix for future PRs, go to the Cursor dashboard.
| resource("docs").stage do | ||
| (share/"mux").install "docs" | ||
| (share/"mux").install "skill" | ||
| (share/"mux").install "AGENTS.md" |
There was a problem hiding this comment.
Homebrew formula omits docs-version.json from install
Medium Severity
The docs tarball is created with docs-version.json included (tar -czf mux-docs.tar.gz docs/ skill/ AGENTS.md docs-version.json), but the Homebrew resource("docs").stage block only installs docs, skill, and AGENTS.md — it never installs docs-version.json. Since mux docs update --check reports whether newer docs are available, the CLI likely needs the local docs-version.json to compare against the remote version. Homebrew users would be missing this metadata file, potentially breaking the update-check feature.
Additional Locations (1)
|
@dylanjha Would just need to discuss the GHA actions sync. Need to make a Github App Token |
the docs packaging job fails.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
There are 2 total unresolved issues (including 1 from previous review).
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.



The CLI needs docs that act as agent skills. This keeps our Mux docs the single source of truth for all Mux documentation and info.
User can also run the following commands
Note
Medium Risk
Moderate risk due to new GitHub Actions workflows that publish/delete releases and modify Homebrew formula generation, which could affect release automation and distribution. Most other changes are additive documentation content and should be low risk.
Overview
Adds automated docs syncing and distribution: a scheduled
sync-docsworkflow pulls MDX guides frommuxinc/mux.comviascripts/sync-docs.sh, and apublish-docsworkflow packagesdocs/,skill/,AGENTS.md, anddocs-version.jsoninto adocs-latestGitHub prerelease.Updates the tagged release pipeline to also build/upload a
mux-docs.tar.gzartifact and (when present) include it in Homebrew installs by generating aresource "docs"stanza and installing docs intoshare/mux.Adds
AGENTS.mdand expandsREADME.mdguidance around the bundled agent skill/docs and discovering installed paths viamux docs path --json, alongside a large import of new/updated guide content underdocs/guides/.Written by Cursor Bugbot for commit ddff86b. This will update automatically on new commits. Configure here.