agentic-ai-engineering/site/certificate.md

153 lines
3.9 KiB
Markdown

---
title: Certificate - Agentic Engineering the Hard Way
---
<div class="certificate-wrap">
<div class="certificate">
<div class="cert-ornament"></div>
<div class="cert-badge">&#9670;</div>
<div class="cert-label">Certificate of Completion</div>
<div class="cert-sub">This certifies that</div>
<div class="cert-name">____________________________</div>
<div class="cert-body">has successfully completed all requirements of the</div>
<div class="cert-course">Agentic Engineering<br>the Hard Way</div>
<div class="cert-details">
<span>65 lessons across 8 modules</span>
<span>13 hands-on labs</span>
<span>Production-grade capstone</span>
</div>
<div class="cert-footer">
<div class="cert-date">Date: <span>________________</span></div>
<div class="cert-seal">
<span class="material-symbols-outlined">verified</span>
<span>FDSA</span>
</div>
</div>
<div class="cert-verify">Verify at <strong>fdsa.agency/verify</strong></div>
</div>
</div>
## About the Certificate
This certificate verifies completion of the Agentic Engineering the Hard Way course, covering:
- **Agent Harness** (M1-M3): Foundations, architecture, safety & security
- **Software Factory** (M4): Multi-agent orchestration, teams, chains, P2P
- **Production Systems** (M5): CI/CD, observability, deployment, rollback
- **Model Economics** (M6): Cascade routing, pass@k evals, cost optimization
- **Advanced Patterns** (M7): Autoresearch, meta-agents, beyond MCP
- **Capstone** (M8): Production multi-agent system from scratch
## How to Get Your Certificate
1. Complete all 8 modules and 13 labs
2. Submit your capstone project for review
3. Email your submission to [artale@fdsa.agency](mailto:artale@fdsa.agency)
4. Receive your signed certificate within 48 hours
## Verification
Employers can verify certificates at `fdsa.agency/verify` using the certificate ID provided on each certificate.
<style>
.certificate-wrap {
display: flex;
justify-content: center;
margin: 32px 0 48px;
}
.certificate {
width: 100%;
max-width: 600px;
background: var(--vp-c-bg-soft);
border: 2px solid var(--vp-c-border);
border-radius: 16px;
padding: 48px 40px;
text-align: center;
position: relative;
overflow: hidden;
}
.cert-ornament {
position: absolute;
top: 0; left: 0; right: 0;
height: 6px;
background: linear-gradient(90deg, var(--vp-c-brand-1), var(--vp-c-brand-2), var(--vp-c-brand-1));
}
.cert-badge {
font-size: 32px;
color: var(--vp-c-brand-1);
margin-bottom: 8px;
}
.cert-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--vp-c-brand-1);
margin-bottom: 24px;
}
.cert-sub {
font-size: 13px;
color: var(--vp-c-text-2);
margin-bottom: 8px;
}
.cert-name {
font-size: 28px;
font-weight: 800;
color: var(--vp-c-text-1);
margin-bottom: 12px;
letter-spacing: -0.5px;
}
.cert-body {
font-size: 13px;
color: var(--vp-c-text-2);
margin-bottom: 20px;
}
.cert-course {
font-size: 24px;
font-weight: 800;
color: var(--vp-c-brand-1);
line-height: 1.2;
margin-bottom: 20px;
}
.cert-details {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 28px;
}
.cert-details span {
font-size: 11px;
color: var(--vp-c-text-3);
background: rgba(128,128,128,0.08);
padding: 4px 12px;
border-radius: 999px;
}
.cert-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 1px solid var(--vp-c-border);
}
.cert-date {
font-size: 12px;
color: var(--vp-c-text-2);
}
.cert-date span { color: var(--vp-c-text-1); }
.cert-seal {
display: flex;
align-items: center;
gap: 6px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--vp-c-brand-1);
}
.cert-verify {
font-size: 11px;
color: var(--vp-c-text-3);
margin-top: 16px;
}
</style>