pub struct AutoModeCritiqueCommand { /* private fields */ }Expand description
Get AI feedback on your custom auto-mode rules.
Takes an optional model override; without one the CLI picks its default. Output is free-form text.
§Example
use claude_wrapper::{AutoModeCritiqueCommand, Claude, ClaudeCommand};
let claude = Claude::builder().build()?;
let output = AutoModeCritiqueCommand::new()
.model("opus")
.execute(&claude)
.await?;
println!("{}", output.stdout);Implementations§
Trait Implementations§
Source§impl Clone for AutoModeCritiqueCommand
impl Clone for AutoModeCritiqueCommand
Source§fn clone(&self) -> AutoModeCritiqueCommand
fn clone(&self) -> AutoModeCritiqueCommand
Returns a duplicate of the value. Read more
1.0.0 · 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 AutoModeCritiqueCommand
impl Debug for AutoModeCritiqueCommand
Source§impl Default for AutoModeCritiqueCommand
impl Default for AutoModeCritiqueCommand
Source§fn default() -> AutoModeCritiqueCommand
fn default() -> AutoModeCritiqueCommand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AutoModeCritiqueCommand
impl RefUnwindSafe for AutoModeCritiqueCommand
impl Send for AutoModeCritiqueCommand
impl Sync for AutoModeCritiqueCommand
impl Unpin for AutoModeCritiqueCommand
impl UnsafeUnpin for AutoModeCritiqueCommand
impl UnwindSafe for AutoModeCritiqueCommand
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.