Skip to content

Commit 2e9384b

Browse files
style: cyan banner for oasyce-agent CLI
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8f27e01 commit 2e9384b

1 file changed

Lines changed: 15 additions & 6 deletions

File tree

oasyce_sdk/agent/cli.py

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,21 @@
2323

2424

2525
def _print_banner():
26-
print("""
27-
___ __ _ ___ _ _ ___ ___
28-
/ _ \\ / _` / __| | | |/ __/ _ \\
29-
| (_) | (_| \\__ \\ |_| | (_| __/
30-
\\___/ \\__,_|___/\\__, |\\___\\___| agent
31-
|___/
26+
# Cyan/teal ANSI: \033[36m = cyan, \033[96m = bright cyan, \033[0m = reset
27+
C = "\033[36m" # cyan
28+
B = "\033[96m" # bright cyan
29+
D = "\033[90m" # dim gray
30+
R = "\033[0m" # reset
31+
print(f"""
32+
{B} ╔═══════════════════════════════════════╗
33+
{B}{C} ___ __ _ ___ _ _ ___ ___ {B}
34+
{B}{C} / _ \\ / _` / __| | | |/ __/ _ \\ {B}
35+
{B}{C} | (_) | (_| \\__ \\ |_| | (_| __/ {B}
36+
{B}{C} \\___/ \\__,_|___/\\__, |\\___\\___| {B}
37+
{B}{C} |___/ {B}
38+
{B} ║ ║
39+
{B}{D}a g e n t{R}{B} {D}v0.8.3{R}{B}
40+
{B} ╚═══════════════════════════════════════╝{R}
3241
""")
3342

3443

0 commit comments

Comments
 (0)