skills$openclaw/splunk
mrgoodb2.8k

by mrgoodb

splunk – OpenClaw Skill

splunk is an OpenClaw Skills integration for data analytics workflows. Search and analyze machine data via Splunk API. Run searches and manage dashboards.

2.8k stars8.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namesplunk
descriptionSearch and analyze machine data via Splunk API. Run searches and manage dashboards. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/splunk
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/splunk
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains splunk in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
265 B
SKILL.md
894 B
SKILL.md

name: splunk description: Search and analyze machine data via Splunk API. Run searches and manage dashboards. metadata: {"clawdbot":{"emoji":"📊","requires":{"env":["SPLUNK_URL","SPLUNK_TOKEN"]}}}

Splunk

Data analytics and SIEM.

export SPLUNK_URL="https://splunk.example.com:8089"
export SPLUNK_TOKEN="xxxxxxxxxx"

Run Search

curl -X POST "$SPLUNK_URL/services/search/jobs" \
  -H "Authorization: Bearer $SPLUNK_TOKEN" \
  -d "search=search index=main | head 10"

Get Search Results

curl "$SPLUNK_URL/services/search/jobs/{sid}/results?output_mode=json" \
  -H "Authorization: Bearer $SPLUNK_TOKEN"
curl "$SPLUNK_URL/services/saved/searches?output_mode=json" \
  -H "Authorization: Bearer $SPLUNK_TOKEN"
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 splunk?

Run openclaw add @mrgoodb/splunk in your terminal. This installs splunk 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/mrgoodb/splunk. Review commits and README documentation before installing.