feat: añadir skills create-tui, init-frontend, init-go-module y utilidades

Nuevas skills para crear TUIs, inicializar frontends React y módulos Go.
Incluye binario parallel-executor y utilidades de soporte.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-27 02:15:34 +01:00
parent 8055ec216e
commit c36aa18c67
20 changed files with 4276 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
.PHONY: build test clean install
BIN := parallel-executor
BUILD_DIR := ../../bin
## build: Compila el binario
build:
@mkdir -p $(BUILD_DIR)
go build -trimpath -ldflags="-s -w" -o $(BUILD_DIR)/$(BIN) .
@echo "✓ Built $(BUILD_DIR)/$(BIN)"
## test: Ejecuta tests
test:
go test ./core/... -v
## clean: Elimina artefactos
clean:
rm -f $(BUILD_DIR)/$(BIN)
## install: Copia binario a la skill
install: build
@echo "✓ Binary at $(BUILD_DIR)/$(BIN)"
@echo " Use: $(BUILD_DIR)/$(BIN) --help"
## tidy: go mod tidy
tidy:
go mod tidy
## help: Muestra ayuda
help:
@grep -E '^## ' Makefile | sed 's/## //' | column -t -s ':'