package shell import "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) Result[CmdResult] { // stub — implementation in devfactory/shell return Result[CmdResult]{} }