pub struct UltrareviewCommand { /* private fields */ }Expand description
Run claude ultrareview [target] [--json] [--timeout <minutes>].
Runs a cloud-hosted multi-agent code review and prints the findings. With no target, reviews the current branch; pass a PR number/URL or a base branch name to review that instead.
The review runs in the cloud and can take many minutes. Size the
Claude client timeout to at least the value passed to
Self::timeout (the CLI default is 30 minutes) so the wrapper does
not kill the process before the review finishes.
§Example
use claude_wrapper::{Claude, ClaudeCommand, UltrareviewCommand};
let claude = Claude::builder().build()?;
let out = UltrareviewCommand::new()
.target("123")
.json()
.timeout(45)
.execute(&claude)
.await?;
println!("{}", out.stdout);Implementations§
Trait Implementations§
Source§impl ClaudeCommand for UltrareviewCommand
impl ClaudeCommand for UltrareviewCommand
Source§impl Clone for UltrareviewCommand
impl Clone for UltrareviewCommand
Source§fn clone(&self) -> UltrareviewCommand
fn clone(&self) -> UltrareviewCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UltrareviewCommand
impl Debug for UltrareviewCommand
Source§impl Default for UltrareviewCommand
impl Default for UltrareviewCommand
Source§fn default() -> UltrareviewCommand
fn default() -> UltrareviewCommand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UltrareviewCommand
impl RefUnwindSafe for UltrareviewCommand
impl Send for UltrareviewCommand
impl Sync for UltrareviewCommand
impl Unpin for UltrareviewCommand
impl UnsafeUnpin for UltrareviewCommand
impl UnwindSafe for UltrareviewCommand
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> ClaudeCommandSyncExt for Twhere
T: ClaudeCommand<Output = CommandOutput>,
impl<T> ClaudeCommandSyncExt for Twhere
T: ClaudeCommand<Output = CommandOutput>,
Source§fn execute_sync(&self, claude: &Claude) -> Result<CommandOutput, Error>
fn execute_sync(&self, claude: &Claude) -> Result<CommandOutput, Error>
Blocking analog of
ClaudeCommand::execute for commands
producing CommandOutput.