You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mux has a custom agent loop but much of the core UX is inspired by Claude Code. You'll find familiar features like Plan/Exec mode, vim inputs, `/compact` and new ones
48
-
like [opportunistic compaction](https://cmux.io/context-management.html) and [mode prompts](https://cmux.io/instruction-files.html#mode-prompts).
48
+
like [opportunistic compaction](https://mux.coder.com/context-management.html) and [mode prompts](https://mux.coder.com/instruction-files.html#mode-prompts).
49
49
50
-
**[Read the full documentation →](https://cmux.io)**
50
+
**[Read the full documentation →](https://mux.coder.com)**
51
51
52
52
## Install
53
53
@@ -58,7 +58,7 @@ like [opportunistic compaction](https://cmux.io/context-management.html) and [mo
58
58
Download pre-built binaries from [the releases page](https://github.com/coder/mux/releases) for
59
59
macOS and Linux.
60
60
61
-
[More on installation →](https://cmux.io/install.html)
61
+
[More on installation →](https://mux.coder.com/install.html)
62
62
63
63
## Screenshots
64
64
@@ -99,7 +99,7 @@ macOS and Linux.
99
99
100
100
## More reading
101
101
102
-
See [the documentation](https://cmux.io) for more details.
102
+
See [the documentation](https://mux.coder.com) for more details.
Copy file name to clipboardExpand all lines: scripts/check_codex_comments.sh
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -55,8 +55,10 @@ RESULT=$(gh api graphql \
55
55
-F repo="$REPO" \
56
56
-F pr="$PR_NUMBER")
57
57
58
-
# Filter regular comments from bot that aren't minimized and don't say "Didn't find any major issues"
59
-
REGULAR_COMMENTS=$(echo "$RESULT"| jq "[.data.repository.pullRequest.comments.nodes[] | select(.author.login == \"${BOT_LOGIN_GRAPHQL}\" and .isMinimized == false and (.body | test(\"Didn't find any major issues\") | not))]")
58
+
# Filter regular comments from bot that aren't minimized, excluding:
59
+
# - "Didn't find any major issues" (no issues found)
60
+
# - "usage limits have been reached" (rate limit error, not a real review)
61
+
REGULAR_COMMENTS=$(echo "$RESULT"| jq "[.data.repository.pullRequest.comments.nodes[] | select(.author.login == \"${BOT_LOGIN_GRAPHQL}\" and .isMinimized == false and (.body | test(\"Didn't find any major issues|usage limits have been reached\") | not))]")
0 commit comments