agentsclimarketplace

Finta webhooks events

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/finta-pack/skills/finta-webhooks-events

425 plugins, 2,810 skills, 200 agents for Claude Code. Open-source marketplace at tonsofskills.com with the ccpi CLI package manager.

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill finta-webhooks-events

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

'Automate Finta pipeline events with Zapier and email triggers.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.9 KB, 326 tokens by cl100k_base, as published. Nobody here has run it

Finta Webhooks & Events

Overview

Finta supports event automation through its built-in automation rules and Zapier integration. Pipeline stage changes, investor replies, and deal room views can trigger external actions.

Built-in Automation Rules

Configure in Settings > Automation:

  • Email reply detected -> Move to next stage
  • Calendar meeting scheduled -> Log and notify team
  • Deal room viewed -> Send Slack notification
  • No response in X days -> Create follow-up reminder

Zapier Integration

Available triggers:

  1. Pipeline stage changed
  2. New investor added
  3. Deal room accessed
  4. Investor update sent

Example Zap: Finta stage change -> Slack message + Google Sheets row

Custom Reminder System

import pandas as pd
from datetime import datetime, timedelta

def get_followup_reminders(export_path: str, days: int = 5) -> list:
    df = pd.read_csv(export_path)
    df["Last Contact"] = pd.to_datetime(df["Last Contact"])
    cutoff = datetime.now() - timedelta(days=days)
    overdue = df[
        (df["Stage"].isin(["Reaching Out", "Follow-up"]))
        & (df["Last Contact"] < cutoff)
    ]
    return overdue[["Name", "Firm", "Email", "Last Contact", "Stage"]].to_dict("records")

Resources

Next Steps

For performance, see finta-performance-tuning.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.