From finta-pack
Automates Finta CRM data export and reporting in CI pipelines using CSV exports, cron jobs with bash/python scripts, and Zapier triggers.
How this skill is triggered — by the user, by Claude, or both
Slash command
/finta-pack:finta-ci-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
Since Finta lacks a public API, use scheduled CSV exports with cron jobs:
Since Finta lacks a public API, use scheduled CSV exports with cron jobs:
#!/bin/bash
# weekly-report.sh - Run via cron: 0 9 * * 1
cd /opt/finta-reports
# Process latest export (manually placed or synced)
python3 generate_report.py --input pipeline-export.csv --output reports/weekly.html
# Send via email
python3 send_report.py --to "[email protected]" --file reports/weekly.html
Use Zapier/Make to trigger on Finta pipeline events:
For deployment, see finta-deploy-integration.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin finta-packExports Finta pipeline CSV data and runs Python/pandas analysis for summaries, conversion rates, and weekly fundraising reports.
Sets up GitHub Actions CI/CD pipelines for budget alerts, burn rate checks, and financial validation using Stripe data with Fondo.
Provides production readiness checklist for Clari API integrations: authentication, data export pipelines, warehouse setup, scheduling, monitoring, rollback.