Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed:
--no-uploadflag silently ignored due to wrong property- Updated
translate-captionsoption handling to use Cliffy’s parsedupload === falsevalue so--no-uploadcorrectly setsupload_to_muxto false.
- Updated
Or push these changes by commenting:
@cursor push 5e7498be26
Preview (5e7498be26)
diff --git a/src/commands/robots/translate-captions.ts b/src/commands/robots/translate-captions.ts
--- a/src/commands/robots/translate-captions.ts
+++ b/src/commands/robots/translate-captions.ts
@@ -5,7 +5,7 @@
interface TranslateCaptionsOptions {
trackId: string;
toLanguageCode: string;
- noUpload?: boolean;
+ upload?: boolean;
passthrough?: string;
json?: boolean;
}
@@ -44,7 +44,7 @@
track_id: options.trackId,
to_language_code: options.toLanguageCode,
};
- if (options.noUpload) {
+ if (options.upload === false) {
params.upload_to_mux = false;
}This Bugbot Autofix run was free. To enable autofix for future PRs, go to the Cursor dashboard.
Reviewed by Cursor Bugbot for commit f2f158f. Configure here.
…PI integration and new features
…ghlight duration options
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 free
to 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.


Summary
mux robotscommand group with 10 subcommands covering the full Robots APIlist,get,delete,cancelsummarize,moderate,generate-chapters,ask-questions,find-key-moments,translate-captionsfetchcalls via a sharedsrc/lib/robots.tshelper (the Mux Node SDK does not yet support the Robots API)Test plan
bun test src/commands/robots/)pnpm run check(biome) passesfam-vidsenvironment)--agentmode works with robots commands🤖 Generated with Claude Code
Note
Medium Risk
Introduces new API-integrating commands and upgrades the Mux SDK, which may change runtime behavior or types; however changes are mostly additive and isolated to new command paths.
Overview
Adds a new
mux robotscommand group wired into the main CLI, enabling job listing/retrieval/cancellation plus workflow job creation for summarize, moderate, generate chapters, ask questions, find key moments, and translate captions.Updates docs to describe the new Robots commands/options and bumps
@mux/mux-nodeto^14.0.0to use therobotsPreviewAPI surface. Also hardensmux assets create --uploadby erroring if Mux returns an upload without a signedurl.Reviewed by Cursor Bugbot for commit 68a7750. Bugbot is set up for automated code reviews on this repo. Configure here.