feat(skills): add AWS MCP usage skill for Panther AI - #2113
Draft
itsmostafa wants to merge 4 commits into
Draft
Conversation
rleighton
reviewed
Jun 24, 2026
rleighton
reviewed
Jun 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Background
Low Risk — Adds a single, self-contained
AnalysisType: skillartifact. It is not auto-loaded by any code (EagerLoading: false) and is gated behind a connected AWS MCP server, so it has no effect unless explicitly imported into a tenant and an AWS MCP server is present.skills/panther_ai_aws_usage_skill.yml, a Panther AI skill that teaches the assistant how to safely use a connected AWS MCP server (read-only first, region/scope awareness, correlating AWS findings with Panther alerts/detections).panther_ai_tool_searchrather than eager-loaded, andRequiredTools: [.*_call_aws]ensures it only activates when an AWS MCP server is actually connected.Changes
skills/panther_ai_aws_usage_skill.ymlwith skill metadata (SkillName,DisplayName,Description,Tags), activation gating (RequiredTools), and the guidancePrompt.Testing
ManageAISkills) and validated end to end.Notes for Reviewing
Promptcontent — it's the actual guidance Panther AI will follow, especially the "Operate safely" section (read-only defaults, confirmation before mutating calls).RequiredTools: [.*_call_aws]pattern matches the real registered tool name (<sanitized_server_name>_call_aws); the file comments explain the reasoning.