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.
npx agentmods add skills/arvo-ai/aurora/splunknpx skills add Arvo-AI/aurora --skill splunkgit clone --depth 1 https://github.com/Arvo-AI/auroraWrote 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.
[](https://agentmods.dev/skills/arvo-ai/aurora/splunk)<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>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.
| Model | Per session | Once 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 |
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.
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)
list_splunk_indexes()-- Discover available indexes. Always call first to understand what data is available.list_splunk_sourcetypes(index='X')-- Find log types within a specific index.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 Nto limit results. - Use
| stats count by FIELDto aggregate. - Use
| timechartto see trends over time. - The query is automatically prefixed with
searchif it does not start withsearchor|. max_countdefaults 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_indexesto discover available data before searching. - Use targeted queries with specific indexes for faster results.
- Results are truncated at 2MB. Use
| head Nor more specific queries to stay within limits. - Index and sourcetype names only allow alphanumeric characters, underscores, and hyphens.
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.
- 4d ago First seen · 70 lines · 25 tokens per session scan A 827bfa4b2dd0
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.
Other skills, from other repositories
cloud-iam-deep
GCP/AWS/Azure cloud exploitation -- Cloud Functions, Firestore, Cloud Run, S3, MinIO, Blob Storage, SA keys.
awesome-kubernetes-ops
This skill documents the local verification, editing, and deployment procedures for the Antigravity AI Agent when pair-programming with the repository maintainer.
isaac-automator
Deploy and operate a cloud Isaac Workstation with Isaac Automator: provision a GPU VM running Isaac Sim, Isaac Lab, and/or Isaac Lab Arena on AWS, GCP, Azure, or Alibaba Cloud, connect to it, move data in and out, control cost with stop/start, repair, import existing deployments, and destroy. Use when the user wants a…
Cloud Security & Container Hardening
AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment.
console-audit
Audit the running app via chrome-devtools MCP — console errors/warnings + failed/slow network by default; perf (LCP/CLS) and Lighthouse (a11y/SEO) are opt-in. Token-efficient (compacts findings in-browser via a console/network hook); the report is shown inline in the response — no files to open. Target one tab / an…
create-issue
Create GitHub issues using repo templates (feature, bug, spike).