interactor-webhooks

Receive real-time Interactor events via webhooks or Server-Sent Events.

Updated Jan 22, 2026
One-click install
npx skills add https://github.com/pulzze/interactor-docs --skill interactor-webhooks
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: interactor-webhooks
Source: https://github.com/pulzze/interactor-docs/tree/main/.claude/skills/i/interactor-webhooks
Command: npx skills add https://github.com/pulzze/interactor-docs --skill interactor-webhooks

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Receive real-time Interactor events via webhooks (push to your server) or Server-Sent Events (pull from browser/client). Use when building real-time UIs, monitoring credential changes, tracking workflow progress, or streaming AI chat responses.

Core Features & Use Cases

  • Webhooks push events to your server for credential status, workflow updates, and chat events
  • SSE streams for frontend live updates and dashboards
  • Event-driven automation: trigger actions based on Interactor events in backend systems

Quick Start

Configure a TLS-enabled HTTP endpoint and register a webhook in Interactor to forward events to your URL; verify signatures and process incoming events in real time.

Frequently Asked Questions about interactor-webhooks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I receive real-time webhook events for backend automation?

To receive real-time webhook events, configure a TLS-enabled HTTP endpoint and register it in Interactor to forward event payloads for backend automation. Your server must then verify incoming webhook signatures and process the data.

What is the difference between using webhooks and SSE for live updates?

Webhooks push event data to your backend server, while Server-Sent Events (SSE) pull streams to frontend interfaces. Use webhooks for backend automation and SSE for live UIs and dashboards.

How do I validate webhook signatures and prevent replay attacks?

You validate webhook signatures by enforcing payload signature validation and applying timestamp-based replay protection. This ensures incoming event-driven integration requests are authentic and not duplicated.

Can I stream AI chat interactions to a frontend dashboard using SSE?

Yes, you can stream AI chat interactions to a frontend dashboard using SSE. This pulls real-time event streams directly to the browser client, enabling up-to-the-second live updates.

Do I need a TLS-enabled endpoint to set up webhook integrations?

Yes, you need a TLS-enabled endpoint to set up webhook integrations. Configuring a secure HTTP endpoint is required to register the webhook and receive forwarded events safely.