2.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
| name | splunk |
| description | Search and analyze machine data via Splunk API. Run searches and manage dashboards. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/splunk |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/splunk |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
265 BSKILL.md
894 BSKILL.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.
Environment
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"
List Saved Searches
curl "$SPLUNK_URL/services/saved/searches?output_mode=json" \
-H "Authorization: Bearer $SPLUNK_TOKEN"
Links
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.
