@sola-air-ui/behavior
v0.1.0
Published
Sola Behavioral Intent Engine: Real-time implicit generative UI adaptation based on human interaction telemetry.
Downloads
88
Maintainers
Readme
@sola-air-ui/behavior
Sola Behavioral Intent Engine for Sola AIR — real-time implicit UI adaptation based on interaction telemetry (typing velocity, hover dwell, rage-click detection) instead of explicit user settings. 100% client-side: no keystrokes are logged, only local timing vectors, and nothing leaves the device.
Experimental. This package is real, working code, but it currently has no automated test coverage. Expect the API to move before 1.0.
Install
npm install @sola-air-ui/behaviorUsage
import { BehavioralObserver } from '@sola-air-ui/behavior';
const observer = new BehavioralObserver();
observer.subscribe((metrics) => {
// metrics.persona: 'visual_explorer' | 'sre_commander' | 'finops_auditor'
// metrics.densityMode: 'comfortable' | 'compact' | 'emergency'
applyDensity(metrics.densityMode);
});The observer infers a persona from real interaction patterns — typing speed, sustained hover/dwell targets (long-press on touch devices), and rage-click frequency — and persists the inferred persona locally so density/layout preferences carry across sessions without an explicit settings screen.
