skills$openclaw/bmkg-monitor
bluemeda2.8k

by bluemeda

bmkg-monitor – OpenClaw Skill

bmkg-monitor is an OpenClaw Skills integration for coding workflows. Monitoring earthquake data in Indonesia using BMKG official data. Use when the user asks for the latest earthquake, felt earthquakes, or information about a specific seismic event in Indonesia.

2.8k stars161 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namebmkg-monitor
descriptionMonitoring earthquake data in Indonesia using BMKG official data. Use when the user asks for the latest earthquake, felt earthquakes, or information about a specific seismic event in Indonesia. OpenClaw Skills integration.
ownerbluemeda
repositorybluemeda/bmkg-monitor
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bluemeda/bmkg-monitor
last updatedFeb 7, 2026

Maintainer

bluemeda

bluemeda

Maintains bmkg-monitor in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
seismology.md
965 B
scripts
get_gempa.py
2.9 KB
_meta.json
278 B
SKILL.md
1.6 KB
SKILL.md

name: bmkg-monitor description: Monitoring earthquake data in Indonesia using BMKG official data. Use when the user asks for the latest earthquake, felt earthquakes, or information about a specific seismic event in Indonesia.

BMKG Monitor

Monitor and analyze seismic activity in Indonesia using real-time data from the Badan Meteorologi, Klimatologi, dan Geofisika (BMKG).

Quick Start

Run the monitor script to fetch the latest data:

# Get the latest significant earthquake (M5.0+)
python3 scripts/get_gempa.py latest

# Get list of earthquakes felt by people (including smaller ones)
python3 scripts/get_gempa.py felt

# Get recent history of M5.0+ earthquakes
python3 scripts/get_gempa.py recent

# Get detailed Moment Tensor and Phase history
python3 scripts/get_gempa.py detail <EVENT_ID>

Workflows

1. Checking for Recent Shaking

If a user reports feeling a tremor or asks "Was there a quake?", run get_gempa.py felt first. This list includes smaller, shallow quakes that people actually feel.

2. Deep Analysis

When a significant quake occurs, use references/seismology.md to explain:

  • The meaning of the Magnitude.
  • The intensity levels (MMI scale) reported.
  • Potential impact based on depth and location.

3. Coordinating with News

If the user provides a "Moment Tensor" or "Beach Ball" diagram (usually from a detailed BMKG report), refer to the "Moment Tensor" section in references/seismology.md to identify if the quake was Strike-Slip, Normal, or Thrust.

References

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install bmkg-monitor?

Run openclaw add @bluemeda/bmkg-monitor in your terminal. This installs bmkg-monitor into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bluemeda/bmkg-monitor. Review commits and README documentation before installing.