支持Cline Agent

This commit is contained in:
xintaofei
2026-03-28 20:14:48 +08:00
parent afa67380e7
commit be3f4986d7
26 changed files with 1418 additions and 35 deletions

View File

@@ -9,6 +9,7 @@ pub enum AgentType {
OpenCode,
Gemini,
OpenClaw,
Cline,
}
impl fmt::Display for AgentType {
@@ -19,6 +20,7 @@ impl fmt::Display for AgentType {
AgentType::OpenCode => write!(f, "OpenCode"),
AgentType::Gemini => write!(f, "Gemini CLI"),
AgentType::OpenClaw => write!(f, "OpenClaw"),
AgentType::Cline => write!(f, "Cline"),
}
}
}