From c007b9e5bd192154cd2370a53708d9c1c8ce27f5 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Fri, 20 Feb 2026 11:20:59 -0800 Subject: [PATCH] chore: update installer banner text for branding consistency - Changed the banner message in both PowerShell and shell scripts to reflect the new branding of the Hermes Agent as an open source AI agent by Nous Research, enhancing clarity and consistency across installation scripts. --- scripts/install.ps1 | 2 +- scripts/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index a90fe9644..1e40f6d00 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -39,7 +39,7 @@ function Write-Banner { Write-Host "┌─────────────────────────────────────────────────────────┐" -ForegroundColor Magenta Write-Host "│ 🦋 Hermes Agent Installer │" -ForegroundColor Magenta Write-Host "├─────────────────────────────────────────────────────────┤" -ForegroundColor Magenta - Write-Host "│ I'm just a butterfly with a lot of tools. │" -ForegroundColor Magenta + Write-Host "│ An open source AI agent by Nous Research. │" -ForegroundColor Magenta Write-Host "└─────────────────────────────────────────────────────────┘" -ForegroundColor Magenta Write-Host "" } diff --git a/scripts/install.sh b/scripts/install.sh index 5d467f2c0..0e681bdae 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -86,7 +86,7 @@ print_banner() { echo "┌─────────────────────────────────────────────────────────┐" echo "│ 🦋 Hermes Agent Installer │" echo "├─────────────────────────────────────────────────────────┤" - echo "│ I'm just a butterfly with a lot of tools. │" + echo "│ An open source AI agent by Nous Research. │" echo "└─────────────────────────────────────────────────────────┘" echo -e "${NC}" }