- A rules engine that evaluates conditions against incoming events and participant state. Conditions are written in CEL. When they match, actions fire: credits, debits, holds, tags, counter increments, and more. Logic lives in configuration, not application code.
- A double-entry ledger that records every balance change as a journal entry with debit and credit postings. Every credit has a corresponding debit. Nothing is mutated in place.
How it works
- Your app sends an event (a purchase, a signup, a referral) with whatever data your rules need.
- The engine evaluates every active rule in the program against the event and the participant’s current state.
- When a condition matches, the rule’s actions fire: credit points, debit a balance, set a tag, increment a counter.
- Every balance change is recorded in the ledger as an immutable journal entry.
Next Steps
Quickstart
Set up a program and process your first event.
Core Concepts
Programs, assets, rules, and the ledger.
Common Patterns
Copy-paste rule recipes for category multipliers, sign-up bonuses, streaks, referrals, and more.