From fondo-pack
Executes a Fondo production readiness checklist for year-end tax filing, R&D credit claims, and board-ready financial reporting. Triggered by "fondo production", "fondo tax filing ready", or "fondo year-end checklist".
How this skill is triggered — by the user, by Claude, or both
Slash command
/fondo-pack:fondo-prod-checklistThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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.
FONDO_API_KEY stored in secrets manager (not config files)https://api.fondo.com/v1)async function checkFondoReadiness(): Promise<void> {
const checks: { name: string; pass: boolean; detail: string }[] = [];
// API connectivity
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 }); }
// Credentials present
checks.push({ name: 'API Key Set', pass: !!process.env.FONDO_API_KEY, detail: process.env.FONDO_API_KEY ? 'Present' : 'MISSING' });
// Bank sync status
try {
const res = await fetch('https://api.fondo.com/v1/integrations/status', {
headers: { Authorization: `Bearer ${process.env.FONDO_API_KEY}` },
});
const data = await res.json();
const active = data?.integrations?.filter((i: any) => i.status === 'active').length || 0;
checks.push({ name: 'Active Integrations', pass: active >= 2, detail: `${active} connected` });
} catch (e: any) { checks.push({ name: 'Active Integrations', pass: false, detail: e.message }); }
for (const c of checks) console.log(`[${c.pass ? 'PASS' : 'FAIL'}] ${c.name}: ${c.detail}`);
}
checkFondoReadiness();
| 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 |
See fondo-security-basics for financial data protection and compliance controls.
5plugins reuse this skill
First indexed Jul 10, 2026
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin fondo-packAutomates CI/CD pipelines for Fondo tax and bookkeeping integrations: unit tests with mocked compliance data, integration tests for live API connectivity, and filing deadline monitoring.
Production launch checklist for Finta CRM integration covering authentication, API connectivity, error handling, monitoring, and readiness validation.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.