基于Tauri 2 + Rust,构建的一个LOL 英雄联盟战绩查询助手,创新式标签标记机制,一键分析的混子、牛马队友
基于Tauri 2 + Rust,构建的一个LOL 英雄联盟战绩查询助手,创新式标签标记机制,一键分析的混子、牛马队友
TL;DR for developers — A native LoL client tool built with Tauri 2 + Rust + Vue 3 + TypeScript. ~5 MB installer, a single native binary on Windows and Apple Silicon macOS, zero Electron overhead. Its core is a data-driven AI match-review pipeline: every game is quantified (KDA, damage/tank share, kill participation, gold, team comp) and streamed to an LLM that tells you who carried, who fed, and who got dragged down. Talks to the LCU WebSocket for live in-game state, async Rust HTTP for match history. No DLL injection, no game memory access — uses only Riot's official local client API.
Rank Analysis is a League of Legends companion built on Riot's official LCU API. Its standout feature is data-driven AI match review: instead of just throwing numbers at you, it quantifies each game and has an AI explain why you won or lost — who carried, who fed, who got stomped, and who was dragged down by teammates. Around that core it also covers the essentials: match-history lookup with win-rate highlighting, premade & teammate-risk detection, and rule-based auto pick/ban.
Built with Tauri 2.0, it pairs Rust's performance with a web frontend in a ~5 MB, single-binary app — no DLL injection, no memory reads, only the official local client API.
AI Full-Match Review — a one-line verdict plus who carried / who fed / who got stomped, every call backed by real numbers
Match History — look up any summoner, dark / light theme
Live Match Analysis — recent records, rank, tags and premade detection for all 10 players, automatically on game start
Match Details — a dedicated window with per-player KDA / gold / damage, plus one-click AI review
Player Notes & Tag Management
Automation & General Settings
Backup & Cloud Sync
Download:
System Requirements
- Windows: Windows 10 1803 or higher (WebView2 support required)
- macOS: macOS 10.15 or higher, Apple Silicon only (
*-macos-aarch64.dmg; no Intel build)Feature parity: everything that runs off the LCU API — match history, AI review, premade detection, auto accept/pick/ban, cloud sync — works the same on both platforms. Two helpers are Windows-only because they have no macOS equivalent: launch LoL without WeGame (relies on the Tencent launcher's Windows install layout) and relaunch as administrator (macOS has no UAC). The app hides both on macOS rather than showing buttons that would always fail.
Run: Extract and run the executable directly - no admin privileges required
macOS first launch: the app is ad-hoc signed but not notarized (Apple notarization requires a paid Developer account). macOS will refuse the first launch. Open System Settings → Privacy & Security, scroll to the bottom and click Open Anyway next to the blocked app, then launch it again. This is only needed once.
Connect: The software automatically detects the game client when running
Notes:
- Currently only supports Tencent servers (China)
- Can be opened mid-game and will auto-connect
- AI analysis requires internet access to call model services; network unavailability only affects AI features, not basic match history queries
If you want to compile this project yourself, follow these steps:
xcode-select --install)Both platforms build from the same source tree. npm run tauri build produces an NSIS installer on
Windows; on macOS pass the bundle target explicitly, since tauri.conf.json defaults to nsis:
npm run tauri build -- --bundles dmg
Clone and enter the Tauri directory:
cd rank-analysis-app
Install dependencies:
npm install
Run in development mode:
npm run tauri dev
Build production version:
npm run tauri build
The executable will be located in src-tauri/target/release/bundle
This project uses modern development toolchain to ensure code quality and consistency:
cd rank-analysis-app
# One-shot gate — runs before every commit (mirrors CI exactly)
npm run check # format + lint + typecheck + cargo fmt --check + clippy --all-targets --all-features -Dwarnings
npm run test # vitest
# Individual steps (if you want to run them piecemeal)
npm run lint # ESLint
npm run format # Prettier
npm run typecheck # vue-tsc
cd src-tauri && cargo fmt --all -- --check && cargo clippy --all-targets --all-features -- -Dwarnings
npm run checkis the canonical pre-commit gate. It matches the flags used by.github/workflows/quality-checks.yml— if it passes locally, CI will pass.
For detailed code quality standards and contribution guidelines, please refer to:
Issues and Pull Requests are welcome!
This project is open-sourced under the MIT License.
Maintained with AI assistance experiments (Claude / LLM tooling)
No open issues yet, or sync has not completed.