⚡️A native, local-first alternative to Logitech Options+, written in Rust 🦀 — remap buttons, DPI, and SmartShift over HID++. No account, no telemetry.
This report presents the forensic synthetic code analysis of AprilNEA/OpenLogi, a Rust project with 6,734 GitHub stars. SynthScan v2.0 examined 66,424 lines of code across 323 source files, recording 428 pattern matches distributed across 6 syntactic categories. The overall adjusted score of 9.0 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 428 distinct pattern matches across 6 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | release-plz.toml | 1 | # release-plz configuration — https://release-plz.dev/docs/config | COMMENT |
| LOW | packaging/linux/install.sh | 1 | #!/bin/sh | COMMENT |
| LOW | crates/openlogi-hidpp/Cargo.toml | 1 | # Vendored fork of the `hidpp` crate from https://github.com/lus/logy | COMMENT |
| LOW | crates/openlogi-hidpp/src/channel.rs | 61 | COMMENT | |
| LOW | crates/openlogi-hidpp/src/channel.rs | 81 | COMMENT | |
| LOW | crates/openlogi-hidpp/src/channel.rs | 401 | /// Using software ID `0` is highly discouraged as it is used for device | COMMENT |
| LOW | crates/openlogi-hidpp/src/channel.rs | 481 | self.send_with_timeout(msg, response_predicate, SEND_RESPONSE_TIMEOUT) | COMMENT |
| LOW | crates/openlogi-hidpp/src/channel.rs | 641 | /// Indicates that the channel in question does not support HID++. | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 1 | //! An implementation of Logitech's HID++ protocol. | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 21 | //! understanding of how things work. It's a great project perfectly usable to | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 41 | //! ## Initialize HID++ communication | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 61 | //! | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 81 | //! | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 101 | //! .await | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 121 | //! let info = root | COMMENT |
| LOW | crates/openlogi-hidpp/src/lib.rs | 141 | //! // `enumerate_features` function we just called automatically registers | COMMENT |
| LOW | crates/openlogi-hidpp/src/protocol/v20.rs | 181 | Unsupported = 9, | COMMENT |
| LOW | crates/openlogi-hidpp/src/protocol/v10.rs | 261 | /// | COMMENT |
| LOW | crates/openlogi-hidpp/src/protocol/v10.rs | 281 | /// usually responded with a response message of the same type (or | COMMENT |
| LOW | crates/openlogi-hidpp/src/protocol/v10.rs | 321 | /// further documented, please let me know what it means. | COMMENT |
| LOW | crates/openlogi-hidpp/src/protocol/mod.rs | 21 | /// | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 1 | //! Implements the Logi Bolt receiver. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 41 | /// Provides the amount of currently paired devices. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 61 | /// pairing and unpairing. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 301 | Register::Connections.into(), | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 521 | /// Indicates which notifications are enabled and thus sent by the receiver. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 541 | pub wpid: u16, | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 581 | Headset = 0x0d, | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 601 | /// collect all paired devices. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 621 | COMMENT | |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 641 | /// [`Receiver::discover_devices`]. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 661 | COMMENT | |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 681 | /// user has to perform, with an additional press of both mouse | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 701 | /// submits their passkey, this value will be | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 721 | /// Whether the device is currently online. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/bolt.rs | 741 | /// Represents the type of a single passkey press. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/unifying.rs | 21 | COMMENT | |
| LOW | crates/openlogi-hidpp/src/receiver/unifying.rs | 41 | COMMENT | |
| LOW | crates/openlogi-hidpp/src/receiver/unifying.rs | 221 | #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)] | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/unifying.rs | 241 | /// values and places them at 7–9. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/unifying.rs | 261 | /// Touchpad device. | COMMENT |
| LOW | crates/openlogi-hidpp/src/receiver/mod.rs | 1 | //! Implements the different HID++ wireless receivers. | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/reprog_controls.rs | 301 | } | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/reprog_controls.rs | 421 | /// Echo returned by `setCidReporting`. | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/mod.rs | 61 | const STARTING_VERSION: u8; | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/mod.rs | 201 | /// A SW hidden feature is a feature that should not be known/managed/used | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/root.rs | 81 | #[non_exhaustive] | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 21 | /// The lift-off distance is the height above the surface at which the sensor | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 41 | /// [`ExtendedDpiFeature::show_sensor_dpi_status`]: | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 61 | #[cfg_attr(feature = "serde", derive(serde::Serialize))] | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 101 | /// Supported capabilities. | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 121 | Stepped { | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 141 | #[non_exhaustive] | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 161 | /// super::ExtendedDpiFeature::set_sensor_dpi_parameters | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 181 | /// DPI level to display (`1..=dpi_level_count`). | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 201 | pub mouse_width: u8, | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/types.rs | 221 | pub expected_count: u16, | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/extended_dpi/event.rs | 1 | //! Events emitted by `ExtendedAdjustableDpi` (`0x2202`). | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/crown/event.rs | 21 | /// Proximity or touch activity phase reported in a [`CrownUpdate`]. | COMMENT |
| LOW | crates/openlogi-hidpp/src/feature/crown/event.rs | 41 | #[repr(u8)] | COMMENT |
| 294 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | packaging/linux/nfpm.yaml | 22 | # ── binaries ──────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/nfpm.yaml | 38 | # ── udev rules ────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/nfpm.yaml | 44 | # ── systemd user unit ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/nfpm.yaml | 50 | # ── XDG desktop entry ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/nfpm.yaml | 56 | # ── icon ──────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packaging/linux/uninstall.sh | 23 | # ── stop and disable the agent ──────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/uninstall.sh | 39 | # ── remove binaries ─────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/uninstall.sh | 44 | # ── udev rules ──────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/uninstall.sh | 54 | # ── systemd user unit ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packaging/linux/uninstall.sh | 59 | # ── desktop entry + icon ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packaging/linux/install.sh | 54 | # ── locate build output ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packaging/linux/install.sh | 69 | # ── install binaries ─────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packaging/linux/install.sh | 76 | # ── udev rules ──────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packaging/linux/install.sh | 89 | # ── systemd user unit ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packaging/linux/install.sh | 110 | # ── desktop entry ───────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packaging/linux/install.sh | 116 | # ── icon ────────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-hook/src/linux.rs | 388 | // ── frontmost_bundle_id ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-hook/src/linux.rs | 462 | // ── key_to_button ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-hook/src/linux.rs | 491 | // ── translate ──────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-hook/src/linux.rs | 553 | // ── movement ───────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-hook/src/linux.rs | 579 | // ── scroll — standard ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-hook/src/linux.rs | 603 | // ── scroll — hi-res ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-gui/src/platform/permissions.rs | 123 | // ── macOS FFI ────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-gui/src/platform/permissions.rs | 183 | // ── Linux probes ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-gui/src/platform/permissions.rs | 268 | // ── Tests ────────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-gui/src/mouse_model/picker.rs | 266 | // ── Shared building blocks ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-agent/src/launch_agent.rs | 201 | // ── Linux systemd user-unit reconcile ──────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-agent/src/launch_agent.rs | 310 | // ── Tests ───────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 71 | // ── Mouse clicks ────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 79 | // ── Editing ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 89 | // ── Browser / Navigation ────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 98 | // ── Navigation — macOS-specific ─────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 112 | // ── System ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 118 | // ── Media ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 127 | // ── DPI / SmartShift: handled at hook/HID layer ─────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 134 | // ── Scroll ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 139 | // ── No-op ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 141 | // ── Custom shortcut ─────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 221 | // ── System ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 228 | // ── Media ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 238 | // ── DPI / SmartShift: handled at hook/HID layer ─────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 245 | // ── Scroll ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-inject/src/inject.rs | 250 | // ── Custom ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 176 | // ── Mouse clicks: synthesise a click at the cursor ──────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 188 | // ── Editing ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 197 | // ── Browser / Navigation ────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 209 | // ── Navigation / Window: posted straight to the Dock ────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 389 | // ── macOS virtual key codes ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 1142 | // ── D-Bus helpers ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 1573 | // ── modifiers_to_keycodes ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-inject/src/inject.rs | 1628 | // ── macos_vk_to_linux ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-core/src/binding.rs | 457 | // ── DPI ────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-core/src/binding.rs | 466 | // ── Scroll ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | crates/openlogi-core/src/binding.rs | 476 | // ── Custom ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-core/src/binding.rs | 352 | // ── System ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-core/src/binding.rs | 357 | // ── Mouse ──────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-core/src/binding.rs | 373 | // ── Editing ────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-core/src/binding.rs | 396 | // ── Browser / Navigation ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-core/src/binding.rs | 414 | // ── Navigation / Window ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/openlogi-core/src/binding.rs | 428 | // ── System ──────────────────────────────────────────────────────────────── | COMMENT |
| 9 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | release-plz.toml | 90 | # Shared headless orchestration for the background agent. Not publishable | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | packaging/linux/uninstall.sh | 6 | # Usage: | COMMENT |
| LOW | packaging/linux/install.sh | 8 | # Usage: | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | crates/openlogi-gui/src/i18n.rs | 196 | /// separate `#[test]`s would race under the parallel harness. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | .github/workflows/release.yml | 871 | # Create the draft, upload assets to it, then publish — all in one step. | COMMENT |