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

View File

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