Skip to content

Commit 44a91fa

Browse files
cursoragentechobt
andcommitted
chore: drop leftover competitor product cites
Neutralize CHANGELOG composer wording and comment leftovers. Keep lock-proof bans that forbid competitor names in chrome. Co-authored-by: Mathis <echobt@users.noreply.github.com>
1 parent a4eefde commit 44a91fa

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2828
- Composer lock: empty is `> ` + white block at input col 0 + dim `Plan, search, build anything` after that cell (never a white rect after the placeholder). Blink-off (~530ms) hides the block so the placeholder starts at col 0. Typed copy is `#F5F5F5` with the block at the caret.
2929

3030
- Focused composer `>` uses the green focus palette with contrast backing; past user `>` stays white. Interrupt `× Stopped`, quota title, failed MCP `x`, and sandbox deny paint error red `#F87171`. Primary copy is `#F5F5F5`. MCP connect/drop and sandbox deny are live, not painted-only.
31-
- The composer is the Devin-style bar in every session, working and queue state: a full-width thin gray hairline above the `> ` prompt and another below it, dim placeholder, white block cursor; it follows the transcript until the transcript fills the screen
31+
- The composer is the session composer bar (locked chrome composer) in every session, working and queue state: a full-width thin gray hairline above the `> ` prompt and another below it, dim placeholder, white block cursor; it follows the transcript until the transcript fills the screen
3232
- Past user turns sit on a full-width, slightly lighter gray bar behind `> prompt text`
3333
- Login, trust, `/mode`, `/permissions`, permission prompts, plan / clear / delete confirms and questions are numbered pickers: `> 1 …` with green focus styling on the selected row, `· 2 …` white on the others, dim descriptions under the titles, `↑↓ select · ↵ confirm · esc …` hints; the sign-in screen reads `Welcome to Cortex CLI!` / `How would you like to log in?`
3434
- `/model`, `/resume`, `/skills` and the settings hub frame their `/ Type to search` field with two hairlines; no pricing bar

src/cortex-commands/src/builtin/hierarchy.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
//! # Supported Filenames
1414
//!
1515
//! - `AGENTS.md` - Primary format
16-
//! - `CLAUDE.md` - Claude Code compatibility
16+
//! - `CLAUDE.md` - compatibility filename
1717
//! - `.cortex/AGENTS.md` - Local overrides
18-
//! - `.claude/CLAUDE.md` - Claude Code local format
18+
//! - `.claude/CLAUDE.md` - local compatibility filename
1919
2020
use std::path::{Path, PathBuf};
2121

src/cortex-commands/src/import.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Import functionality for external command formats.
22
//!
33
//! Supports importing commands from:
4-
//! - `.claude/commands/` (Claude Code format)
4+
//! - `.claude/commands/` (external markdown command format)
55
//! - `.agents/` (Agent configuration)
66
//! - Other compatible markdown command formats
77
@@ -235,7 +235,7 @@ impl ClaudeImporter {
235235
new_frontmatter.push_str(&format!("tools: {}\n", tools));
236236
}
237237

238-
// Map allowed_tools (Claude Code format)
238+
// Map allowed_tools (external frontmatter key)
239239
if let Some(tools) = frontmatter.get("allowed_tools") {
240240
new_frontmatter.push_str(&format!("tools: {}\n", tools));
241241
}

src/cortex-commands/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
//! manager.load_all().await?;
5757
//! ```
5858
//!
59-
//! # Import from Claude Code
59+
//! # Import from external command dirs
6060
//!
61-
//! Commands can be imported from Claude Code format:
61+
//! Commands can be imported from `.claude/commands/` markdown:
6262
//!
6363
//! ```rust,ignore
6464
//! use cortex_commands::import::{ClaudeImporter, ImportType};

src/cortex-commands/src/manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ impl CommandManager {
225225
Ok(commands)
226226
}
227227

228-
/// Convert a command from external format (e.g., Claude Code) to Cortex format.
228+
/// Convert a command from an external markdown format to Cortex format.
229229
async fn convert_external_command(&self, path: &Path) -> Result<Command, ManagerError> {
230230
let content = tokio::fs::read_to_string(path).await?;
231231

src/cortex-hooks/src/hook.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub enum HookType {
5252
/// Triggered when a session completes.
5353
SessionCompleted,
5454

55-
// New events (Claude Code inspired)
55+
// Additional lifecycle events
5656
/// Triggered before a tool is used.
5757
PreToolUse,
5858
/// Triggered after a tool is used successfully.

src/cortex-tui/src/lock_proof.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2409,7 +2409,7 @@ mod tests {
24092409
}
24102410
if plain.contains("Devi") {
24112411
assert!(
2412-
plain.contains("Device") || plain.contains("device") || plain.contains("Devin"),
2412+
plain.contains("Device") || plain.contains("device"),
24132413
"truncated Device:\n{plain}"
24142414
);
24152415
}

0 commit comments

Comments
 (0)