Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src-rust/crates/core/src/share_export/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<footer class="grid-section footer-row">
<a class="footer-item" href="https://github.com/OpenCoven/coven-codes" target="_blank" rel="noopener">GitHub</a>
<div class="footer-item">Generated by Coven Code</div>
<div class="footer-item">Generated by Coven</div>
<a class="footer-item" href="https://github.com/OpenCoven/coven-codes" target="_blank" rel="noopener">GitHub</a>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src-rust/crates/core/src/share_export/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down
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