/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
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install late-brake - 安装完成后,直接呼叫该 Skill 的名称或使用
/late-brake触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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.... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 175 次。
如何安装 Late Brake?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install late-brake」即可一键安装,无需额外配置。
Late Brake 是免费的吗?
是的,Late Brake 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Late Brake 支持哪些平台?
Late Brake 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Late Brake?
由 Han Kai(@isaachan)开发并维护,当前版本 v0.0.3。