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:
@@ -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 ':'
|
||||
Reference in New Issue
Block a user