package shell import ( "fmt" "time" ) // Implementation: github.com/lucasdataproyects/devfactory/shell // RunShellTimeout ejecuta un comando shell con timeout configurable. func RunShellTimeout(command string, timeout time.Duration) (CmdResult, error) { // stub — implementation in devfactory/shell return CmdResult{}, fmt.Errorf("not implemented") }