From fondo-pack
Deploys Next.js financial dashboards consuming Stripe and Fondo data to Vercel, Fly.io, or internal infrastructure.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fondo-pack:fondo-deploy-integrationThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Deploy internal financial dashboards that display Fondo-managed data. Pull data from shared providers (Stripe for revenue, Gusto for payroll) and Fondo CSV exports to build custom views for your team.
Deploy internal financial dashboards that display Fondo-managed data. Pull data from shared providers (Stripe for revenue, Gusto for payroll) and Fondo CSV exports to build custom views for your team.
// app/api/metrics/route.ts — pull from Stripe (same data Fondo uses)
import Stripe from 'stripe';
const stripe = new Stripe(process.env.STRIPE_API_KEY!);
export async function GET() {
const now = new Date();
const monthStart = new Date(now.getFullYear(), now.getMonth(), 1);
const charges = await stripe.charges.list({
created: { gte: Math.floor(monthStart.getTime() / 1000) },
limit: 100,
});
const mrr = charges.data
.filter(c => c.status === 'succeeded')
.reduce((sum, c) => sum + c.amount, 0) / 100;
return Response.json({
mrr,
monthlyBurn: 85000, // From Fondo reports
runway: 1200000 / 85000, // Cash / burn
updatedAt: new Date().toISOString(),
});
}
# Vercel (recommended for internal dashboards)
vercel env add STRIPE_API_KEY production
vercel --prod
# Password-protect with Vercel Authentication or middleware
For webhook event handling, see fondo-webhooks-events.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin fondo-packOutlines reference architecture for startup financial operations using Fondo bookkeeping with integrations to Mercury banking, Gusto payroll, Stripe revenue, and reporting outputs.
Sets up Finta integrations: Google Sheets dashboards from CSV exports/Zapier and Slack notifications for pipeline updates.
Generates SaaS factory app with landing page, Stripe subscription checkout, Vibe Token economics, and deploys to Cloudflare Workers for app monetization and revenue sharing.