refactor: rebrand bash-helper to super-man + ESC returns straight to menu

Rename bash-helper.sh -> super-man.sh and update all docs/tests to the
super-man name and alias. In interactive mode, pressing Esc in the flag
browser now returns directly to the home menu, removing the intermediary
"Press Enter to search another command" prompt.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
leetcrypt
2026-06-05 20:52:18 -07:00
parent 06bec2d249
commit 2fb20b0682
22 changed files with 419 additions and 412 deletions
+5 -5
View File
@@ -1,5 +1,5 @@
#!/bin/bash
# Performance Analysis Tool for Bash Buddy
# Performance Analysis Tool for Super Man
# Analyzes test logs and benchmark data to generate insights
# Color definitions
@@ -27,7 +27,7 @@ mkdir -p "$REPORT_DIR"
print_header() {
echo -e "${BOLD}${CYAN}"
echo "═══════════════════════════════════════════════════════════"
echo " Bash Buddy Performance Analysis"
echo " Super Man Performance Analysis"
echo " $(date '+%Y-%m-%d %H:%M:%S')"
echo "═══════════════════════════════════════════════════════════"
echo -e "${NC}"
@@ -59,7 +59,7 @@ generate_performance_report() {
local bench_file="$PERF_LOG_DIR/benchmarks.csv"
local report_file="$REPORT_DIR/performance-report.md"
echo "# Bash Buddy Performance Report" > "$report_file"
echo "# Super Man Performance Report" > "$report_file"
echo "" >> "$report_file"
echo "**Generated:** $(date '+%Y-%m-%d %H:%M:%S')" >> "$report_file"
echo "" >> "$report_file"
@@ -188,7 +188,7 @@ generate_html_report() {
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bash Buddy Performance Report</title>
<title>Super Man Performance Report</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
@@ -243,7 +243,7 @@ generate_html_report() {
</head>
<body>
<div class="header">
<h1>🚀 Bash Buddy Performance Report</h1>
<h1>🚀 Super Man Performance Report</h1>
<p>Generated: TIMESTAMP</p>
</div>