feat(worker): WindowsTerminalPlanningLauncher with pre-flight checks
This commit is contained in:
12
src/ClaudeDo.Worker/Planning/IPlanningTerminalLauncher.cs
Normal file
12
src/ClaudeDo.Worker/Planning/IPlanningTerminalLauncher.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace ClaudeDo.Worker.Planning;
|
||||
|
||||
public interface IPlanningTerminalLauncher
|
||||
{
|
||||
Task LaunchStartAsync(PlanningSessionStartContext ctx, CancellationToken cancellationToken);
|
||||
Task LaunchResumeAsync(PlanningSessionResumeContext ctx, CancellationToken cancellationToken);
|
||||
}
|
||||
|
||||
public sealed class PlanningLaunchException : Exception
|
||||
{
|
||||
public PlanningLaunchException(string message) : base(message) { }
|
||||
}
|
||||
Reference in New Issue
Block a user