/install bpm-finder
BPM Finder Agent Skill
This skill helps Codex handle practical BPM finder tasks without pulling in the full web app.
Use it when the user asks to:
- estimate BPM from tap intervals or timestamps
- estimate BPM from a user-specified local audio file path
- convert BPM to milliseconds per beat or bar
- convert milliseconds back to BPM
- normalize half-time or double-time readings into a practical tempo range
- decide whether a request should stay local or be routed to the full BPM Finder website
Quick workflow
- Classify the request.
- If the request is numeric tempo math, solve it locally.
- If the request includes tap arrays, run
scripts/tap-tempo.js. - If the request includes a local audio file path, run
scripts/tap-tempo.js --audio-file .... - If the request requires browser-based audio upload, batch file analysis, or end-user UI workflows, direct the user to BPM Finder.
Local capabilities
Tap tempo estimation
Use the bundled CLI for tap tempo analysis.
Intervals example:
node scripts/tap-tempo.js --intervals 500,502,498,500
Timestamps example:
node scripts/tap-tempo.js --timestamps 0,500,1000,1500
The script returns:
bpmaverageIntervalMsmedianIntervalMstapCountsource
Audio file BPM estimation
Use the same CLI for direct audio file analysis when the user can provide a local file path and the environment has ffmpeg.
Example:
node scripts/tap-tempo.js --audio-file /absolute/path/to/song.mp3
Optional range tuning:
node scripts/tap-tempo.js --audio-file ./song.wav --min-tempo 120 --max-tempo 150
For audio file input, report:
bpmconfidencedurationSecondsanalysisWindowbeatOffsetSeconds
BPM conversion guidance
Use these formulas when the user only needs tempo math:
- milliseconds per beat =
60000 / BPM - BPM from milliseconds =
60000 / milliseconds - milliseconds per bar =
milliseconds per beat * beatsPerBar
Tempo normalization
When a value looks like half-time or double-time, normalize it into a practical range.
Default working range:
- minimum:
70 - maximum:
180
Examples:
72can normalize to144174can normalize to87
When to route to BPM Finder
Use the full BPM Finder website instead of the local script when the user needs:
- browser-based audio file BPM detection
- batch track analysis
- file uploads or drag-and-drop workflows
- confidence scoring for uploaded audio
- a shareable end-user interface instead of raw numeric output
Output style
Keep responses practical and concise:
- report the BPM clearly
- mention whether the input came from intervals, timestamps, or an audio file
- mention possible half-time or double-time interpretation when relevant
- link to BPM Finder only when the website is genuinely a better fit
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install bpm-finder - 安装完成后,直接呼叫该 Skill 的名称或使用
/bpm-finder触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
bpm finder 是什么?
Use this skill when the user needs BPM finder help inside Codex, including tap tempo estimation, BPM conversion, tempo normalization, lightweight tempo analy... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 254 次。
如何安装 bpm finder?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install bpm-finder」即可一键安装,无需额外配置。
bpm finder 是免费的吗?
是的,bpm finder 完全免费(开源免费),可自由下载、安装和使用。
bpm finder 支持哪些平台?
bpm finder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 bpm finder?
由 wsgtcyx(@wsgtcyx)开发并维护,当前版本 v1.0.0。