CursorAssist.Engine 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CursorAssist.Engine --version 1.0.0
                    
NuGet\Install-Package CursorAssist.Engine -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CursorAssist.Engine" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CursorAssist.Engine" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="CursorAssist.Engine" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CursorAssist.Engine --version 1.0.0
                    
#r "nuget: CursorAssist.Engine, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CursorAssist.Engine@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CursorAssist.Engine&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=CursorAssist.Engine&version=1.0.0
                    
Install as a Cake Tool

CursorAssist

A deterministic engine for assistive cursor control, accessibility benchmarking, and adaptive motor-skill training.

CursorAssist helps people with motor impairments (tremor, limited range, fatigue) use a mouse more comfortably. It also provides a training environment for building cursor dexterity through the included MouseTrainer game.

What's Inside

This is a unified workspace containing two product surfaces that share a common engine:

CursorAssist -- real-time cursor assistance for accessibility

  • Tremor compensation via EMA smoothing and phase correction
  • Adaptive deadzones, edge resistance, and target magnetism
  • Motor profiling with versioned schemas
  • Deterministic policy mapping: same profile always produces the same config

MouseTrainer -- deterministic cursor dexterity game

  • Fixed 60 Hz simulation with composable blueprint mutators
  • Platform-stable run identity via xorshift32 RNG and FNV-1a hashing
  • ReflexGates mode with oscillating apertures and seed-based level generation

NuGet Packages

Package Description
CursorAssist.Canon Versioned immutable schemas and DTOs for motor profiles, assistive configs, and accessibility reports. Zero dependencies.
CursorAssist.Trace JSONL trace format for cursor input recording and playback. Thread-safe writer/reader. Zero dependencies.
CursorAssist.Policy Deterministic mapper from motor profiles to assistive configs. DSP-grounded tremor compensation with EMA cutoff formulas.
CursorAssist.Engine Input transform pipeline with 60 Hz accumulator, composable IInputTransform chain, and metrics collection.
MouseTrainer.Domain Deterministic xorshift32 RNG, FNV-1a hashing, game events, and run identity primitives.
MouseTrainer.Simulation Fixed-timestep game loop with blueprint mutators, replay recording, and session management.
MouseTrainer.Audio Event-driven audio cue system with deterministic volume/pitch jitter and asset verification.

Architecture

CursorAssist libraries:
  Canon          --> (nothing)         Schemas + DTOs (leaf)
  Trace          --> (nothing)         Input recording (leaf)
  Policy         --> Canon             Profile-to-config mapping
  Engine         --> Canon, Trace      Transform pipeline
  Runtime.Core   --> Engine, Policy    Thread management, config swap
  Runtime.Windows --> Runtime.Core     Win32 hooks, raw input

MouseTrainer libraries:
  Domain         --> (nothing)         RNG, events, run identity (leaf)
  Simulation     --> Domain            Game loop, mutators, levels
  Audio          --> Domain            Cue system, asset verification

Apps:
  MouseTrainer.MauiHost  --> all MouseTrainer libs    MAUI desktop game
  CursorAssist.Pilot     --> all CursorAssist libs    Tray-based assistant

Building

# Build all libraries
dotnet build

# Run MouseTrainer tests (214 tests)
dotnet test tests/MouseTrainer.Tests/

# Run CursorAssist tests
dotnet test tests/CursorAssist.Tests/

Design Principles

  • Determinism is constitutional. Same input produces the same output, always. No DateTime.Now, no Random, no platform-dependent floats in the hot path.
  • Modular with enforced boundaries. One-way dependencies, no cycles. Domain and Canon are leaves. Apps are composition roots.
  • Protocol-grade identity. IDs are permanent and frozen. FNV-1a hashing with canonical parameter serialization.
  • Accessibility is the product. CursorAssist exists to make computers usable for people with motor impairments. MouseTrainer exists to help people build the dexterity to need less assistance over time.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 0 2/28/2026
1.0.2 26 2/27/2026
1.0.0 91 2/12/2026