Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Fundraise launch checklist using Finta CRM. Trigger with phrases like "finta checklist", "finta launch", "finta go-live".
.claude/skills/jeremylongshore-finta-prod-checklist/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | -28% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 3% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 36% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -24% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -12% | 0% |
Finta is a fundraising CRM for managing investor pipeline, deal rooms, and round tracking. A production integration syncs investor communications, manages deal room access, and automates pipeline stage transitions. Failures mean lost investor touchpoints, broken deal room links, or pipeline data that drifts from your actual fundraise state.
FINTA_API_KEY stored in secrets manager (not config files)https://api.finta.com/v1)typescriptasync function checkFintaReadiness(): Promise<void> { const checks: { name: string; pass: boolean; detail: string }[] = []; // API connectivity try { const res = await fetch('https://api.finta.com/v1/pipeline', { headers: { Authorization: `Bearer ${process.env.FINTA_API_KEY}` }, }); checks.push({ name: 'Finta API', pass: res.ok, detail: res.ok ? 'Connected' : `HTTP ${res.status}` }); } catch (e: any) { checks.push({ name: 'Finta API', pass: false, detail: e.message }); } // Credentials present checks.push({ name: 'API Key Set', pass: !!process.env.FINTA_API_KEY, detail: process.env.FINTA_API_KEY ? 'Present' : 'MISSING' }); // Pipeline stages configured try { const res = await fetch('https://api.finta.com/v1/pipeline/stages', { headers: { Authorization: `Bearer ${process.env.FINTA_API_KEY}` }, }); const data = await res.json(); const count = Array.isArray(data) ? data.length : 0; checks.push({ name: 'Pipeline Stages', pass: count >= 3, detail: `${count} stages configured` }); } catch (e: any) { checks.push({ name: 'Pipeline Stages', pass: false, detail: e.message }); } for (const c of checks) console.log(`[${c.pass ? 'PASS' : 'FAIL'}] ${c.name}: ${c.detail}`); } checkFintaReadiness();
| Check | Risk if Skipped | Priority | |-------|----------------|----------| | API key rotation | Lost access during active fundraise | P1 | | Email sync monitoring | Missed investor replies for days | P1 | | Deal room link expiry | Investors hit dead links before meetings | P2 | | Duplicate investor import | Fragmented communication history | P2 | | Cap table validation | Incorrect ownership reported to board | P3 |
See finta-security-basics for investor data protection and deal room access control.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 30,582 | 34,923 | +14% | 1 | 1 | 0% | 5,767 | 7,686 | +33% | 0 | 0 | — |
case-02 | fail→fail | 20,992 | 27,083 | +29% | 1 | 1 | 0% | 2,631 | 5,040 | +92% | 0 | 0 | — |
case-03 | fail→fail | 20,135 | 14,282 | -29% | 1 | 1 | 0% | 2,453 | 3,366 | +37% | 0 | 0 | — |
case-04 | fail→pass | 15,428 | 9,955 | -35% | 1 | 1 | 0% | 2,568 | 1,838 | -28% | 0 | 0 | — |
case-05 | pass→pass | 19,524 | 14,804 | -24% | 1 | 1 | 0% | 2,341 | 2,501 | +7% | 0 | 0 | — |
case-06 | pass→pass | 13,077 | 7,958 | -39% | 1 | 1 | 0% | 2,207 | 1,493 | -32% | 0 | 0 | — |
case-07 | pass→pass | 19,906 | 12,511 | -37% | 1 | 1 | 0% | 2,408 | 3,253 | +35% | 0 | 0 | — |
case-08 | fail→pass | 18,240 | 17,939 | -2% | 1 | 1 | 0% | 3,059 | 3,150 | +3% | 0 | 0 | — |
case-09 | fail→pass | 19,037 | 11,930 | -37% | 1 | 1 | 0% | 2,214 | 3,016 | +36% | 0 | 0 | — |
case-10 | fail→pass | 32,480 | 4,817 | -85% | 1 | 1 | 0% | 2,475 | 1,872 | -24% | 0 | 0 | — |
case-11 | fail→pass | 31,430 | 7,125 | -77% | 1 | 1 | 0% | 1,595 | 1,400 | -12% | 0 | 0 | — |
case-12 | fail→pass | 10,417 | 2,814 | -73% | 1 | 1 | 0% | 1,598 | 1,431 | -10% | 0 | 0 | — |
case-13 | fail→pass | 11,127 | 3,339 | -70% | 1 | 1 | 0% | 1,726 | 1,526 | -12% | 0 | 0 | — |
case-14 | pass→pass | 14,134 | 2,214 | -84% | 1 | 1 | 0% | 1,369 | 1,334 | -3% | 0 | 0 | — |
case-15 | pass→pass | 20,378 | 21,382 | +5% | 1 | 1 | 0% | 3,722 | 5,158 | +39% | 0 | 0 | — |
case-16 | fail→pass | 13,592 | 7,643 | -44% | 1 | 1 | 0% | 2,347 | 1,462 | -38% | 0 | 0 | — |
case-17 | pass→pass | 14,007 | 8,186 | -42% | 1 | 1 | 0% | 1,380 | 1,518 | +10% | 0 | 0 | — |
case-18 | pass→pass | 14,849 | 6,785 | -54% | 1 | 1 | 0% | 2,489 | 2,185 | -12% | 0 | 0 | — |
case-19 | pass→pass | 6,694 | 2,332 | -65% | 1 | 1 | 0% | 970 | 1,430 | +47% | 0 | 0 | — |
case-20 | pass→pass | 22,253 | 23,418 | +5% | 1 | 1 | 0% | 2,763 | 4,892 | +77% | 0 | 0 | — |
case-21 | pass→pass | 21,225 | 15,833 | -25% | 1 | 1 | 0% | 2,856 | 3,961 | +39% | 0 | 0 | — |
case-22 | pass→pass | 22,670 | 25,296 | +12% | 1 | 1 | 0% | 3,126 | 5,119 | +64% | 0 | 0 | — |
case-23 | fail→fail | 12,650 | 11,117 | -12% | 1 | 1 | 0% | 3,233 | 3,636 | +12% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted, and 22 counted toward the lift figure. The other 1 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +35 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.