| name | fondo-prod-checklist |
| description | Execute Fondo production readiness checklist for year-end tax filing,
R&D credit claims, and board-ready financial reporting.
Trigger: "fondo production", "fondo tax filing ready", "fondo year-end checklist".
|
| allowed-tools | Read, Grep |
| version | 1.6.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","accounting","fondo"] |
| compatibility | Designed for Claude Code |
Fondo Production Checklist
Overview
Fondo handles startup tax preparation, R&D credit claims, bookkeeping, and compliance filings. A production integration syncs financial data from banking, payroll, and expense platforms into Fondo for automated tax workflows. Failures mean missed filing deadlines, incorrect R&D credit claims, or unreconciled books that block board reporting.
Authentication & Secrets
API Integration
Error Handling & Resilience
Monitoring & Alerting
Validation Script
async function checkFondoReadiness(): Promise<void> {
const checks: { name: string; pass: boolean; detail: string }[] = [];
try {
const res = await fetch('https://api.fondo.com/v1/status', {
headers: { Authorization: `Bearer ${process.env.FONDO_API_KEY}` },
});
checks.push({ name: 'Fondo API', pass: res.ok, detail: res.ok ? 'Connected' : `HTTP ${res.status}` });
} catch (e: any) { checks.push({ name: 'Fondo API', pass: false, detail: e.message }); }
checks.push({ name: 'API Key Set', pass: !!process.env.FONDO_API_KEY, detail: process.env. ? : });
{
res = (, {
: { : },
});
data = res.();
active = data?.?.( i. === ). || ;
checks.({ : , : active >= , : });
} (: ) { checks.({ : , : , : e. }); }
( c checks) .();
}
();
Error Handling
| Check | Risk if Skipped | Priority |
|---|
| Filing deadline alerts | Missed IRS deadlines, penalties | P1 |
| Bank sync monitoring | Unreconciled transactions at year-end | P1 |
| R&D credit validation | Incorrect credit claim, audit risk | P2 |
| Payroll data sync | Missing W-2/1099 data for returns | P2 |
| Monthly close tracking | Year-end books incomplete for board | P3 |
Resources
Next Steps
See fondo-security-basics for financial data protection and compliance controls.