package shell import "fmt" // Implementation: github.com/lucasdataproyects/devfactory/shell // Run ejecuta un comando del sistema con timeout de 30 segundos y devuelve el resultado. func Run(name string, args ...string) (CmdResult, error) { // stub — implementation in devfactory/shell return CmdResult{}, fmt.Errorf("not implemented") }