finta-debug-bundle

Featured

Collect Finta diagnostic information for support. Trigger with phrases like "finta debug", "finta support".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Finta Debug Bundle ## Overview Collect Finta API connectivity status, fundraising round data, investor pipeline health, and integration state into a single diagnostic archive. This bundle helps troubleshoot CRM sync failures, missing investor records, round update errors, and authentication problems. Attach the output to Finta support tickets for faster resolution of fundraising workflow issues. ## Debug Collection Script ```bash #!/bin/bash set -euo pipefail BUNDLE="debug-finta-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE" # Environment check echo "=== Finta Debug Bundle ===" | tee "$BUNDLE/summary.txt" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" >> "$BUNDLE/summary.txt" echo "FINTA_API_KEY: ${FINTA_API_KEY:+[SET]}" >> "$BUNDLE/summary.txt" # API connectivity HTTP=$(curl -s -o /dev/null -w "%{http_code}" \ -H "Authorization: Bearer ${FINTA_API_KEY}" \ https://api.finta.io/v1/rounds 2>/dev/null || echo "000") echo "API Status: HTTP $HTTP" >> "$BUNDLE/summary.txt" # Fundraising rounds summary curl -s -H "Authorization: Bearer ${FINTA_API_KEY}" \ "https://api.finta.io/v1/rounds" \ > "$BUNDLE/rounds.json" 2>&1 || true # Investor records (limited) curl -s -H "Authorization: Bearer ${FINTA_API_KEY}" \ "https://api.finta.io/v1/investors?limit=10" \ > "$BUNDLE/investors-sample.json" 2>&1 || true # Connected integrations status curl -s -H "Authorization: Bearer ${FINTA_API_KEY}" \ "https://api.finta.io/v1/integrations" \ > "$BUNDLE/integrations.json" 2>&1...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category