Install
openclaw skills install @isaachan/late-brakePure CLI racing lap data analysis tool. Supports NMEA/VBO import, auto lap splitting, lap comparison, outputs structured comparison results for AI coaching. Use when you need to analyze racing lap data files, compare two laps, and get structured comparison results.
openclaw skills install @isaachan/late-brakeLate Brake is a pure command-line (CLI) racing lap data analysis tool that provides:
Dependencies are declared in SKILL.md, OpenClaw will handle automatic installation.
Source code is directly in scripts/ directory, can be imported directly:
import sys
import os
SKILL_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(SKILL_DIR, "scripts"))
from late_brake.cli import main as late_brake_main
Or execute directly as command-line:
# Load data file, list all laps
python -m late_brake.cli load <file> --json
# Compare two laps, output JSON result
python -m late_brake.cli compare <file1> <lap1> <file2> <lap2> --json
| Feature | Command | Description |
|---|---|---|
| Load data file | late-brake load <file> | Parse data, auto split laps, list all detected laps |
| Compare two laps | late-brake compare <file1> <lap1> <file2> <lap2> | Compare lap differences, output text table or JSON |
| Track management | late-brake track list/info/add | Manage built-in/custom tracks |
Full JSON schema definition: compare-json-schema.md