package shell import "fmt" // Implementation: github.com/lucasdataproyects/devfactory/shell // RunPipe encadena multiples comandos con pipe y devuelve el resultado final. func RunPipe(commands ...string) (CmdResult, error) { // stub — implementation in devfactory/shell return CmdResult{}, fmt.Errorf("not implemented") }