| 1 | namespace CascadeIDE.Services; |
| 2 | |
| 3 | /// <summary>AEE native tools (ADR 0148 W6, human–agent parity).</summary> |
| 4 | public static partial class IdeCommands |
| 5 | { |
| 6 | /// <summary>Verification ladder. args: policy:string, sandbox_profile:string, solution_path:string; returns: json; example: {"policy":"standard"}.</summary> |
| 7 | public const string IdeAgentVerify = "ide_agent_verify"; |
| 8 | /// <summary>Batch verify (W6): policy, sandbox_profile, solution_path, use_worktree. returns: json.</summary> |
| 9 | public const string IdeAgentVerifyBatch = "ide_agent_verify_batch"; |
| 10 | /// <summary>Cancel active verify. returns: json.</summary> |
| 11 | public const string IdeAgentCancel = "ide_agent_cancel"; |
| 12 | /// <summary>AEE status snapshot: active, run_id, verify_snapshot_id, policy, sandbox_profile, sandbox_run_directory, execution_channel (supervised build host kind), writes_invalidated_verify_epoch. returns: json.</summary> |
| 13 | public const string IdeAgentStatus = "ide_agent_status"; |
| 14 | /// <summary>Last verify run summary. returns: json.</summary> |
| 15 | public const string IdeAgentLast = "ide_agent_last"; |
| 16 | /// <summary>Prepare sandbox. args: profile:string, workspace_root:string; returns: json; example: {"profile":"agent_ephemeral"}.</summary> |
| 17 | public const string IdeAgentSandboxPrepare = "ide_agent_sandbox_prepare"; |
| 18 | } |
| 19 | |