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