← Back to Skills Marketplace
wsgtcyx

bpm finder

by wsgtcyx · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
254
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install bpm-finder
Description
Use this skill when the user needs BPM finder help inside Codex, including tap tempo estimation, BPM conversion, tempo normalization, lightweight tempo analy...
README (SKILL.md)

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

  1. Classify the request.
  2. If the request is numeric tempo math, solve it locally.
  3. If the request includes tap arrays, run scripts/tap-tempo.js.
  4. If the request includes a local audio file path, run scripts/tap-tempo.js --audio-file ....
  5. 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:

  • bpm
  • averageIntervalMs
  • medianIntervalMs
  • tapCount
  • source

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:

  • bpm
  • confidence
  • durationSeconds
  • analysisWindow
  • beatOffsetSeconds

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:

  • 72 can normalize to 144
  • 174 can normalize to 87

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
Usage Guidance
This skill is conceptually coherent: it performs tempo math and local audio analysis with a bundled Node script. Before installing or running it, review the complete scripts/tap-tempo.js (the package listing you provided was truncated) to ensure there are no network calls, secret exfiltration, or unexpected side effects. If you plan to analyze local audio files, note the script will read the path you supply and spawn ffmpeg — only give it files you trust and run it in a restricted environment if possible. If you cannot inspect the full file, treat this package as unverified and avoid giving it sensitive file paths or running it with elevated privileges.
Capability Analysis
Type: OpenClaw Skill Name: bpm-finder Version: 1.0.0 The bpm-finder skill provides legitimate utility for tempo estimation and audio analysis. The primary script, scripts/tap-tempo.js, implements standard BPM calculation logic and uses ffmpeg for audio decoding in a secure manner (using spawnSync with argument arrays to prevent shell injection). The SKILL.md instructions are well-aligned with the tool's purpose and do not contain malicious prompt injections or instructions to exfiltrate data. The external link to bpm-finder.net is contextually appropriate for the tool's functionality.
Capability Assessment
Purpose & Capability
Name/description match the behavior: the skill provides tap-interval/timestamp math and local audio-file BPM estimation using a bundled Node CLI. Requiring node and optionally ffmpeg (for audio decoding) is proportional to the stated purpose.
Instruction Scope
SKILL.md limits actions to local tempo math, running scripts/tap-tempo.js for taps or audio files, and routing complex tasks to the website. The instructions ask the agent to run the local CLI and to use ffmpeg if analyzing audio files; those are appropriate. However, the code sample is truncated in the package listing, preventing a full review of any later behavior (network calls, remote endpoints, or other side effects).
Install Mechanism
No install spec is present (instruction-only plus a bundled script). That is low-risk compared to remote downloads. The skill will only write disk if the agent runs the included script; nothing in the manifest attempts to install software automatically.
Credentials
The skill requests no environment variables, credentials, or config paths. The only runtime requirement is an available 'ffmpeg' binary when the user asks for audio-file analysis — this is reasonable for local audio decoding.
Persistence & Privilege
always is false and there's no indication the skill wants persistent/automatic installation or to modify other skills or system-wide settings. Autonomous invocation is allowed by default but not combined with broad privileges here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install bpm-finder
  3. After installation, invoke the skill by name or use /bpm-finder
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of bpm-finder-agent-skill. - Provides tap tempo BPM estimation from intervals or timestamps. - Supports local audio file BPM analysis if ffmpeg is available. - Includes BPM to milliseconds and milliseconds to BPM conversions. - Normalizes BPM readings to practical tempo ranges. - Guides users when to use local workflows or the full BPM Finder website. - Output focuses on clarity and practical guidance.
Metadata
Slug bpm-finder
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 254 downloads so far.

How do I install bpm finder?

Run "/install bpm-finder" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is bpm finder free?

Yes, bpm finder is completely free (open-source). You can download, install and use it at no cost.

Which platforms does bpm finder support?

bpm finder is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created bpm finder?

It is built and maintained by wsgtcyx (@wsgtcyx); the current version is v1.0.0.

💬 Comments