<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How We Used Claude AI Skills to Build a Smarter, more Efficient Search partner with our Splunk System in Feedback</title>
    <link>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759950#M647</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/80737"&gt;@inventsekar&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Now, I will say that this project on our end is large with all our information, so I did have it summarize points, but then copied it into word and reviewed all the points and added details or what I felt was important to it. I will take all the help I can get with initial typing, but it is always definitely important to review prior to posting. I even had a team mate who has been working with me on this effort double check it to make sure it didn't include incorrect information.&lt;/P&gt;</description>
    <pubDate>Mon, 06 Apr 2026 21:31:57 GMT</pubDate>
    <dc:creator>durnan13</dc:creator>
    <dc:date>2026-04-06T21:31:57Z</dc:date>
    <item>
      <title>How We Used Claude AI Skills to Build a Smarter, more Efficient Search partner with our Splunk System</title>
      <link>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759948#M645</link>
      <description>&lt;H3&gt;The Problem We Were Solving&lt;/H3&gt;&lt;P class=""&gt;Our organization runs Splunk Cloud with a mix of index families, a fairly complex multi-layer application architecture, and a user base that ranges from power users writing &lt;CODE class=""&gt;tstats&lt;/CODE&gt; queries to people who are brand new to SPL. The challenge wasn't just "can AI write a Splunk search" — it was:&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;Can it write the &lt;EM&gt;right&lt;/EM&gt; search for &lt;EM&gt;our&lt;/EM&gt; environment?&lt;/LI&gt;&lt;LI&gt;Can we trust that it won't kick off a runaway scan against a production index with 90 days of data and no scope filter?&lt;/LI&gt;&lt;LI&gt;Can it know that &lt;CODE class=""&gt;realm=&lt;/CODE&gt; is the correct scoping identifier in our kube indexes but &lt;CODE class=""&gt;host=&lt;/CODE&gt; is what you want in our ivue indexes — and that these two values are &lt;EM&gt;not&lt;/EM&gt; interchangeable?&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;Out-of-the-box AI assistants don't know any of that. Without some assistance, our end users were struggling to get off the ground. We needed a way to encode it.&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;What Claude Skills Are&lt;/H3&gt;&lt;P class=""&gt;Claude (Anthropic's AI) has a feature called &lt;STRONG&gt;Skills&lt;/STRONG&gt; — essentially structured knowledge files you attach to a Claude Project or Plugin. Skills are Markdown documents that the model reads as authoritative instructions and reference material. They're not training — they're live context loaded into every conversation.&lt;/P&gt;&lt;P class=""&gt;This matters because it means you can give Claude your organization's actual knowledge, rules, and constraints, and it will apply them consistently. You're not hoping the model "remembers" best practices from its training data. You're telling it, explicitly, what your environment looks like and how you want it to behave.&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;What We Built: A Modular Skill File Architecture&lt;/H3&gt;&lt;P class=""&gt;We built what a Claude Project with a set of skill files organized around a master router (&lt;CODE class=""&gt;SKILL.md&lt;/CODE&gt;) that tells Claude which specialized skills to load based on the type of request.&lt;/P&gt;&lt;P class=""&gt;The architecture looks like this:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;PRE class=""&gt;&lt;CODE&gt;&lt;SPAN&gt;SKILL.md                          ← Master router&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;├── splunk-core.md                ← Always loaded — safety rules, approval framework&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;├── splunk-indexes.md             ← Index inventory, retention, "is this index active?"&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;├── splunk-search-writing.md      ← SPL patterns, macros, field reference&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;├── splunk-dashboards-viz.md      ← Dashboard Studio JSON generation&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;├── splunk-member-investigations.md ← Member scoping, lookup workflows&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;├── splunk-operations.md          ← Alerts, reports, rehydration processes&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;├── splunk-training.md            ← Adaptive onboarding for new users&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;└── references/&lt;/SPAN&gt;&lt;SPAN&gt;    &lt;BR /&gt;├── connector-limitations.md  ← MCP connector quirks and guardrails&lt;/SPAN&gt;&lt;SPAN&gt;    &lt;BR /&gt;├── cross-layer-investigation.md ← index pivot workflow&lt;/SPAN&gt;&lt;SPAN&gt;    &lt;BR /&gt;└── user-token-setup.md       ← Token provisioning guide&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class=""&gt;Each file is scoped to a specific domain. The router tells Claude which combination to load based on what the user is asking. Asking to write a search loads &lt;CODE class=""&gt;splunk-core&lt;/CODE&gt; + &lt;CODE class=""&gt;splunk-search-writing&lt;/CODE&gt;. Investigating a member issue loads &lt;CODE class=""&gt;splunk-core&lt;/CODE&gt; + &lt;CODE class=""&gt;splunk-member-investigations&lt;/CODE&gt; + &lt;CODE class=""&gt;splunk-search-writing&lt;/CODE&gt;. Building a dashboard adds &lt;CODE class=""&gt;splunk-dashboards-viz&lt;/CODE&gt;. We also are rolling this into a plugin to use for Claude Code as well.&lt;/P&gt;&lt;HR /&gt;&lt;P class=""&gt;From this we are aiming for two parts:&lt;BR /&gt;Part 1: Guardrails on Best Practices&lt;BR /&gt;Part 2: Encoding Our Splunk Structure (what is the purpose of an index or source type)&lt;BR /&gt;&lt;BR /&gt;We are running the Splunk MCP server here connected to our Claude system. I won't lie it took a bit to manage the initial setup to setup each user with individual tokens in the MCP server compared to other companies in which allow end users to manager their own tokens without gaining access to global admin settings.&lt;BR /&gt;&lt;BR /&gt;All in all, this has allowed our users to go from basic users to more informed and efficient users. Their confidence is growing as they learn from the training aspect of this setup. We are still in the testing phase, but for us it is a game changer. Curious how many other Splunk users are exploring this part of the AI world!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 21:05:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759948#M645</guid>
      <dc:creator>durnan13</dc:creator>
      <dc:date>2026-04-06T21:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: How We Used Claude AI Skills to Build a Smarter, more Efficient Search partner with our Splunk System</title>
      <link>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759949#M646</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/316536"&gt;@durnan13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;may we know, how we can make sure, this post is "NOT" written by Claude AI itself &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 21:24:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759949#M646</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2026-04-06T21:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: How We Used Claude AI Skills to Build a Smarter, more Efficient Search partner with our Splunk System</title>
      <link>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759950#M647</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/80737"&gt;@inventsekar&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Now, I will say that this project on our end is large with all our information, so I did have it summarize points, but then copied it into word and reviewed all the points and added details or what I felt was important to it. I will take all the help I can get with initial typing, but it is always definitely important to review prior to posting. I even had a team mate who has been working with me on this effort double check it to make sure it didn't include incorrect information.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 21:31:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759950#M647</guid>
      <dc:creator>durnan13</dc:creator>
      <dc:date>2026-04-06T21:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: How We Used Claude AI Skills to Build a Smarter, more Efficient Search partner with our Splunk System</title>
      <link>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759951#M648</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/316536"&gt;@durnan13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my initial reply was a "just kidding" kind of message, pls do not take it seriously, no hard feelings please.&amp;nbsp;&lt;/P&gt;&lt;P&gt;i really appreciate the good and formatted write-up. keep it up, thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 21:38:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759951#M648</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2026-04-06T21:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: How We Used Claude AI Skills to Build a Smarter, more Efficient Search partner with our Splunk System</title>
      <link>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759952#M649</link>
      <description>&lt;P&gt;Oh I completely laughed at your reply haha. No hard feelings here&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;! Thanks for the feedback! We have hit a couple of issues with the connection between Splunk and Claude and are working through those and as I mentioned in the post the MCP Server setup isn't the most friendly for an admin setting up 500 tokens, but hey! its a start!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 21:39:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Feedback/How-We-Used-Claude-AI-Skills-to-Build-a-Smarter-more-Efficient/m-p/759952#M649</guid>
      <dc:creator>durnan13</dc:creator>
      <dc:date>2026-04-06T21:39:56Z</dc:date>
    </item>
  </channel>
</rss>

