From 4dae6701c2c86026f9d66647a32336e07cf44a4d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 06:25:08 +0000 Subject: [PATCH 1/2] Initial plan From c62b7517b58c3826830ca05c989b68e241e450bc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 06:30:55 +0000 Subject: [PATCH 2/2] Add four new slides at the start of the presentation deck Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/slides/index.md | 53 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/docs/slides/index.md b/docs/slides/index.md index 592c8cb218..047f2e1fa5 100644 --- a/docs/slides/index.md +++ b/docs/slides/index.md @@ -18,6 +18,59 @@ mermaid.initialize({ startOnLoad: true }); --- +# Software Engineer → Agentic Engineer + +| Software Engineer | Agentic Engineer | +|---|---| +| Writes code manually | Writes prompts & workflows | +| Reviews PRs | Reviews agent outputs | +| Runs CI/CD pipelines | Orchestrates AI agents | +| Debugging code | Debugging agent behavior | + +> The role evolves: from coding to orchestrating intelligent agents + +--- + +# Agentic Human Processes + +## Humans and AI collaborate at every stage + +- **Author** — Write natural language workflows +- **Reviewer** — Approve plans and validate outputs +- **Supervisor** — Monitor running agents and handle exceptions +- **Debugger** — Diagnose workflow behavior and improve prompts + +> The human stays in the loop while AI handles execution + +--- + +# Pull Request Process + +
+flowchart TD
+    PR["Pull Request Opened"] --> Activation["Activation Job\nAuthorize & Sanitize"]
+    Activation --> Agent["Agent Job\nAnalyze Changes"]
+    Agent --> SafeOutput["Safe Outputs Job\nPost Comment / Review"]
+    SafeOutput --> Human{"Human Review"}
+    Human -->|Approve| Merge["Merge PR"]
+    Human -->|"Request Changes"| Agent
+
+ +--- + +# Research → Plan → Act + +
+flowchart LR
+    Research["Research\nGather context\nAnalyze codebase"] --> Plan["Plan\nDefine approach\nCreate checklist"]
+    Plan --> Act["Act\nImplement changes\nCreate PR"]
+    Act --> Human{"Human Review"}
+    Human -->|Approved| Done["Done ✓"]
+    Human -->|"Revise"| Research
+
+ +--- + # Continuous Integration to Continuous AI - **Accessibility review** - Automated WCAG compliance checks