Skip to content
Skillv1.0.0

fondo-prod-checklist

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 che

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/fondo-prod-checklist/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill fondo-prod-checklist. Copyright stays with the author (MIT).

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.

Prerequisites

  • A finance owner, authorized reviewer, completed staging evidence using synthetic data, and documented rollback/correction process.
  • Approved data flows, retention rules, access controls, filing calendar, and escalation contacts.

Instructions

  1. Attach evidence or a named owner decision to each applicable control and maintain professional review for financial/tax conclusions.
  2. Verify scoped secrets, source reconciliation, redacted diagnostics, access boundaries, and safe failure handling before promotion.
  3. Run a synthetic canary and review aggregate health, delivery, and reconciliation results; halt on discrepancy or access failures.
  4. Record approval, exceptions, correction/rollback owner, and follow-up date.

Output

Create a launch receipt with completed controls, evidence references, aggregate canary results, approver, exception status, and recovery owner. Exclude financial records, tax data, payroll data, and credentials.

Examples

Process a fictional expense export in staging, simulate an incomplete reconciliation, and verify the workflow pauses for finance review. Promote only after the reviewer records evidence and the rollback/correction path has been tested.

Authentication & Secrets

  • FONDO_API_KEY stored in secrets manager (not config files)
  • Financial integration OAuth tokens stored securely (Stripe, Mercury, Brex)
  • Key rotation scheduled before each tax season
  • Separate credentials for staging/prod environments
  • Payroll provider API tokens scoped to read-only

API Integration

  • Production base URL configured (https://api.fondo.com/v1)
  • Rate limit handling with exponential backoff
  • All bank accounts connected and syncing (verified daily)
  • Payroll provider connected with W-2 and 1099 data flowing
  • Revenue sources synced (Stripe, invoicing platforms)
  • Expense tool integrations verified (Brex, Ramp, Expensify)
  • Bookkeeping categorization queue drained before close

Error Handling & Resilience

  • Circuit breaker configured for Fondo API outages
  • Retry with backoff for 429/5xx responses
  • Bank sync failure detection within 24 hours
  • Intercompany transaction reconciliation validated
  • R&D qualifying activity documentation verified programmatically
  • Filing deadline alerts set 30/14/7 days before due dates

Monitoring & Alerting

  • API latency tracked per sync endpoint
  • Error rate alerts set (any financial sync failure = immediate)
  • Monthly close completion tracked (all 12 months before year-end)
  • R&D credit calculation validated against employee tags
  • Extension filing status monitored (Form 7004 before March 15)

Validation Script

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();

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.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-fondo-prod-checklist/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-fondo-prod-checklist.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-fondo-prod-checklist",
  "kind": "skill",
  "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\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "finance"
    ],
    "tags": [
      "skill-md",
      "saas",
      "accounting",
      "fondo",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/fondo-prod-checklist/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/fondo-prod-checklist/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/fondo-prod-checklist/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Fondo Production Checklist\n\n## Overview\n\nFondo 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.\n\n## Prerequisites\n\n- A finance owner, authorized reviewer, completed staging evidence using synthetic data, and documented rollback/correction process.\n- Approved data flows, retention rules, access controls, fili",
  "cost": {
    "context_tokens": 1278
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-fondo-prod-checklist/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.