kilo-org/kilo-marketplace

splunk-spl2-pipeline-kit

>- Render and lint reusable SPL2 pipeline templates for Cisco Data Fabric, Splunk Ingest Processor, and Edge Processor, including routing, redaction, sampling, lookups, metrics, OCSF, decrypt, stats, custom templates, SPL-to-SPL2 compatibility, and PCRE2 migration checks. Use when the user needs SPL2 pipeline authoring, conversion review, compatibility linting, or shared templates for Ingest Processor or Edge Processor workflows, including Cisco Data Fabric or telemetry pipeline management requ…

First seen Jun 28, 2026

Installation

$ npx skills add kilo-org/kilo-marketplace --skill splunk-spl2-pipeline-kit

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kilo-org/kilo-marketplace · top by installs.

npx skills add kilo-org/kilo-marketplace

Browse all from kilo-org/kilo-marketplace

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 173
License LICENSE
Default branch main
Open issues 14
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
category
observability
source
{"repository":"https:\/\/github.com\/chambear2809\/splunk-cisco-skills","path":"skills\/splunk-spl2-pipeline-kit","license_path":"LICENSE","commit":"99b2c778dbeaad84023765d24e1a13f414009f6a"}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,638 B
  • docs SUMMARY.md 572 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

Splunk SPL2 Pipeline Kit

This skill is the shared SPL2 authoring and validation surface for splunk-ingest-processor-setup and splunk-edge-processor-setup. It is offline-only: it renders starter SPL2, lints pipeline files, and reports profile compatibility issues without calling Splunk APIs.

For newer Cisco Data Fabric wording, this is the reusable SPL2 authoring route. Native Observability Metrics Pipeline Management remains a separate UI workflow covered by splunk-observability-deep-native-workflows.

Agent Behavior

  • Use ingestProcessor for Splunk-hosted Ingest Processor pipelines.
  • Use edgeProcessor for Edge Processor pipelines.
  • Keep real samples, private keys, HEC tokens, Observability tokens, and lookup

contents out of chat and rendered files. Render placeholders and file-path handoffs only.

  • Treat SPL-to-SPL2 conversion as review assistance. Splunk's in-product

conversion tool remains the authoritative conversion workflow.

  • Read reference.md before changing supported commands, templates, or lint

rules.

Quick Start

Render every template and lint the rendered output:

bash skills/splunk-spl2-pipeline-kit/scripts/setup.sh --phase all --profile both

Lint a user-provided pipeline:

bash skills/splunk-spl2-pipeline-kit/scripts/setup.sh \
  --phase lint \
  --profile ingestProcessor \
  --pipeline-file pipelines/my_pipeline.spl2

Run the offline smoke test:

bash skills/splunk-spl2-pipeline-kit/scripts/smoke_offline.sh

Outputs

The default output directory is splunk-spl2-pipeline-kit-rendered/:

  • templates/<profile>/*.spl2 - route, branch, redact, sample, lookup,

extract, timestamp, JSON/XML, OCSF, decrypt, metrics, stats, S3, and compatibility starters where supported.

  • custom-template-app/default/data/spl2/*.spl2 - SPL2 custom template module

examples using @template and runtime profile metadata.

  • lint-report.json and lint-report.md.
  • coverage-report.json.

Guardrails

  • logstometrics requires an `import logstometrics from

/splunk.ingest.commands` style import and is Ingest Processor-only.

  • decrypt is Ingest Processor-only and must be treated as a private-key

lookup handoff. Do not render private-key material.

  • stats linting rejects avg() because Ingest Processor documents

sum()/count() as the supported average pattern. Edge Processor stats is supported and includes newer state-window behavior on current EP versions.

  • objecttoarray() is deprecated in SPL2 release notes; use

json_entries().

  • Regex guidance is PCRE2-oriented. Prefer named captures like

(?P<fieldName>...).

  • Edge Processor-only and Ingest Processor-only differences are reported in

the lint output rather than hidden in comments.