All use cases
Platform

Find out where your interface actually fails people

Interaction analytics you host, plus an embeddable verification badge.

The problem

Page views tell you where people went, not where they struggled. The click that did nothing, the field filled in three times, the control nobody found — none of it shows up in a funnel.

The tools that do capture it are usually third-party scripts sending your users' behaviour somewhere else, which is a privacy decision made on your behalf.

What you are building

Live surfaces, not screenshots — every one composed from the same components you would install.

How the app is used

First-party interaction analytics — collected by your own server, not a third-party pixel.

The code

Record intent, not page viewsphp
// A page view tells you someone arrived. This tells you whether the app did the
// thing they came for -- which is the only number worth optimising.
Heuristics::record('checkout.completed', [
    'plan'  => $plan->slug,
    'steps' => $session->stepCount(),
]);

How to solve it

  1. Install the collector and the server

    Interaction analytics as a matched pair: a browser collector and your own backend. The data stays in your database.

    Run thisbash
    composer require particle-academy/fancy-heuristics
    npm install @particle-academy/fancy-heuristics-js
  2. Instrument the surfaces you doubt

    Start with the flows people contact support about. Measuring everything produces a dashboard nobody reads.

  3. Add a verification badge if you publish work

    An embeddable badge with an interaction beacon — useful when you want a public marker on something you shipped.

    Run thisbash
    npm install @particle-academy/fancy-pixel