Nano Banana Pro
Agent skill for nano-banana-pro
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
MagicAI v8.70 is a Laravel-based AI SaaS platform that integrates multiple AI providers to offer text generation, image creation, voice synthesis, and chat functionality. It uses a modular extension system for features and supports multiple payment gateways with subscription management.
npm install # Install frontend dependencies npm run dev # Start Vite dev server with HMR npm run build # Build production assets npm run lint # Run ESLint on resources/views/page
composer install # Install PHP dependencies php artisan serve # Start development server php artisan migrate # Run database migrations php artisan db:seed # Seed the database php artisan storage:link # Create storage symlink
composer test # Run Pest tests with parallel execution composer test:coverage # Run tests with code coverage php artisan test # Run custom test command
composer lint # Format PHP code with Laravel Pint composer test:lint # Test code style without changes npm run lint # Lint JavaScript files
php artisan cache:clear php artisan config:clear php artisan route:clear php artisan view:clear php artisan optimize:clear
php artisan queue:work # Process queue jobs php artisan schedule:run # Run scheduled tasks
The application uses a modular extension architecture located in
/app/Extensions/. Each extension:
/app/Providers/Multiple AI providers are integrated through a unified service layer:
/app/Services/AI/ handle provider-specific logic/config/ for each provider/config/payment.phpImportant maintenance commands:
app:check-subscription-end - Monitor expired subscriptionsapp:check-[gateway] - Check payment gateway statusesapp:clear-* - Various data cleanup commandsKey environment variables to configure:
When modifying or creating extensions:
When adding new AI features:
/app/Services/AI//config//tests//coverage/