From 401390fe2557ee449362530b5d285715881b3e9e Mon Sep 17 00:00:00 2001 From: Val Alexander <68980965+BunsDev@users.noreply.github.com> Date: Tue, 14 Jul 2026 04:38:31 -0500 Subject: [PATCH 1/2] feat(brand): rebrand LLM-facing tool descriptions to Coven Sweeps the ~5 remaining model-facing tool/skill descriptions that Phase 5 deliberately left (COVEN.md boundary was user-facing prose only): Config and RemoteTrigger tool descriptions, the tool-search Config index entry, and the update-config bundled skill (description + prompt-template body). Internal paths (~/.coven-code/settings.json), code comments, test fixtures, and debug logs are intentionally unchanged. --- src-rust/crates/tools/src/bundled_skills.rs | 4 ++-- src-rust/crates/tools/src/config_tool.rs | 2 +- src-rust/crates/tools/src/remote_trigger.rs | 2 +- src-rust/crates/tools/src/tool_search.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src-rust/crates/tools/src/bundled_skills.rs b/src-rust/crates/tools/src/bundled_skills.rs index 54890f05..008428db 100644 --- a/src-rust/crates/tools/src/bundled_skills.rs +++ b/src-rust/crates/tools/src/bundled_skills.rs @@ -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(""), 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 diff --git a/src-rust/crates/tools/src/config_tool.rs b/src-rust/crates/tools/src/config_tool.rs index 08770010..1ebe940f 100644 --- a/src-rust/crates/tools/src/config_tool.rs +++ b/src-rust/crates/tools/src/config_tool.rs @@ -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." } diff --git a/src-rust/crates/tools/src/remote_trigger.rs b/src-rust/crates/tools/src/remote_trigger.rs index 9b47beb7..1d0edbda 100644 --- a/src-rust/crates/tools/src/remote_trigger.rs +++ b/src-rust/crates/tools/src/remote_trigger.rs @@ -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." } diff --git a/src-rust/crates/tools/src/tool_search.rs b/src-rust/crates/tools/src/tool_search.rs index 9cf00c33..5ac800af 100644 --- a/src-rust/crates/tools/src/tool_search.rs +++ b/src-rust/crates/tools/src/tool_search.rs @@ -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", From d299c5687981cb8d8f155d27eac15342c14ff492 Mon Sep 17 00:00:00 2001 From: Val Alexander <68980965+BunsDev@users.noreply.github.com> Date: Tue, 14 Jul 2026 04:41:07 -0500 Subject: [PATCH 2/2] fix(brand): rebrand share-export HTML title and footer to Coven MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase 5 missed the self-contained share-export template: the exported page title (' — Coven Code Session') and footer ('Generated by Coven Code') still carried the old brand. User-facing HTML output. agent.json ACP registration identity is intentionally left for a separate, conscious decision. --- src-rust/crates/core/src/share_export/template.html | 2 +- src-rust/crates/core/src/share_export/template.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src-rust/crates/core/src/share_export/template.html b/src-rust/crates/core/src/share_export/template.html index dcb30435..56802480 100644 --- a/src-rust/crates/core/src/share_export/template.html +++ b/src-rust/crates/core/src/share_export/template.html @@ -33,7 +33,7 @@ diff --git a/src-rust/crates/core/src/share_export/template.js b/src-rust/crates/core/src/share_export/template.js index 9f822b1b..98790793 100644 --- a/src-rust/crates/core/src/share_export/template.js +++ b/src-rust/crates/core/src/share_export/template.js @@ -36,7 +36,7 @@ } var title = meta.title || ('Session ' + (meta.session_id || '')); - document.title = title + ' — Coven Code Session'; + document.title = title + ' — Coven Session'; var msgsEl = document.getElementById('messages');