From e71b31928bd4ee9a11d57329dbcd688c69987f4d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 18:17:09 +0000 Subject: [PATCH 1/2] Initial plan From 70e8888bbed0e90f4f720a6c32611d382aec6230 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 18:18:42 +0000 Subject: [PATCH 2/2] Add artifacts directory creation step to plan-export example Co-authored-by: blindzero <13959569+blindzero@users.noreply.github.com> Agent-Logs-Url: https://github.com/blindzero/IdentityLifecycleEngine/sessions/e5c5328f-b18f-4a8b-8089-5f5e20558ddf --- docs/use/plan-export.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/use/plan-export.md b/docs/use/plan-export.md index eaefa8ef..0580ace0 100644 --- a/docs/use/plan-export.md +++ b/docs/use/plan-export.md @@ -29,6 +29,9 @@ $request = New-IdleRequest -LifecycleEvent 'Joiner' -CorrelationId (New-Guid) -I $plan = New-IdlePlan -WorkflowPath ./workflows/joiner.psd1 -Request $request +# Create the output directory if it does not already exist +New-Item -ItemType Directory -Force -Path ./artifacts | Out-Null + Export-IdlePlan -Plan $plan -Path ./artifacts/plan.json ```