Skip to content

Commit cfb224a

Browse files
authored
feat(brand): rebrand LLM-facing tool descriptions to Coven (#158)
* 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. * fix(brand): rebrand share-export HTML title and footer to Coven 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.
1 parent 4dc7f62 commit cfb224a

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

src-rust/crates/core/src/share_export/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<footer class="grid-section footer-row">
3535
<a class="footer-item" href="https://github.com/OpenCoven/coven-codes" target="_blank" rel="noopener">GitHub</a>
36-
<div class="footer-item">Generated by Coven Code</div>
36+
<div class="footer-item">Generated by Coven</div>
3737
<a class="footer-item" href="https://github.com/OpenCoven/coven-codes" target="_blank" rel="noopener">GitHub</a>
3838
</footer>
3939
</div>

src-rust/crates/core/src/share_export/template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
}
3737

3838
var title = meta.title || ('Session ' + (meta.session_id || ''));
39-
document.title = title + ' — Coven Code Session';
39+
document.title = title + ' — Coven Session';
4040

4141
var msgsEl = document.getElementById('messages');
4242

src-rust/crates/tools/src/bundled_skills.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,13 +420,13 @@ $ARGUMENTS"#,
420420
// -----------------------------------------------------------------------
421421
BundledSkill {
422422
name: "update-config",
423-
description: "Configure Coven Code settings (hooks, permissions, env vars, behaviours) via settings.json.",
423+
description: "Configure Coven settings (hooks, permissions, env vars, behaviours) via settings.json.",
424424
aliases: &["config-update", "settings"],
425425
when_to_use: Some("When the user wants to configure automated behaviours, permissions, or settings."),
426426
argument_hint: Some("<what to configure>"),
427427
prompt_template: r#"# Update Config Skill
428428
429-
Modify Coven Code configuration by updating settings.json files.
429+
Modify Coven configuration by updating settings.json files.
430430
431431
## Settings File Locations
432432

src-rust/crates/tools/src/config_tool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl Tool for ConfigTool {
3737
}
3838

3939
fn description(&self) -> &str {
40-
"Get or set Coven Code configuration settings. Omit 'value' to read the current value. \
40+
"Get or set Coven configuration settings. Omit 'value' to read the current value. \
4141
Supported settings: model, max_tokens, verbose, permission_mode, auto_compact. \
4242
Changes persist to ~/.coven-code/settings.json."
4343
}

src-rust/crates/tools/src/remote_trigger.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ impl Tool for RemoteTriggerTool {
2828
}
2929

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

src-rust/crates/tools/src/tool_search.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ static TOOL_CATALOG: &[ToolEntry] = &[
196196
},
197197
ToolEntry {
198198
name: "Config",
199-
description: "Get or set Coven Code configuration",
199+
description: "Get or set Coven configuration",
200200
keywords: &[
201201
"config",
202202
"settings",

0 commit comments

Comments
 (0)