agentic-ai-engineering/site/downloads.md

129 lines
3.1 KiB
Markdown

---
title: Downloads - Agentic Engineering the Hard Way
---
# Course Downloads
Welcome! Your purchase gives you access to all course materials below. Each package is a ZIP file — extract and start learning.
<div class="download-grid">
<div class="dl-card">
<span class="dl-icon material-symbols-outlined">package_2</span>
<h3>Full Course Package</h3>
<p class="dl-size">147 MB · 415 files</p>
<ul>
<li>8 modules (markdown + code examples)</li>
<li>13 labs (starter + solution files)</li>
<li>20 skill kits (7 categories)</li>
<li>Install scripts (PowerShell + bash)</li>
</ul>
<a href="/dist/course-only.zip" class="btn-p btn-primary">Download Course</a>
</div>
<div class="dl-card">
<span class="dl-icon material-symbols-outlined">workspace_premium</span>
<h3>Enterprise Bundle</h3>
<p class="dl-size">191 MB · all course + extras</p>
<ul>
<li>Everything in Full Course Package</li>
<li>Capstone reference implementation</li>
<li>Brand Monitor full source</li>
<li>All 7 skill kits as standalone ZIPs</li>
</ul>
<a href="/dist/enterprise.zip" class="btn-p btn-primary">Download Enterprise</a>
</div>
</div>
## Individual Skill Kits
| Kit | Size | Download |
|-----|------|----------|
| Security Foundation | 9 KB | [Download](/dist/security-foundation.zip) |
| Multi-Agent Orchestration | 7 KB | [Download](/dist/multi-agent-orch.zip) |
| Verifier Pro | 4 KB | [Download](/dist/verifier-pro.zip) |
| Task Discipline | 2 KB | [Download](/dist/task-discipline.zip) |
| Autoresearch | 3 KB | [Download](/dist/autoresearch.zip) |
| Observability | 2 KB | [Download](/dist/observability.zip) |
| CEO Board | 3 KB | [Download](/dist/ceo-board.zip) |
## Getting Started
```bash
# 1. Extract the course package
unzip course-only.zip -d agentic-engineering
cd agentic-engineering
# 2. Install dependencies
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install anthropic openai
# 3. Start with Lab 1
cd course/labs/L1-first-agent/
python starter.py test.txt "What is this file about?"
```
## Support
Questions? Email [artale@fdsa.agency](mailto:artale@fdsa.agency)
<style>
.download-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
margin: 32px 0;
}
.dl-card {
background: var(--vp-c-bg-soft);
border: 1px solid var(--vp-c-border);
border-radius: 12px;
padding: 28px;
}
.dl-icon {
font-size: 32px;
color: var(--vp-c-brand-1);
margin-bottom: 12px;
display: block;
}
.dl-card h3 {
font-size: 18px;
margin-bottom: 4px;
}
.dl-size {
font-size: 12px;
color: var(--vp-c-text-3);
margin-bottom: 16px;
}
.dl-card ul {
list-style: none;
padding: 0;
margin-bottom: 20px;
}
.dl-card li {
padding: 4px 0;
font-size: 13px;
color: var(--vp-c-text-2);
}
.dl-card li::before {
content: "→";
color: var(--vp-c-brand-1);
margin-right: 8px;
}
.btn-p {
display: inline-block;
padding: 12px 24px;
background: var(--vp-c-brand-1);
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
}
.btn-p:hover {
background: var(--vp-c-brand-3);
}
</style>