Spawns Windows Terminal in the list working directory running `claude --permission-mode auto` with the task title and description prefilled as the initial prompt. Reuses the planning launcher infrastructure but skips worktree, system prompt, and MCP setup. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
7 lines
153 B
C#
7 lines
153 B
C#
namespace ClaudeDo.Worker.Planning;
|
|
|
|
public sealed record InteractiveLaunchContext(
|
|
string TaskId,
|
|
string WorkingDir,
|
|
string InitialPrompt);
|