Quickstart
This guide gets you from zero to a running integration in under 5 minutes.
-
Install and authenticate
Terminal window npm install -g @fyrn/clifyrn auth login -
Initialize a project
Terminal window fyrn init my-integrations && cd my-integrations -
Add your connectors
Terminal window fyrn connector add shopifyfyrn connector add sap-b1 -
Generate a flow from natural language
Terminal window fyrn generate "Sync new Shopify orders to SAP Business One"fyrn generates a YAML flow definition:
flows/shopify-to-sap-orders.yaml name: shopify-to-sap-orderstrigger:connector: shopifyevent: order.createdsteps:- transform:map:order_id: "{{ trigger.id }}"customer: "{{ trigger.customer.email }}"total: "{{ trigger.total_price }}"- deliver:connector: sap-b1action: sales_order.createhealing:auto_fix: trueconfidence_threshold: 0.95 -
Test with a dry run
Terminal window fyrn test --dry-run# ✓ All validations passed# ✓ Connector auth verified: shopify, sap-b1# ✓ Mapping valid: 3 fields mapped -
Deploy
Terminal window fyrn deploy --env production# ✓ Deployed shopify-to-sap-orders v1 to production
That’s it. Your integration is live, processing events in real-time, and self-healing if APIs change.
Check status
Section titled “Check status”fyrn status --all
# FLOW STATUS HEALTH MSG/24H# ───────────────────────────────────────────────────# shopify-to-sap-orders active 100% 0What’s next
Section titled “What’s next”- Your First Flow — Deeper walkthrough with transforms, conditions, and error handling
- Self-Healing — How fyrn handles API changes automatically
- CLI Reference — All available commands