splunk

splunk is a skill for Claude Code, Codex from Arvo-AI/aurora. It costs 25 tokens per session (775 once invoked), scanned A, original, Apache-2.0.

A connection to Splunk, a service for searching and analysing machine-generated logs. It uses SPL, Splunk's query language, to inspect indexes, log types, and time-based results.

In plain words
What is it for?
Discovering available log indexes and sourcetypes, searching errors or HTTP failures, grouping results, and charting events over time.
Why use it?
It makes it easier to find error logs and patterns during root-cause analysis without manually browsing large log collections.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/arvo-ai/aurora/splunk
Any agent
npx skills add Arvo-AI/aurora --skill splunk
Clone the repo
git clone --depth 1 https://github.com/Arvo-AI/aurora

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for splunk

README.md
[![agentmods](https://agentmods.dev/badge/skills/arvo-ai/aurora/splunk.svg)](https://agentmods.dev/skills/arvo-ai/aurora/splunk)
Your own site
<a href="https://agentmods.dev/skills/arvo-ai/aurora/splunk"><img src="https://agentmods.dev/badge/skills/arvo-ai/aurora/splunk.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 775 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00025 $0.00775
Opus 5 $0.00013 $0.00387
Sonnet 5 $0.00005 $0.00155
Haiku 4.5 $0.00003 $0.00077

Measured 4d ago against content hash 827bfa4b2dd0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

splunk scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

server/chat/backend/agent/skills/integrations/splunk/SKILL.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Splunk Integration

Overview

Splunk integration for querying log data during Root Cause Analysis. Splunk is a REMOTE service -- do NOT search the local filesystem for Splunk files. Use ONLY the Splunk API tools listed below.

Instructions

Tool Usage (use in this order)

  1. list_splunk_indexes() -- Discover available indexes. Always call first to understand what data is available.
  2. list_splunk_sourcetypes(index='X') -- Find log types within a specific index.
  3. search_splunk(query='SPL query', earliest_time='-1h') -- Execute SPL queries to search logs.

Common SPL Patterns

  • Error search: search_splunk(query='index=X error | stats count by host', earliest_time='-1h')
  • HTTP errors: search_splunk(query='index=X status>=500 | head 50', earliest_time='-30m')
  • Group by field: search_splunk(query='index=X | stats count by source', earliest_time='-1h')
  • Time chart: search_splunk(query='index=X error | timechart count', earliest_time='-6h')

SPL Tips

  • Use | head N to limit results.
  • Use | stats count by FIELD to aggregate.
  • Use | timechart to see trends over time.
  • The query is automatically prefixed with search if it does not start with search or |.
  • max_count defaults to 100 results; increase for broader searches.

RCA Investigation Workflow

Step 1 -- Discover data: list_splunk_indexes() -- find which indexes contain relevant logs.

Step 2 -- Identify log types: list_splunk_sourcetypes(index='main') -- understand what sourcetypes exist in the target index.

Step 3 -- Search for errors: search_splunk(query='index=main error OR exception | stats count by host sourcetype', earliest_time='-1h')

Step 4 -- Narrow to specific timeframe: Use earliest_time and latest_time to focus on the alert window. Example: earliest_time='-30m'.

Step 5 -- Correlate with infrastructure: After Splunk analysis, correlate findings with cloud resources if cloud providers are connected.

Important Rules

  • Splunk is a REMOTE service. Never try to access Splunk data from the local filesystem.
  • Always start with list_splunk_indexes to discover available data before searching.
  • Use targeted queries with specific indexes for faster results.
  • Results are truncated at 2MB. Use | head N or more specific queries to stay within limits.
  • Index and sourcetype names only allow alphanumeric characters, underscores, and hyphens.

Read the full file on GitHub · 70 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 70 lines · 25 tokens per session scan A 827bfa4b2dd0

Subscribe to this mod's changes

splunk is a skill published in the GitHub repository Arvo-AI/aurora (404 stars, last pushed yesterday), licensed Apache-2.0. It adds 25 tokens to every session and 775 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories