Add ASCII art banner to CLI and update gitignore

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sanju Sivalingam
2026-02-16 20:00:46 +05:30
parent 158fe68bf9
commit 6a63af1a68
2 changed files with 19 additions and 0 deletions

2
.gitignore vendored
View File

@@ -8,3 +8,5 @@ logs/
kernel_screenshot.png kernel_screenshot.png
window_dump.xml window_dump.xml
docs/architecture-web-flow.md docs/architecture-web-flow.md
OPTION1-IMPLEMENTATION.md
HOSTED-PLAN.md

View File

@@ -459,7 +459,24 @@ export async function runAgent(goal: string, maxSteps?: number): Promise<{ succe
// Entry Point // Entry Point
// =========================================== // ===========================================
const BANNER = `
╔════════════════════════════════════════════════════════════════════════════╗
║ ║
║ ██████╗ ██████╗ ██████╗ ██╗██████╗ ██████╗██╗ █████╗ ██╗ ██╗ ║
║ ██╔══██╗██╔══██╗██╔═══██╗██║██╔══██╗██╔════╝██║ ██╔══██╗██║ ██║ ║
║ ██║ ██║██████╔╝██║ ██║██║██║ ██║██║ ██║ ███████║██║ █╗ ██║ ║
║ ██║ ██║██╔══██╗██║ ██║██║██║ ██║██║ ██║ ██╔══██║██║███╗██║ ║
║ ██████╔╝██║ ██║╚██████╔╝██║██████╔╝╚██████╗███████╗██║ ██║╚███╔███╔╝ ║
║ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝╚═════╝ ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝.ai ║
║ ║
║ Android AI Agent powered by LLMs ║
║ ║
╚════════════════════════════════════════════════════════════════════════════╝
`;
async function main(): Promise<void> { async function main(): Promise<void> {
console.log(BANNER);
try { try {
Config.validate(); Config.validate();
} catch (e) { } catch (e) {