integratix

Automate external service integrations with adapters, retries, and circuit breakers.

1|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/dduquenne/unanima-platform --skill integratix
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: integratix
Source: https://github.com/dduquenne/unanima-platform/tree/main/.claude/skills/integratix
Command: npx skills add https://github.com/dduquenne/unanima-platform --skill integratix

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Integratix addresses the challenge of connecting diverse external services securely and reliably, translating data across systems and handling failures gracefully.

Core Features & Use Cases

  • Adapter pattern for decoupling external integrations
  • Retry with exponential backoff and circuit breaker for resilience
  • Idempotent processing for webhook/queue-driven workflows
  • Data mapping across systems (Salesforce, SAP, Resend, etc.)
  • Observability hooks and error handling for operational reliability

Quick Start

Configure an external service connector to synchronize data across business apps.

Frequently Asked Questions about integratix

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

FAQPage Schema
How do I handle webhook retries and failures when integrating external services?

External service integrations handle webhook failures using retry mechanisms with exponential backoff and circuit breakers, ensuring transient errors are managed gracefully without overwhelming the downstream system.

What is idempotent processing and why is it needed for event-driven integrations?

Idempotent processing ensures that duplicate webhook or queue-driven events are processed only once, preventing duplicate data writes and maintaining data consistency across synchronized enterprise workloads.

Can I use this approach to synchronize data between Salesforce and SAP?

Yes, this approach supports data synchronization across enterprise platforms like Salesforce and SAP by using explicit adapters to decouple integrations and map data structures between disparate systems.

What is the best way to decouple external API integrations from business logic?

The best way to decouple external API integrations is implementing the adapter pattern, which isolates external service dependencies and translates data formats, allowing business applications to remain agnostic of specific API implementations.

How do I add observability and error handling to an ETL integration workflow?

ETL integration workflows gain observability and error handling through dedicated hooks that log operational metrics and capture failures, providing traceability and operational reliability across data synchronization pipelines.

When should I implement circuit breakers in an event-driven integration architecture?

Circuit breakers should be implemented when external services experience sustained failures, preventing cascading system crashes by temporarily halting requests and allowing the failing downstream service to recover.