@rotosaurio/sysrot-core
Version:
CLI de nueva generaciΓ³n para proyectos Next.js 14+ con IA multi-modelo, Web3 integration, internacionalizaciΓ³n completa y roadmap realista 2025-2026
727 lines (579 loc) β’ 26.6 kB
Markdown
# @rotosaurio/sysrot-core





<details>
<summary>π Multilingual Documentation</summary>
[](README.md)
[](README.es.md)
</details>
---
# π @rotosaurio/sysrot-core v0.8.2 - Next-Generation Development CLI
[](https://github.com/rotosaurio/@rotosaurio/sysrot-core/releases)
[](https://github.com/rotosaurio/@rotosaurio/sysrot-core)
## π Professional Next.js 14+ Template Generator
[](https://badge.fury.io/js/@rotosaurio/sysrot-core)
[](https://npmjs.com/package/@rotosaurio/sysrot-core)
## π Quick Start
```bash
npx sysrot my-project
```
π Command: `npx sysrot` | π¨ 11 Functional Examples | π€ 3 Integrated AI Models
---
### π― What Makes @rotosaurio/sysrot-core Special
π₯ **Professional from Day 1**: Every generated project is immediately functional and production-ready
π **Complete Internationalization**: Real i18n system with 350+ translation keys
π€ **Multi-AI Ready**: Integrated OpenAI GPT-4o, Claude 3.5, Google Gemini
π± **11 Functional Examples**: From authentication to AI chat and file uploads
π‘οΈ **Enterprise Security**: NextAuth.js, role-based access, protected routes
β‘ **Zero Configuration**: Start coding immediately after generation
## π Installation & Usage
```bash
npx @rotosaurio/@rotosaurio/sysrot-core my-project
cd my-project
npm run dev
```
π― **Perfect for**:
## β
LATEST VERSION 2.4.6 - PRODUCTION READY
### π― What Makes @rotosaurio/sysrot-core Special
- β
ZERO CONFIGURATION - Works immediately after installation
- β
AI-POWERED DEVELOPMENT - GPT-4o, Claude 3.5, Gemini integrated
- β
ENTERPRISE READY - Authentication, databases, internationalization
- β
CROSS-PLATFORM CLI - Windows, macOS, Linux support
- β
PRODUCTION OPTIMIZED - Perfect Core Web Vitals scores
### π Ultra-Fast Installation
```bash
npx @rotosaurio/@rotosaurio/sysrot-core my-project
cd my-project
npm run dev
# β
Running in 30 seconds!
```
---
## π Table of Contents
<details>
<summary><strong>π Documentation Sections (Click to expand)</strong></summary>
- [π€ Why Choose @rotosaurio/sysrot-core?](#-why-choose-@rotosaurio/sysrot-core)
- [π€ Core Features](#-core-features)
- [π Quick Start](#-quick-start)
- π€ What's Included
- π
Roadmap 2025-2026
- π Technical Documentation
- π€ Use Cases
- π€ Best Practices
- π€ Troubleshooting
- π€ Community
- π License
</details>
---
## π€ Why Choose @rotosaurio/sysrot-core?
In **2025**, modern web development demands tools that accelerate creation without compromising quality. **@rotosaurio/sysrot-core** delivers:
### π― Immediate Value
- π― Complete project in 30 seconds - From idea to running application
- π― 3 AI models integrated - GPT-4o, Claude 3.5 Sonnet, Gemini Pro
- π― 50+ production-ready components - Complete UI library included
- π€ Zero-config setup - Works perfectly from first `npm run dev`
### π€ Enterprise Architecture
- π― Complete authentication - NextAuth.js with multiple providers
- π€ Multiple databases - MongoDB, Supabase, Firebase, Prisma
- π― Full internationalization - Spanish/English with 350+ translations
- π― MDX blog system - Content management ready
### π― Modern Development
- π― TailwindCSS + shadcn/ui - Beautiful, accessible components
- π― Dark/Light themes - Automatic system detection
- π― Responsive design - Mobile-first approach
- π― Smooth animations - Framer Motion integrated
---
## π€ Core Features
### π€ AI Integration
| Provider | Model | Version | Capabilities |
|----------|-------|---------|-------------|
| **OpenAI** | GPT-4o | 4.24.1+ | Advanced reasoning, code generation |
| **Anthropic** | Claude 3.5 Sonnet | 0.12.0+ | Superior analysis, documentation |
| **Google** | Gemini Flash Pro | 0.2.0+ | Multimodal processing |
- **Unified interface** - Single component for all models
- **Real-time streaming** - Live responses with typing indicators
- **Automatic fallback** - Resilient error handling
- **Context switching** - Dynamic model selection
### π€ Authentication & Security
- **NextAuth.js v4.24.5** - Industry standard authentication
- **Multiple providers** - Google, GitHub, Email, custom
- **Role-based access** - Admin/user permissions
- **Route protection** - Automatic middleware protection
- **Password hashing** - bcryptjs encryption
- **Session management** - Secure token handling
### π€ Database Support
| Database | Client | Use Case |
|----------|--------|----------|
| **MongoDB** | Mongoose 8.0.3+ | Document storage, scalability |
| **Supabase** | @supabase/supabase-js 2.39.1+ | PostgreSQL as a service |
| **Firebase** | Firebase Admin 11.11.1+ | Real-time data, auth |
| **Prisma** | @prisma/client 5.8.1+ | Type-safe ORM |
### π― Internationalization
- **React Intl 6.6.2+** - Industry standard i18n
- **350+ translation keys** - Complete coverage
- **SEO-friendly URLs** - `/es/`, `/en/` routing
- **Automatic detection** - Browser language preference
- **TypeScript support** - Type-safe translations
### π€ UI & Design System
- **TailwindCSS 3.4.0+** - Utility-first CSS
- **shadcn/ui components** - Accessible, customizable
- **Framer Motion 10.16.16+** - Smooth animations
- **next-themes 0.2.1+** - Dark/light mode
- **Lucide React 0.312.0+** - Beautiful icons
---
## π Quick Start
### π Installation
```bash
# Create new project
npx @rotosaurio/@rotosaurio/sysrot-core my-awesome-app
# Navigate and start
cd my-awesome-app
npm run dev
```
### π Environment Setup
```bash
# Copy environment template
cp .env.example .env.local
# Add your API keys
# OPENAI_API_KEY=your_key_here
# NEXTAUTH_SECRET=your_secret_here
```
### π Available URLs
- **http://localhost:3000** - Main application
- **http://localhost:3000/examples** - Feature examples
- **http://localhost:3000/blog** - MDX blog
- **http://localhost:3000/es** - Spanish version
---
π€ What's Included
### π€ Project Structure
```
my-project/
+-- components/
π€ +-- ai/ # AI chat components
π€ +-- auth/ # Authentication forms
π€ +-- ui/ # Reusable UI components
π€ +-- upload/ # File upload system
π€ +-- providers/ # Context providers
+-- lib/
π€ +-- auth.ts # NextAuth configuration
π€ +-- db.ts # Database connections
π€ +-- i18n.ts # Internationalization
π€ +-- roles.ts # User roles
+-- pages/
π€ +-- api/ # Backend API routes
π€ +-- blog/ # MDX blog pages
π€ +-- ejemplos/ # Feature examples
π€ +-- index.tsx # Homepage
+-- locales/
π€ +-- en.json # English translations
π€ +-- es.json # Spanish translations
+-- posts/ # MDX blog posts
+-- prisma/ # Database schema
+-- styles/ # Global CSS
```
### π€ Example Pages
- **Authentication demo** - Login/register flows
- **AI integration** - Multi-model chat interface
- **Component showcase** - UI library examples
- **Form validation** - React Hook Form + Zod
- **Image upload** - Cloudinary integration
- **Database operations** - CRUD examples
- **Animation demos** - Framer Motion examples
- **Theme switching** - Dark/light mode
- **Internationalization** - Language switching
---
π
Roadmap 2025-2026
### π― Q1 2025 (January-March) - Web3 & Testing Foundation
**Goal: Blockchain Integration & Quality Assurance**
- π― Web3 Integration - Wallet connect, MetaMask, WalletConnect basic setup
- π― Automated testing - Jest unit tests, Cypress e2e tests
- π― Technical documentation - Detailed guides and advanced examples
- π― Performance optimization - Core Web Vitals and bundle optimization
- π― Testing suite - Component testing with React Testing Library
- π― CI/CD pipeline - GitHub Actions for automated testing
### π― Q2 2025 (April-June) - Integrations & Analytics
**Goal: Third-party Services & Business Intelligence**
- π― Analytics integration - Google Analytics 4, Vercel Analytics, Posthog
- π― Payment systems - Stripe integration with subscriptions
- π― Email services - SendGrid, Resend for transactional emails
- π― Real-time features - WebSockets for live chat and notifications
- π― Advanced animations - GSAP library integration
- π― Push notifications - Web Push API implementation
### π― Q3 2025 (July-September) - AI Enhancement & CMS
**Goal: Content Management & AI Expansion**
- π― Multi-modal AI - Image processing with OpenAI Vision
- π― CMS Integration - Contentful, Strapi headless CMS
- π― Web3 Advanced - Smart contract interaction, ENS domains
- π― PWA 3.0 - Advanced service workers, offline-first functionality
- π― Search features - Algolia integration for fast search
- π― A/B Testing - Feature flags and experiment tracking
### π― Q4 2025 (October-December) - Mobile & Performance
**Goal: Mobile Experience & Optimization**
- π― Mobile-first optimizations - Touch gestures, mobile navigation
π€ Edge Runtime - Vercel Edge Functions integration
- π― Global CDN - Multi-region deployment strategies
π€ Desktop PWA - Electron-like desktop app capabilities
- π― Team collaboration - Real-time collaborative editing
- π― Advanced security - 2FA, RBAC, security headers
### π― 2026 - Advanced Features
**Goal: Modern Web Technologies**
- π― AI Code Generation - Component and page auto-generation
- π― WebGL/Three.js - 3D graphics and interactive experiences
- π― Web3 DeFi - DeFi protocols integration for payments
- π― IoT Integration - Basic IoT device connectivity
- π― Design system - Automatic component library generation
- π― Vector search - AI-powered content search with embeddings
### π― Goals and Metrics 2025
**Realistic and Achievable Targets**
- π― 50,000+ projects generated with @rotosaurio/sysrot-core
- π― 15+ supported languages in i18n system
- π― 10+ integrated AI models (LLaMA, Mistral, etc.)
π€ <100ms time-to-interactive in generated applications
- π― Perfect Core Web Vitals (100/100/100/100)
- π― Zero security vulnerabilities reported
π€ Technologies Under Research
**Near-term Implementable Technologies**
- **Rust/WASM** for high-performance components
- **WebGPU** for advanced graphic acceleration
- **WebCodecs** for optimized multimedia processing
- π€ Origin Private File System for advanced local storage
- π€ Temporal API for precise temporal handling
- π€ Navigation API for advanced SPA routing
> π― Note: This roadmap is dynamic and updated quarterly based on community feedback and technological advances. We focus on practical, implementable goals that provide real value to developers.
---
π Technical Documentation
### π€ Technology Stack
π€ Core Framework
| Component | Technology | Version | Purpose |
|-----------|------------|---------|---------|
| **Framework** | Next.js | 14.2.17+ | Full-stack React framework with SSR/SSG |
| **Language** | TypeScript | 5.3.3+ | Type-safe development with strict mode |
| **Runtime** | Node.js | 18+ | JavaScript execution environment |
| **UI Library** | React | 18.2.0+ | Component-based UI library |
| **Styling** | TailwindCSS | 3.4.0+ | Utility-first CSS framework |
| **Components** | shadcn/ui | Latest | Accessible, customizable components |
π€ AI Integration Stack
| Provider | Model | SDK Version | Capabilities |
|----------|-------|-------------|-------------|
| **OpenAI** | GPT-4o | openai@4.24.1 | Advanced text generation, code completion, reasoning |
| **Anthropic** | Claude 3.5 Sonnet | @anthropic-ai/sdk@0.12.0 | Superior analysis, long-form content, ethical AI |
| **Google** | Gemini Flash Pro | @google/generative-ai@0.2.0 | Multimodal processing, fast responses, image analysis |
π€ Authentication & Security Stack
| Component | Technology | Version | Purpose |
|-----------|------------|---------|---------|
| **Auth Provider** | NextAuth.js | 4.24.5 | Complete authentication framework |
| **Password Hashing** | bcryptjs | 2.4.3 | Secure password storage with salt |
| **Database Adapter** | @auth/prisma-adapter | 1.5.0 | Session and user persistence |
| **Route Protection** | Custom Middleware | - | Automatic access control |
π€ Database Ecosystem
| Database | Client/ORM | Version | Use Cases |
|----------|------------|---------|-----------|
| **MongoDB** | Mongoose | 8.0.3+ | Document storage, flexibility, scalability |
| **Supabase** | @supabase/supabase-js | 2.39.1+ | PostgreSQL as a service with real-time |
| **Firebase** | Firebase Admin | 11.11.1+ | Real-time data, social authentication |
| **Prisma** | @prisma/client | 5.8.1+ | Type-safe ORM with automatic migrations |
### π€ Environment Configuration
π€ Essential Variables
```env
# Core Application
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your_ultra_secure_secret_minimum_32_characters_long
# AI Service Keys
OPENAI_API_KEY=sk-proj-your_openai_key_here
ANTHROPIC_API_KEY=sk-ant-api03-your_claude_key_here
GOOGLE_API_KEY=your_google_ai_key_here
# File Upload (Cloudinary)
CLOUDINARY_CLOUD_NAME=your_cloud_name
CLOUDINARY_API_KEY=your_cloudinary_api_key
CLOUDINARY_API_SECRET=your_cloudinary_api_secret
```
π€ Database Configuration (Choose One)
```env
# MongoDB
MONGODB_URI=mongodb+srv://username:password@cluster.mongodb.net/database
# Supabase (PostgreSQL)
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_public_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key
# Firebase
FIREBASE_PROJECT_ID=your-firebase-project-id
FIREBASE_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nYOUR_PRIVATE_KEY\n-----END PRIVATE KEY-----\n"
FIREBASE_CLIENT_EMAIL=firebase-adminsdk@your-project.iam.gserviceaccount.com
# PostgreSQL with Prisma
DATABASE_URL="postgresql://username:password@localhost:5432/database?schema=public"
```
### π€ Performance Metrics & Optimization
π€ Core Web Vitals Targets
- **LCP (Largest Contentful Paint)**: < 2.5s (Target: < 1.5s)
- **FID (First Input Delay)**: < 100ms (Target: < 50ms)
- **CLS (Cumulative Layout Shift)**: < 0.1 (Target: < 0.05)
- **FCP (First Contentful Paint)**: < 1.8s (Target: < 1.2s)
- **TTI (Time to Interactive)**: < 3.5s (Target: < 2.5s)
π€ Built-in Optimizations
- **Automatic Image Optimization** - Next.js Image with WebP/AVIF
- **Intelligent Bundle Splitting** - Lazy loading with React.lazy()
- **Font Optimization** - Google Fonts with preloading
- **Code Splitting** - Component-level lazy loading
- **Tree Shaking** - Automatic unused code elimination
- **Compression** - Gzip/Brotli enabled by default
---
π€ Use Cases & Applications
### π€ Enterprise Applications
- **SaaS Platforms** - Multi-tenant applications with billing and analytics
- **E-commerce Sites** - Online stores with AI-powered recommendations
- **Content Management Systems** - Editorial platforms with workflow
- **Corporate Websites** - International business presence with CMS
- **Learning Management Systems** - Educational platforms with progress tracking
### π€ Startup & MVP Development
- **Rapid Prototyping** - From concept to functional demo in hours
- **Market Validation** - Quick feature testing with real users
- **Investor Presentations** - Professional applications for funding rounds
- **Product Hunt Launches** - Launch-ready applications with polish
- **Technical Interviews** - Impressive portfolio projects
### π€ Creative & Portfolio Projects
- **Developer Portfolios** - Showcase skills with interactive demos
- **Design Agency Websites** - Creative business presence
- **Digital Magazines** - Content-rich publications with CMS
- **Art Galleries** - Visual portfolio platforms with image optimization
- **Technical Blogs** - Developer content with MDX and syntax highlighting
### π€ AI-Powered Applications
- **Custom ChatBots** - Domain-specific virtual assistants
- **Content Generation Tools** - Automated blog writing, social media
- **Code Assistants** - Programming help and code review tools
- **Language Learning Apps** - AI tutoring with conversation practice
- **Data Analysis Platforms** - Intelligent reporting and insights
---
π€ Best Practices & Architecture
π€ Recommended Project Structure
```typescript
src/
+-- components/
π€ +-- ui/ # Base UI components (Button, Input, etc.)
π€ +-- forms/ # Form-specific components
π€ +-- layout/ # Layout components (Header, Footer, Sidebar)
π€ +-- features/ # Feature-specific components
π€ +-- providers/ # Context providers (Auth, Theme, etc.)
+-- hooks/ # Custom React hooks
+-- lib/ # Utilities and configurations
π€ +-- auth.ts # Authentication configuration
π€ +-- db.ts # Database connections
π€ +-- api.ts # API utilities
π€ +-- validations.ts # Zod schemas
+-- styles/ # Global styles and themes
+-- types/ # TypeScript type definitions
+-- utils/ # Helper functions
+-- constants/ # Application constants
```
π€ Performance Best Practices
```typescript
// Component lazy loading
const LazyComponent = React.lazy(() => import('./HeavyComponent'));
// Image optimization
import Image from 'next/image';
<Image
src="/hero-image.jpg"
alt="Description"
width={800}
height={600}
priority // For above-the-fold images
placeholder="blur"
/>
// Bundle analysis
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer(nextConfig);
```
π€ Security Implementation
```typescript
// Input validation with Zod
import { z } from 'zod';
const userSchema = z.object({
email: z.string().email().max(100),
password: z.string().min(8).max(100).regex(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/),
role: z.enum(['user', 'admin']).default('user')
});
// Rate limiting middleware
import rateLimit from 'express-rate-limit';
const limiter = rateLimit({
windowMs: 15 * 60 * 1000, // 15 minutes
max: 100, // limit each IP to 100 requests per windowMs
message: 'Too many requests, please try again later.'
});
// CSRF protection
import { getCsrfToken } from 'next-auth/react';
```
π€ Internationalization Best Practices
```json
{
"pages": {
"home": {
"title": "Welcome to @rotosaurio/sysrot-core",
"description": "Next-generation development platform",
"hero": {
"title": "Build Amazing Apps",
"subtitle": "In seconds, not hours"
}
}
},
"components": {
"navigation": {
"home": "Home",
"about": "About",
"contact": "Contact",
"login": "Sign In",
"logout": "Sign Out"
}
},
"forms": {
"validation": {
"required": "This field is required",
"email": "Please enter a valid email address",
"password": "Password must be at least 8 characters"
}
}
}
```
---
π€ Troubleshooting Guide
π€ Common Issues & Solutions
π€ CLI Installation Problems
```bash
# Error: "Cannot find module 'commander'"
npm uninstall -g @rotosaurio/sysrot-core
npm cache clean --force
npm install -g @rotosaurio/sysrot-core@latest
# Permission errors on macOS/Linux
sudo npm install -g @rotosaurio/sysrot-core
# Windows execution policy error
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
```
π€ Translation & i18n Errors
```bash
# Error: "Missing translation for key"
# Verify both locales/en.json and locales/es.json have matching structure
# Debug translation loading
console.log('Available translations:', Object.keys(messages));
console.log('Current locale:', router.locale);
```
π€ Database Connection Issues
```bash
# Prisma connection problems
npx prisma generate
npx prisma db push
npx prisma studio # Open database browser
# MongoDB connection testing
mongosh "your_mongodb_uri" --eval "db.runCommand('ping')"
# Supabase connection verification
# Check project settings in Supabase dashboard
# Verify API keys and project URL
```
π€ Build & Deployment Failures
```bash
# Clean build cache and dependencies
rm -rf .next node_modules package-lock.json
npm install
npm run build
# TypeScript compilation errors
npx tsc --noEmit --skipLibCheck
# Environment variables in production
# Ensure all required env vars are set in deployment platform
```
π€ Advanced Debugging
π€ Environment Variables Debug
```javascript
// Add to pages/_app.tsx for development debugging
if (process.env.NODE_ENV === 'development') {
console.log('Environment Check:', {
NODE_ENV: process.env.NODE_ENV,
NEXTAUTH_URL: process.env.NEXTAUTH_URL,
hasOpenAI: !!process.env.OPENAI_API_KEY,
hasCloudinary: !!process.env.CLOUDINARY_CLOUD_NAME,
hasDatabase: !!(process.env.DATABASE_URL || process.env.MONGODB_URI)
});
}
```
π€ Performance Monitoring Setup
```javascript
// pages/_app.tsx
import { getCLS, getFID, getFCP, getLCP, getTTFB } from 'web-vitals';
export function reportWebVitals(metric) {
// Log to console in development
if (process.env.NODE_ENV === 'development') {
console.log('Web Vital:', metric);
}
// Send to analytics in production
if (process.env.NODE_ENV === 'production') {
// Send to Google Analytics, Vercel Analytics, etc.
gtag('event', metric.name, {
event_category: 'Web Vitals',
value: Math.round(metric.value),
metric_id: metric.id,
});
}
}
```
---
π€ Community & Support
π€ Get Help & Connect
- π€ Issues: [GitHub Issues](https://github.com/rotosaurio/@rotosaurio/sysrot-core/issues) - Bug reports and feature requests
- π€ Discussions: [GitHub Discussions](https://github.com/rotosaurio/@rotosaurio/sysrot-core/discussions) - Community Q&A
- π€ Email: contact@@rotosaurio/sysrot-core.dev - Direct support and partnerships
- π€ Twitter: [@@rotosaurio/sysrot-core](https://twitter.com/@rotosaurio/sysrot-core) - Updates and announcements
- π€ Discord: [@rotosaurio/sysrot-core Community](https://discord.gg/@rotosaurio/sysrot-core) - Real-time chat
π€ Contributing to @rotosaurio/sysrot-core
π€ Development Setup
```bash
# 1. Fork the repository on GitHub
# 2. Clone your fork
git clone https://github.com/yourusername/@rotosaurio/sysrot-core.git
cd @rotosaurio/sysrot-core
# 3. Install dependencies
npm install
# 4. Create a feature branch
git checkout -b feature/amazing-new-feature
# 5. Make your changes and test
npm test
npm run lint
# 6. Commit with conventional commits
git commit -m "feat: add amazing new feature"
# 7. Push and create pull request
git push origin feature/amazing-new-feature
```
π€ Contribution Guidelines
- **Conventional Commits** - Use standard commit message format
- **TypeScript Strict Mode** - Maintain type safety throughout
- **Test Coverage** - Add tests for new features and bug fixes
- **Documentation** - Update README and docs for significant changes
- **Code Review** - All PRs require review from maintainers
π€ Sponsors & Strategic Partners
- π€ Vercel - Deployment platform and hosting partnership
- π€ Tailwind CSS - Official UI framework collaboration
- π€ OpenAI - AI integration and API support
- π€ Supabase - Database platform sponsorship
- π€ Cloudinary - Media management and optimization partnership
- π€ GitHub - Code hosting and CI/CD integration
π€ Project Metrics & Statistics
- π€ GitHub Stars: 2,500+ (Growing rapidly)
- π€ NPM Downloads: 50,000+ monthly downloads
- π€ Global Usage: Projects created in 150+ countries
- π€ Active Contributors: 50+ community contributors
- π€ Performance: 98% of generated projects pass Core Web Vitals
---
π€ Version History
### **Version 2.4.4** (Current) π€
- π€ COMPREHENSIVE DOCUMENTATION: Enterprise-level documentation with 1000+ lines
- π€ REALISTIC ROADMAP: Practical planning through 2026 with achievable goals
- π€ DETAILED USE CASES: 16+ documented application scenarios
- π€ BEST PRACTICES: Complete architecture and security guidelines
- π€ COMMUNITY FEATURES: Enhanced support channels and contribution guides
- π€ TECHNICAL SPECIFICATIONS: Complete technology stack documentation
### **Version 2.3.6**
- π€ COMPLETE TRANSLATIONS: All missing translations added and verified
- π€ COMPILATION FIX: Removed duplicate `useTranslation` import causing build errors
- π€ PAGE CORRECTIONS: Fixed `/en/ejemplos/notificaciones` and `/en/ejemplos/database`
- π€ ROBUST i18n: 350+ translation keys in Spanish and English
### **Version 2.3.5**
- π€ CRITICAL CLI FIX: Added missing `commander` and `inquirer`