agentic-ai-engineering/site/buy.md

132 lines
4.2 KiB
Markdown

# Buy
<div class="payment-note">
<span class="material-symbols-outlined">lock</span>
Secure checkout — Stripe + Gumroad
</div>
## Choose Your Tier
<div class="tier-grid">
### Self-Paced — **$97**
Best for independent learners.
- 65 lessons across 8 modules
- 13 scaffolded labs with solutions
- 56 quiz questions with answer keys
- 20 production-ready SKILL.md files (7 kits)
- Install scripts (PowerShell + bash)
- Capstone reference implementation
- Mock LLM for offline lab execution
- Instant download (9 ZIP packages)
<a href="/checkout?plan=self-paced" class="btn-p btn-primary">Buy with Card — $97</a>
<a href="https://gumroad.com/l/fdsa-agentic-selfpaced" class="btn-p btn-ghost">Buy via Gumroad</a>
### Enterprise — **$199**
Best for teams and organizations.
Everything in Self-Paced, plus:
- Private Discord channel
- 2 custom skills tailored to your stack
- 1-hour onboarding call
- Priority updates for 1 year
- Early access to new skill kits
<a href="/checkout?plan=enterprise" class="btn-p btn-primary">Buy with Card — $199</a>
<a href="https://gumroad.com/l/fdsa-agentic-enterprise" class="btn-p btn-ghost">Buy via Gumroad</a>
### Cohort — **$247** (Next cohort: TBD)
Best for structured learning with deadlines.
Everything in Enterprise, plus:
- 6-week structured schedule with weekly milestones
- Weekly live office hours
- Peer review of capstone project
- Completion certificate
- Cohort alumni network
<a href="/checkout?plan=cohort" class="btn-p btn-primary">Buy with Card — $247</a>
<a href="https://gumroad.com/l/fdsa-agentic-cohort" class="btn-p btn-ghost">Buy via Gumroad</a>
</div>
---
## Individual Skill Kits
Not ready for the full course? Buy individual kits:
| Kit | Price | What's Included |
|-----|-------|-----------------|
| Security Foundation | $49 | L3-L5 hooks, damage control, sandbox |
| Multi-Agent Orch. | $49 | Teams, chains, mental models, domain locks |
| Verifier Pro | $39 | Builder + verifier, claim decomposition |
| Task Discipline | $29 | TillDone core + progress + nudge |
| Autoresearch | $39 | Experiment loop, integrity guards |
| Observability | $29 | SQLite tracing, cost tracking |
| CEO Board | $49 | 11 agent definitions + verifier |
*Skill kits coming soon to Stripe. For now, [contact us](mailto:artale@fdsa.agency) to purchase individual kits.*
---
## What Happens After Purchase
1. **Instant redirect** to Stripe Checkout — pay with any card
2. **Download delivered** immediately after payment via email
3. **Enterprise/Cohort** — follow-up email within 24hrs with Discord invite
4. **Updates** — lifetime access, re-download anytime
---
## Setup Guide
To enable card payments, you need to:
1. Create a [Stripe account](https://dashboard.stripe.com/register)
2. Get your **Secret Key** from the Stripe dashboard
3. Set it as an environment variable for the checkout API:
```bash
# If using Cloudflare Worker:
echo "STRIPE_SECRET_KEY=sk_live_..." > .env
# If deploying the API separately, set:
export STRIPE_SECRET_KEY="sk_live_..."
```
The checkout API is at `api/checkout.js` — deployable as a Cloudflare Worker, Vercel function, or standalone Node.js server.
---
## Certificate
Students who complete the capstone project receive a Certificate of Completion. Verify at `fdsa.agency/verify`.
---
*Questions? Contact [artale@fdsa.agency](mailto:artale@fdsa.agency)*
<style>
.payment-note {
display: flex; align-items: center; gap: 8px;
background: rgba(217, 92, 65, 0.08);
border: 1px solid rgba(217, 92, 65, 0.2);
padding: 12px 16px; border-radius: 8px;
font-size: 13px; color: #d95c41; margin-bottom: 32px;
}
.tier-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px; margin: 24px 0;
}
.tier-grid h3 { margin-top: 0; }
.tier-grid ul { margin-bottom: 20px; }
.tier-grid .btn-p { display: inline-block; padding: 12px 20px; margin: 4px 2px; font-size: 14px; text-align: center; text-decoration: none; }
.tier-grid .btn-primary { background: #d95c41; color: #fff; border-radius: 6px; }
.tier-grid .btn-primary:hover { background: #c44a30; }
.tier-grid .btn-ghost { background: transparent; color: #888; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; }
.tier-grid .btn-ghost:hover { border-color: #555; color: #e8e8e8; }
</style>