@@ -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