From 18db953db8aeaaefd1d1f7320826ea2007738f1b Mon Sep 17 00:00:00 2001 From: Paulo Lacerda Date: Fri, 26 Jun 2026 12:16:43 -0300 Subject: [PATCH] Update AgentOps CLI tagline Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 ++ src/agentops/cli/app.py | 4 ++-- tests/unit/test_init_command.py | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a75d13a..a377efa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres ## [Unreleased] ### Changed +- Updated the AgentOps CLI tagline to use `Operate` instead of `Own` for clearer + operator-focused positioning. - **Prompt-agent PR validation now uses sandbox instead of dev.** Generated GitHub and Azure DevOps PR workflows stage prompt-agent candidates in the sandbox Foundry environment, keeping dev for deployed-of-record versions. diff --git a/src/agentops/cli/app.py b/src/agentops/cli/app.py index 699aaef..bf1a44a 100644 --- a/src/agentops/cli/app.py +++ b/src/agentops/cli/app.py @@ -5417,8 +5417,8 @@ def _colorize_block( # fallback keeps the same words on a single line. def _agentops_tagline() -> str: if _terminal_unicode_enabled(): - return "Evaluate · Ship · Observe · Own — every Foundry agent." - return "Evaluate :: Ship :: Observe :: Own -- every Foundry agent." + return "Evaluate · Ship · Observe · Operate — every Foundry agent." + return "Evaluate :: Ship :: Observe :: Operate -- every Foundry agent." def _render_brand_block( diff --git a/tests/unit/test_init_command.py b/tests/unit/test_init_command.py index e53daf0..49415cc 100644 --- a/tests/unit/test_init_command.py +++ b/tests/unit/test_init_command.py @@ -303,7 +303,7 @@ def test_init_prints_brand_banner(tmp_path: Path, monkeypatch) -> None: # ASCII letterforms from _AGENTOPS_PLAIN_BANNER (figlet "Standard"). assert "____ _____ _ _ _____" in text # The catchphrase, ASCII fallback variant. - assert "Evaluate :: Ship :: Observe :: Own -- every Foundry agent." in text + assert "Evaluate :: Ship :: Observe :: Operate -- every Foundry agent." in text def test_brand_tagline_is_used_by_explain_pages(monkeypatch) -> None: @@ -315,7 +315,7 @@ def test_brand_tagline_is_used_by_explain_pages(monkeypatch) -> None: result = runner.invoke(app, ["init", "explain", "--no-pager"]) assert result.exit_code == 0 text = _strip_ansi(result.stdout) - assert "Evaluate :: Ship :: Observe :: Own -- every Foundry agent." in text + assert "Evaluate :: Ship :: Observe :: Operate -- every Foundry agent." in text # ---------------------------------------------------------------------------