-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINFOGRAPHIC.html
More file actions
230 lines (210 loc) · 7.32 KB
/
INFOGRAPHIC.html
File metadata and controls
230 lines (210 loc) · 7.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MrIridescent ATS Architectural Infographic</title>
<style>
:root {
--bg: #0f172a;
--card-bg: #1e293b;
--primary: #38bdf8;
--secondary: #818cf8;
--accent: #f472b6;
--text: #f8fafc;
--text-muted: #94a3b8;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: var(--bg);
color: var(--text);
margin: 0;
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
background: linear-gradient(to right, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
}
.subtitle {
color: var(--text-muted);
margin-bottom: 3rem;
font-size: 1.1rem;
text-align: center;
}
.architecture-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
width: 100%;
max-width: 1200px;
}
.layer {
background: var(--card-bg);
border: 1px solid #334155;
border-radius: 1rem;
padding: 2rem;
position: relative;
transition: transform 0.3s ease, border-color 0.3s ease;
}
.layer:hover {
transform: translateY(-5px);
border-color: var(--primary);
}
.layer h2 {
font-size: 1.25rem;
margin-top: 0;
color: var(--primary);
display: flex;
align-items: center;
gap: 0.5rem;
}
.layer p {
font-size: 0.9rem;
line-height: 1.6;
color: var(--text-muted);
}
.component-list {
list-style: none;
padding: 0;
margin: 1.5rem 0 0 0;
}
.component-list li {
padding: 0.75rem;
background: #334155;
border-radius: 0.5rem;
margin-bottom: 0.5rem;
font-size: 0.85rem;
border-left: 3px solid var(--secondary);
}
.component-list li strong {
color: var(--text);
display: block;
margin-bottom: 0.25rem;
}
.arrow {
text-align: center;
font-size: 2rem;
color: var(--primary);
margin: 1rem 0;
}
.tag {
display: inline-block;
padding: 0.25rem 0.5rem;
background: #0ea5e9;
color: white;
border-radius: 0.25rem;
font-size: 0.7rem;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 1rem;
}
.footer {
margin-top: 4rem;
text-align: center;
color: var(--text-muted);
font-size: 0.9rem;
}
@media (max-width: 768px) {
body { padding: 20px; }
h1 { font-size: 1.75rem; }
}
</style>
</head>
<body>
<h1>MrIridescent ATS Architecture</h1>
<p class="subtitle">Multi-Agent Forensic Intelligence Ecosystem (Production-Ready)</p>
<div class="architecture-grid">
<!-- Layer 1: Frontend -->
<div class="layer">
<span class="tag">UI/UX Layer</span>
<h2>🖥️ Vanilla JS Frontend</h2>
<p>A high-performance, dark-themed interface built for rapid recruitment workflows.</p>
<ul class="component-list">
<li>
<strong>Modular JS Components</strong>
Asynchronous UI updates using Fetch API & localized state management.
</li>
<li>
<strong>Dynamic Visual Analytics</strong>
Chart.js integration for real-time candidate distribution mapping.
</li>
<li>
<strong>Session Persistence</strong>
Cookie-based authentication with secure local storage sync.
</li>
</ul>
</div>
<!-- Layer 2: API Gateway -->
<div class="layer">
<span class="tag">Gateway Layer</span>
<h2>⚡ FastAPI Backend</h2>
<p>The asynchronous heart of the system, managing routes and state.</p>
<ul class="component-list">
<li>
<strong>RESTful Endpoints</strong>
Full CRUD for JDs, Resumes, History, and User management.
</li>
<li>
<strong>Middleware Security</strong>
CORS handling, Session validation, and Error interception.
</li>
<li>
<strong>SQLAlchemy ORM</strong>
Database-agnostic layer (PostgreSQL/SQLite) with migration support.
</li>
</ul>
</div>
<!-- Layer 3: Intelligence -->
<div class="layer">
<span class="tag">AI Intelligence Layer</span>
<h2>🧠 CrewAI & spaCy</h2>
<p>The "Brains" of the system. We move beyond simple keywords to semantic intent.</p>
<ul class="component-list">
<li>
<strong>Agent Swarm (CrewAI)</strong>
Analyzer, Forensicist, and Auditor agents collaborating on validation.
</li>
<li>
<strong>Semantic Vector Engine</strong>
spaCy 'en_core_web_md' providing 300-dimensional word embeddings.
</li>
<li>
<strong>Multi-Backend Support</strong>
Seamless routing between Ollama (Local), Groq (Fast), and Perplexity (Research).
</li>
</ul>
</div>
<!-- Layer 4: Forensic Engine -->
<div class="layer">
<span class="tag">Forensic Layer</span>
<h2>🔍 Forensic Matching Engine</h2>
<p>Strict logic gates that verify professional claims against raw text evidence.</p>
<ul class="component-list">
<li>
<strong>Role-Tech Mapping</strong>
Verifies technology usage within specific professional time-frames.
</li>
<li>
<strong>Extraction Validation</strong>
Auditor Agent cross-checks structured JSON against raw text substrings.
</li>
<li>
<strong>Hallucination Defense</strong>
Proprietary logic to filter out "Optimized" but unverified resume text.
</li>
</ul>
</div>
</div>
<div class="footer">
<p>© 2026 David Akpoviroro Oke (MrIridescent). Built for the Creative Renaissance.</p>
<p>#DigitalPolymath #SystemsArchitect #PurpleTeamer</p>
</div>
</body>
</html>