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
4 changes: 2 additions & 2 deletions aiwb
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ EOF
# Main interactive chat interface
cmd_chat() {
clear 2>/dev/null || true # Don't fail if TERM not set
ui_header "AIWB Interactive Chat"
ui_logo

# Show status
ui_show_status
Expand Down Expand Up @@ -620,7 +620,7 @@ handle_slash_command() {
;;
/clear)
clear 2>/dev/null || true
ui_header "AIWB Interactive Chat"
ui_logo
;;
/exit|/quit)
# Require explicit confirmation to exit
Expand Down
12 changes: 12 additions & 0 deletions lib/ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,18 @@ ui_header() {
fi
}

# Display AIWB ASCII art logo
ui_logo() {
local version="v2.0.0"
echo ""
printf "${BOLD}${CYAN} _ _ __ __ ___ ${RESET}\n"
printf "${BOLD}${CYAN} /_\\ | | \\ \\ / / | _ )${RESET}\n"
printf "${BOLD}${CYAN}/ _ \\ | | \\ \\/\\/ / | _ \\${RESET}\n"
printf "${BOLD}${CYAN}/_/ \\_\\ |_| \\_/\\_/ |___/ ${RESET}\n"
printf "${DIM} AI Workbench ${version} · Generator → Verifier Loop${RESET}\n"
echo ""
}

# Display info box
ui_info_box() {
local text="$1"
Expand Down
Loading