forked from HAL9000/cleveragents-core
2a1c9c5483
The GitWorktreeSandbox implementation (PR #5998) creates worktrees in the system temp directory using tempfile.mkdtemp() with the prefix ca-sandbox-<plan_id>-, producing paths like: /tmp/ca-sandbox-01HXM8C2ZK4Q7C2B3F2R4VYV6J-XXXXXX/ The spec previously showed the worktree path as a .worktrees/ subdirectory inside the repository (e.g., /repos/api/.worktrees/plan-01HXM8). This was incorrect and inconsistent with the implementation. Changes: - Update all plan execute output examples (Rich/Plain/JSON/YAML) to show the correct /tmp/ca-sandbox-<PLAN_ULID>-XXXXXX/ path format - Update the end-to-end workflow examples (strategize + execute panels) - Add explicit documentation of the git worktree path format in the Sandbox Implementation Strategies section, including rationale - Add a changelog entry documenting the specification correction Fixes: #6343 Triggered by: merged PR #5998 (GitWorktreeSandbox implementation)