este agent quedo funcionando al 100 en local al menos
All checks were successful
build-and-deploy / filter (push) Successful in 2s
build-and-deploy / build (push) Successful in 48s
build-and-deploy / deploy (push) Successful in 27s

This commit is contained in:
2025-06-06 14:56:44 -06:00
parent 0ecb80d45a
commit b751cb2911
17 changed files with 315 additions and 59 deletions

View File

@@ -38,10 +38,15 @@ sync-to-gitea:
# Declaramos el target como PHONY ya que no corresponde a un archivo real (opcional pero recomendado)
.PHONY: UI agent
.PHONY: UI agent mcp api
UI:
cd ui && ( if not exist node_modules npm install ) && npm run dev
agent:
cd agent && npm install && npm run dev
mcp:
cd mcp && npm install && npm run dev
api:
cd api && npm install && npm run dev