/install late-brake
Late Brake - Racing Lap Data Analysis Skill
Late Brake is a pure command-line (CLI) racing lap data analysis tool that provides:
- Import lap data in NMEA 0183 / RaceChrono VBO formats
- Auto split laps based on track start/finish line
- Compare any two laps for time/speed differences by sector and corner
- Output structured JSON comparison results ready for AI coach analysis
Dependencies
- Python >= 3.10
- Dependencies: click, pydantic, numpy, geographiclib, jsonschema, wcwidth
Dependencies are declared in SKILL.md, OpenClaw will handle automatic installation.
Entry Points
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 \x3Cfile> --json
# Compare two laps, output JSON result
python -m late_brake.cli compare \x3Cfile1> \x3Clap1> \x3Cfile2> \x3Clap2> --json
Features
| Feature | Command | Description |
|---|---|---|
| Load data file | late-brake load \x3Cfile> |
Parse data, auto split laps, list all detected laps |
| Compare two laps | late-brake compare \x3Cfile1> \x3Clap1> \x3Cfile2> \x3Clap2> |
Compare lap differences, output text table or JSON |
| Track management | late-brake track list/info/add |
Manage built-in/custom tracks |
JSON Output Schema
Full JSON schema definition: compare-json-schema.md
Use Cases
- Racing drivers upload lap data files for comparison analysis
- AI racing coach needs structured comparison data to give advice
- Batch processing multiple lap data files
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install late-brake - After installation, invoke the skill by name or use
/late-brake - Provide required inputs per the skill's parameter spec and get structured output
What is Late Brake?
Pure CLI racing lap data analysis tool. Supports NMEA/VBO import, auto lap splitting, lap comparison, outputs structured comparison results for AI coaching.... It is an AI Agent Skill for Claude Code / OpenClaw, with 175 downloads so far.
How do I install Late Brake?
Run "/install late-brake" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Late Brake free?
Yes, Late Brake is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Late Brake support?
Late Brake is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Late Brake?
It is built and maintained by Han Kai (@isaachan); the current version is v0.0.3.