|
@@ -323,7 +323,7 @@ pub fn mvp_tool_specs() -> Vec<ToolSpec> {
|
|
|
},
|
|
},
|
|
|
ToolSpec {
|
|
ToolSpec {
|
|
|
name: "Config",
|
|
name: "Config",
|
|
|
- description: "Get or set Claude Code settings.",
|
|
|
|
|
|
|
+ description: "Get or set Claw Code settings.",
|
|
|
input_schema: json!({
|
|
input_schema: json!({
|
|
|
"type": "object",
|
|
"type": "object",
|
|
|
"properties": {
|
|
"properties": {
|
|
@@ -1537,7 +1537,7 @@ fn allowed_tools_for_subagent(subagent_type: &str) -> BTreeSet<String> {
|
|
|
"SendUserMessage",
|
|
"SendUserMessage",
|
|
|
"PowerShell",
|
|
"PowerShell",
|
|
|
],
|
|
],
|
|
|
- "claude-code-guide" => vec![
|
|
|
|
|
|
|
+ "claw-code-guide" => vec![
|
|
|
"read_file",
|
|
"read_file",
|
|
|
"glob_search",
|
|
"glob_search",
|
|
|
"grep_search",
|
|
"grep_search",
|
|
@@ -2087,7 +2087,7 @@ fn normalize_subagent_type(subagent_type: Option<&str>) -> String {
|
|
|
"verification" | "verificationagent" | "verify" | "verifier" => {
|
|
"verification" | "verificationagent" | "verify" | "verifier" => {
|
|
|
String::from("Verification")
|
|
String::from("Verification")
|
|
|
}
|
|
}
|
|
|
- "claudecodeguide" | "claudecodeguideagent" | "guide" => String::from("claude-code-guide"),
|
|
|
|
|
|
|
+ "claudecodeguide" | "claudecodeguideagent" | "guide" => String::from("claw-code-guide"),
|
|
|
"statusline" | "statuslinesetup" => String::from("statusline-setup"),
|
|
"statusline" | "statuslinesetup" => String::from("statusline-setup"),
|
|
|
_ => trimmed.to_string(),
|
|
_ => trimmed.to_string(),
|
|
|
}
|
|
}
|