SWIC plugs into any POS system and shows commission estimates in real-time as reps build a sale. No more waiting until month-end. Works with any ICM.
7 demo clients. 5 rule types. One config-driven engine.
Tablet route demo: 8-stop Dallas delivery route with AI upsell suggestions and real-time commission what-if calculations.
Pure calculation engine with no database dependency. Commission updates as fast as you can add items.
Visual progress bars show how close reps are to the next tier. "Just $3,200 more to unlock 6%!"
Pull comp plans from Varicent, Xactly, CaptivateIQ, or any ICM. Config-driven — zero code changes per client.
Drop SWIC into any POS system with a single iframe. Commission data flows via PostMessage API — no backend integration required. The widget listens for sale items and pushes commission updates back.
<iframe src="https://demo.swic-summit.aicoderally.com/widget?client=lone-star-spirits&theme=dark" width="400" height="600" style="border: none; border-radius: 16px;" />
// POS → SWIC Widget
iframe.contentWindow.postMessage({
type: 'swic:addItem',
item: {
id: 'ls-005',
name: 'Patron Silver Tequila 750ml',
price: 48,
cost: 30,
category: 'Spirits',
tags: ['spirits', 'premium'],
quantity: 4
}
}, '*');
// SWIC Widget → POS
window.addEventListener('message', (e) => {
if (e.data.type === 'swic:commissionUpdate') {
console.log('Commission:', e.data.total);
console.log('Components:', e.data.components);
}
});SWIC adapters pull comp plan structures, rate tables, and YTD attainment from your compensation system. The simulator includes a live toggle for Varicent sandbox environments.
Link your compensation system via adapter
Drop an iframe into your POS UI
As items are scanned, PostMessage sends data
Commission preview updates in real-time