From finta-pack
Automates Finta data export and reporting in CI pipelines using cron jobs and Zapier. Trigger with 'finta CI' or 'finta automated reporting'.
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 ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin finta-pack2plugins reuse this skill
First indexed Jul 17, 2026
Automate Finta data export and reporting in CI pipelines. Trigger with phrases like "finta CI", "finta automated reporting".
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.