fix: ChunkDelta thinking field in tests, remove residual retry_after refs, fix parse_local_help_action return type

This commit is contained in:
YeonGyu-Kim
2026-05-25 12:09:29 +09:00
parent ba941f7f69
commit 03bd461984

View File

@@ -5388,14 +5388,20 @@ impl LiveCli {
self.handle_plugins_command(action.as_deref(), target.as_deref())?
}
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
}
SlashCommand::Skills { args } => {
match classify_skills_slash_command(args.as_deref()) {
SkillSlashDispatch::Invoke(prompt) => self.run_turn(&prompt)?,
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