Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src-rust/crates/tools/src/bundled_skills.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,13 +420,13 @@ $ARGUMENTS"#,
// -----------------------------------------------------------------------
BundledSkill {
name: "update-config",
description: "Configure Coven Code settings (hooks, permissions, env vars, behaviours) via settings.json.",
description: "Configure Coven settings (hooks, permissions, env vars, behaviours) via settings.json.",
aliases: &["config-update", "settings"],
when_to_use: Some("When the user wants to configure automated behaviours, permissions, or settings."),
argument_hint: Some("<what to configure>"),
prompt_template: r#"# Update Config Skill

Modify Coven Code configuration by updating settings.json files.
Modify Coven configuration by updating settings.json files.

## Settings File Locations

Expand Down
2 changes: 1 addition & 1 deletion src-rust/crates/tools/src/config_tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl Tool for ConfigTool {
}

fn description(&self) -> &str {
"Get or set Coven Code configuration settings. Omit 'value' to read the current value. \
"Get or set Coven configuration settings. Omit 'value' to read the current value. \
Supported settings: model, max_tokens, verbose, permission_mode, auto_compact. \
Changes persist to ~/.coven-code/settings.json."
}
Expand Down
2 changes: 1 addition & 1 deletion src-rust/crates/tools/src/remote_trigger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl Tool for RemoteTriggerTool {
}

fn description(&self) -> &str {
"Send a named event to another active Coven Code session. \
"Send a named event to another active Coven session. \
Use this to coordinate across parallel sessions or notify a parent session of results."
}

Expand Down
2 changes: 1 addition & 1 deletion src-rust/crates/tools/src/tool_search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ static TOOL_CATALOG: &[ToolEntry] = &[
},
ToolEntry {
name: "Config",
description: "Get or set Coven Code configuration",
description: "Get or set Coven configuration",
keywords: &[
"config",
"settings",
Expand Down
Loading