using System.Threading; using System.Threading.Tasks; namespace StellaOps.Interop; public interface IToolProcessRunner { Task RunAsync( string tool, string toolPath, string args, string workingDirectory, CancellationToken ct = default); }