mirror of
https://github.com/ultraworkers/claw-code.git
synced 2026-05-30 03:35:20 +08:00
fix: ChunkDelta thinking field in tests, remove residual retry_after refs, fix parse_local_help_action return type
This commit is contained in:
parent
ba941f7f69
commit
03bd461984
@ -5388,14 +5388,20 @@ impl LiveCli {
|
|||||||
self.handle_plugins_command(action.as_deref(), target.as_deref())?
|
self.handle_plugins_command(action.as_deref(), target.as_deref())?
|
||||||
}
|
}
|
||||||
SlashCommand::Agents { args } => {
|
SlashCommand::Agents { args } => {
|
||||||
Self::print_agents(args.as_deref(), CliOutputFormat::Text)?;
|
if let Err(error) = Self::print_agents(args.as_deref(), CliOutputFormat::Text) {
|
||||||
|
eprintln!("{error}");
|
||||||
|
}
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
SlashCommand::Skills { args } => {
|
SlashCommand::Skills { args } => {
|
||||||
match classify_skills_slash_command(args.as_deref()) {
|
match classify_skills_slash_command(args.as_deref()) {
|
||||||
SkillSlashDispatch::Invoke(prompt) => self.run_turn(&prompt)?,
|
SkillSlashDispatch::Invoke(prompt) => self.run_turn(&prompt)?,
|
||||||
SkillSlashDispatch::Local => {
|
SkillSlashDispatch::Local => {
|
||||||
Self::print_skills(args.as_deref(), CliOutputFormat::Text)?;
|
if let Err(error) =
|
||||||
|
Self::print_skills(args.as_deref(), CliOutputFormat::Text)
|
||||||
|
{
|
||||||
|
eprintln!("{error}");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
false
|
false
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user