/** * {{PROJECT_NAME}} - Entry Point * * Autonomous development powered by Miyabi framework */ console.log('🌸 Welcome to {{PROJECT_NAME}}!'); console.log('Powered by Miyabi - Autonomous AI Development Framework'); console.log(''); console.log('This project includes:'); console.log(' ✓ 7 AI agents ready to work'); console.log(' ✓ Automatic Issue → PR pipeline'); console.log(' ✓ 53-label state machine'); console.log(' ✓ CI/CD automation'); console.log(''); console.log('Next steps:'); console.log(' 1. Create an issue: gh issue create --title "Your task"'); console.log(' 2. Watch agents work: npx miyabi status --watch'); console.log(' 3. Review the PR when ready'); console.log(''); console.log('Documentation: See CLAUDE.md and README.md'); export function hello(): string { return 'Hello from {{PROJECT_NAME}}!'; } // Example async function export async function main(): Promise { console.log('Starting application...'); // Your application logic here console.log('Application started successfully'); } // Run main if this is the entry point if (import.meta.url === `file://${process.argv[1]}`) { main().catch((error) => { console.error('Error:', error); process.exit(1); }); }