Add ASCII art banner to CLI and update gitignore
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user