flowchart LR
%% Compact workflow with explicit checks
G[Goal]
P[Prompt]
A[AI generates<br/>code]
R[Review &<br/>Read]
S[Security<br/>check]
X[Accessibility<br/>check]
T[Test / Run]
D{Pass?}
C[Commit &<br/>Doc]
G --> P --> A --> R --> S --> X --> T --> D
D -->|Yes| C
D -->|No| P
%% smaller font for slide compactness
classDef smallfont font-size:12px;
class G,P,A,R,S,X,T,D,C smallfont