Agent skill
fondo-rate-limits
Manage rate limits for Fondo-connected services including Gusto API, QuickBooks API, Plaid, and Stripe when building parallel integrations. Trigger: "fondo rate limit", "gusto API limits", "QuickBooks throttling".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/fondo-pack/skills/fondo-rate-limits
SKILL.md
Fondo Rate Limits
Overview
Fondo itself has no API rate limits (it's a managed service). But if you build parallel integrations to the same providers Fondo uses (Gusto, QuickBooks, Plaid, Stripe), you share rate limits.
Provider Rate Limits
| Provider | Rate Limit | Scope |
|---|---|---|
| Gusto API | 50 requests/min | Per access token |
| QuickBooks Online | 500 requests/min, 10 concurrent | Per realm |
| Plaid | 100 requests/min | Per client_id |
| Stripe | 100 reads/sec, 200 writes/sec | Per API key |
| Mercury API | 50 requests/min | Per API key |
Instructions
Avoid Conflicting with Fondo Syncs
// If you also call Gusto API directly, coordinate with Fondo's sync schedule
// Fondo typically syncs payroll data daily at midnight UTC
// Schedule your own Gusto API calls outside this window
import PQueue from 'p-queue';
const gustoQueue = new PQueue({
concurrency: 2,
interval: 60_000,
intervalCap: 40, // Stay under 50/min to leave room for Fondo
});
Resources
Next Steps
For security, see fondo-security-basics.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?