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