Warning
These skills are experimental. They are not covered by existing Splunk support contracts. Review Support before using them.
This repository contains reusable skills for AI agents working with Splunk.
| Skill | Purpose |
|---|---|
custom-visualization-builder |
Scaffold, build, package, and install a custom visualization into Splunk using the dashboard-studio-extension framework. |
splunk-dashboard-converter |
Convert classic Splunk Simple XML dashboards (version 1) into Dashboard Studio (version 2), preserve every SPL query verbatim, and return the Studio JSON definition to the caller. |
Each skill is self-contained under skills/.
This repository uses the skills/<name>/SKILL.md layout expected by
compatible AI coding agents.
Available skill IDs:
custom-visualization-buildersplunk-dashboard-converter
List the skills before installing:
npx skills add splunk/splunk-agent-skills --listRun one of these commands from a project root to copy both skills for the selected agent:
npx skills add splunk/splunk-agent-skills --skill '*' --agent claude-code --copy --yes
npx skills add splunk/splunk-agent-skills --skill '*' --agent codex --copy --yes
npx skills add splunk/splunk-agent-skills --skill '*' --agent cursor --copy --yes
npx skills add splunk/splunk-agent-skills --skill '*' --agent github-copilot --copy --yes
npx skills add splunk/splunk-agent-skills --skill '*' --agent gemini-cli --copy --yes
npx skills add splunk/splunk-agent-skills --skill '*' --agent opencode --copy --yesProject scope is the default. Add --global to install into the selected
agent's user-level skills directory instead. To copy only one skill, name it
with --skill:
npx skills add splunk/splunk-agent-skills --skill custom-visualization-builder --agent codex --copy --yesFor a manual installation, clone or download this repository and copy the
desired directory from skills/ into the skills directory configured for the
agent. Read the selected SKILL.md before use; it defines the prerequisites,
workflow, and safety boundaries for that skill.