Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions docs/slides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<pre class="mermaid">
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
</pre>

---

# Research → Plan → Act

<pre class="mermaid">
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
</pre>

---

# Continuous Integration to Continuous AI

- **Accessibility review** - Automated WCAG compliance checks
Expand Down
Loading