Autonomous AI trading agents powered by Claude + Coinbase.
├── src/
│ ├── layouts/
│ │ └── Layout.astro # Base con Tailwind + tipografías
│ ├── pages/
│ │ ├── index.astro # Landing page + login
│ │ ├── dashboard.astro # Dashboard principal
│ │ ├── settings.astro # Configuración + API Keys
│ │ ├── demo.astro # Modo paper trading
│ │ ├── agents.astro # Gestión de agentes MCP
│ │ └── auth/
│ │ └── callback.astro # Callback OAuth Coinbase
│ ├── components/
│ │ ├── common/
│ │ │ └── GlassCard.astro # Componente reutilizable
│ │ ├── auth/
│ │ │ └── CoinbaseLogin.astro # Botón login OAuth
│ │ └── dashboard/
│ │ ├── BalanceHero.astro
│ │ ├── AssetList.astro
│ │ ├── AIPanel.astro
│ │ └── TradeHistory.astro
│ └── styles/
│ └── global.css # Estilos base + animaciones
npm install
npm run dev