package cli import "git.cloudinit.dev/coreci/orca/internal/osdetect" // detectOS reads /etc/os-release and returns the ID= value. // Delegates to internal/osdetect to avoid import cycles with // internal/doctor (both need OS detection). func detectOS() string { return osdetect.Detect() }