Skip to content

Commit 4204106

Browse files
authored
slides: add Software Engineer → Agentic Engineer, Agentic Human Processes, and two Mermaid diagrams (#21750)
1 parent 63844b8 commit 4204106

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

docs/slides/index.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,59 @@ mermaid.initialize({ startOnLoad: true });
1818

1919
---
2020

21+
# Software Engineer → Agentic Engineer
22+
23+
| Software Engineer | Agentic Engineer |
24+
|---|---|
25+
| Writes code manually | Writes prompts & workflows |
26+
| Reviews PRs | Reviews agent outputs |
27+
| Runs CI/CD pipelines | Orchestrates AI agents |
28+
| Debugging code | Debugging agent behavior |
29+
30+
> The role evolves: from coding to orchestrating intelligent agents
31+
32+
---
33+
34+
# Agentic Human Processes
35+
36+
## Humans and AI collaborate at every stage
37+
38+
- **Author** — Write natural language workflows
39+
- **Reviewer** — Approve plans and validate outputs
40+
- **Supervisor** — Monitor running agents and handle exceptions
41+
- **Debugger** — Diagnose workflow behavior and improve prompts
42+
43+
> The human stays in the loop while AI handles execution
44+
45+
---
46+
47+
# Pull Request Process
48+
49+
<pre class="mermaid">
50+
flowchart TD
51+
PR["Pull Request Opened"] --> Activation["Activation Job\nAuthorize & Sanitize"]
52+
Activation --> Agent["Agent Job\nAnalyze Changes"]
53+
Agent --> SafeOutput["Safe Outputs Job\nPost Comment / Review"]
54+
SafeOutput --> Human{"Human Review"}
55+
Human -->|Approve| Merge["Merge PR"]
56+
Human -->|"Request Changes"| Agent
57+
</pre>
58+
59+
---
60+
61+
# Research → Plan → Act
62+
63+
<pre class="mermaid">
64+
flowchart LR
65+
Research["Research\nGather context\nAnalyze codebase"] --> Plan["Plan\nDefine approach\nCreate checklist"]
66+
Plan --> Act["Act\nImplement changes\nCreate PR"]
67+
Act --> Human{"Human Review"}
68+
Human -->|Approved| Done["Done ✓"]
69+
Human -->|"Revise"| Research
70+
</pre>
71+
72+
---
73+
2174
# Continuous Integration to Continuous AI
2275

2376
- **Accessibility review** - Automated WCAG compliance checks

0 commit comments

Comments
 (0)