- Add CLAUDE.md with project-specific instructions - Add .trae/rules/ and AGENT-CAPABILITIES.md - Add .windsurf/rules/ and AGENT-CAPABILITIES.md - Add .gemini/antigravity/README.md - Stack: Express.js 5.0.1 + React 18.2.0 + Python/FastAPI (hybrid) - Type: STANDALONE (no propagation) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
76 lines
1.6 KiB
Markdown
76 lines
1.6 KiB
Markdown
# Agent Capabilities - Trae IDE (Trading Platform)
|
|
|
|
**Proyecto:** trading-platform
|
|
**Versión:** 1.0.0
|
|
**Sistema:** SIMCO v4.0.0
|
|
|
|
---
|
|
|
|
## Herencia
|
|
|
|
Este archivo extiende:
|
|
- `workspace-v2/.trae/rules.md`
|
|
- `workspace-v2/orchestration/agents/configs/SHARED-PLATFORM-CONFIG.yml`
|
|
|
|
---
|
|
|
|
## Capacidades en este Proyecto
|
|
|
|
### Operaciones Permitidas
|
|
|
|
| Operación | Status | Notas |
|
|
|-----------|--------|-------|
|
|
| Crear módulos backend (TS) | ✅ | Express.js en apps/backend/ |
|
|
| Crear componentes frontend | ✅ | React en apps/frontend/ |
|
|
| Modificar ML engine (Python) | ✅ | FastAPI en apps/ml-engine/ |
|
|
| Crear MCPs | ✅ | Servicios MCP en raíz |
|
|
| Modificar DDL | ✅ | Con validación de coherencia |
|
|
| Escribir tests | ✅ | Jest (TS) + Pytest (Python) |
|
|
| Git operations | ✅ | Commit, push, pull |
|
|
|
|
### Limitaciones Específicas
|
|
|
|
1. **NO ejecutar** trades reales en desarrollo
|
|
2. **NO usar** API keys de producción
|
|
3. **NO mezclar** código TypeScript y Python en mismo servicio
|
|
|
|
---
|
|
|
|
## Validaciones Requeridas
|
|
|
|
Antes de marcar tarea como completada:
|
|
|
|
```bash
|
|
# Backend TypeScript
|
|
cd apps/backend
|
|
npm run build
|
|
npm run lint
|
|
npm run test
|
|
|
|
# Frontend
|
|
cd apps/frontend
|
|
npm run build
|
|
npm run lint
|
|
|
|
# ML Engine (Python)
|
|
cd apps/ml-engine
|
|
python -m pytest
|
|
```
|
|
|
|
---
|
|
|
|
## Contexto del Proyecto
|
|
|
|
- **12 apps/módulos** en monorepo
|
|
- **9 epics** en desarrollo
|
|
- **Arquitectura híbrida** TypeScript + Python
|
|
- **Tipo** STANDALONE (independiente)
|
|
|
|
---
|
|
|
|
## Quick Reference
|
|
|
|
- CLAUDE.md: `projects/trading-platform/CLAUDE.md`
|
|
- Rules: `projects/trading-platform/.trae/rules/project_rules.md`
|
|
- Docs: `projects/trading-platform/docs/`
|