Install
$ agentstack add skill-redhat-et-rhdp-rca-plugin-root-cause-analysis ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Root Cause Analysis
Investigate failed jobs by correlating Ansible Automation Platform (AAP) job logs with Splunk OCP pod logs and analyzing AgnosticD/AgnosticV configuration to identify root causes.
Automatic Execution
When a user asks to analyze a failed job, execute these steps automatically. The skill's base path is provided when this skill is invoked. Run scripts relative to this folder.
Preflight Check (run before first analysis)
# Create virtual environment and install dependencies (if .venv doesn't exist)
python3 -m venv .venv && .venv/bin/pip install -q -r requirements.txt
# Check all prerequisites (use --json for structured output)
.venv/bin/python scripts/cli.py setup --json
Review the JSON output. Some settings are required, others are optional:
Required (skill will not proceed without these):
- JOBLOGSDIR -- Local directory for job log files
- JUMPBOX_URI -- SSH jumpbox connection for uploading analysis results and feedback
Recommended (analysis works without these but functionality is reduced):
- MLFlow -- Tracing configuration for recording analysis runs (MLFLOWTRACKINGURI, MLFLOWEXPERIMENTNAME, MLFLOWTAGUSER)
Optional (skill runs with reduced functionality when missing):
- SSH / REMOTEHOST not configured:
--fetchflag won't work (user must provide logs in JOBLOGS_DIR manually) - Splunk not configured: Steps 2-3 (log correlation) will be skipped
- GitHub token not configured: Step 4 (config fetching) will be skipped
Interactive Setup for Missing Configs
If any checks have "status": "missing" and "configurable": true, offer to help the user configure them:
- List the missing configurable items grouped by check name
- Ask: "Would you like me to help configure these? I'll walk you through each one."
- If yes, for each missing check with
"configurable": true:
- Show the check name and each
env_vars[].promptto explain what's needed - If the env var has a
"default", mention it (user can press enter to accept) - If the env var has
"optional": true, let the user know they can skip it - Ask the user for the value
- SSH special handling: If the SSH check has
"ssh_setup_needed": true: - Ask the user for their SSH host alias name
- Check if that alias already exists in
~/.ssh/config-- if so, use it asREMOTE_HOST - If it doesn't exist, ask: do you want to create a new SSH config entry? If yes, ask for: hostname, username, port (default 22), and optional identity file path
- Read
~/.ssh/config, append the newHostblock, and write it back - Then set
REMOTE_HOSTto the alias name
- After collecting all values, read the project's
.claude/settings.jsonfile - Merge the new values into the
"env"block (create it if it doesn't exist) - If MLflow env vars were configured (MLFLOWTRACKINGURI, MLFLOWEXPERIMENTNAME), also add the required MLflow hooks to the
"hooks"block (create it if it doesn't exist):
``json "hooks": { "SessionStart": [ { "hooks": [ { "type": "command", "command": "INPUT=$(cat); SESSION_ID=$(echo \"$INPUT\" | jq -r '.session_id'); echo \"export CLAUDE_SESSION_ID='$SESSION_ID'\" >> \"$CLAUDE_ENV_FILE\"" }, { "type": "command", "command": "if [ \"$MLFLOW_CLAUDE_TRACING_ENABLED\" = \"true\" ]; then if ! pip show mlflow >/dev/null 2>&1; then pip install mlflow; fi; fi" } ] } ], "Stop": [ { "hooks": [ { "type": "command", "command": "python -c \"from mlflow.claude_code.hooks import stop_hook_handler; stop_hook_handler()\"" } ] } ] } ``
- Write the updated settings file
- Tell the user to restart the Claude Code session for env vars and hooks to take effect
- Important: Write secrets (tokens, passwords) to
.claude/settings.json-- ensure this file is in.gitignore
If checks show non-configurable errors (e.g., venv issues, rsync not found), provide the fix command instead.
MLFlow Server Startup
The MLFlow server preflight check automatically handles server connectivity:
- If the server is unreachable and
JUMPBOX_URIis configured, it starts an SSH tunnel automatically - If the tunnel is already running, it skips startup
- If the tunnel fails, it reports the error but the skill can still proceed (MLFlow is recommended, not required)
If any required checks (JOBLOGSDIR, JUMPBOX_URI) are still missing after the setup flow, do not proceed to analysis -- tell the user what's still needed. If MLFlow is missing, warn that tracing won't be recorded but proceed. If all required checks pass (recommended/optional items may remain missing), proceed to analysis.
Step 1-4: Run the analysis CLI
Always use --fetch when analyzing by job ID. This automatically downloads the log from the remote server if it's not already present locally, and skips fetching if the log is already there.
# By job ID (auto-fetches log from remote if not found locally)
.venv/bin/python scripts/cli.py analyze --job-id --fetch
# By explicit path (when you already have the log file)
.venv/bin/python scripts/cli.py analyze --job-log
The cli.py analyze command automatically runs all steps:
- Step 1: Parse job log → Extract job ID, GUID, namespace, failed tasks, time window
- Step 2: Query Splunk → Fetch pod logs from namespace within job time window
- Step 3: Correlate → Merge AAP and Splunk events into unified timeline
- Step 4: Fetch GitHub files → Parse job metadata, fetch AgnosticV configs and AgnosticD workload code (requires
GITHUB_TOKENto be configured)
Outputs: .analysis//step1_job_context.json, step2_splunk_logs.json, step3_correlation.json, step4_github_fetch_history.json
This skill automatically searches for job logs in the configured JOB_LOGS_DIR.
Manual Usage
From this skill's directory:
# Setup virtual environment (one time)
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
# Analyze by job ID (auto-fetches log if needed, runs steps 1-4)
.venv/bin/python scripts/cli.py analyze --job-id 1234567 --fetch
# Or analyze with explicit path
.venv/bin/python scripts/cli.py analyze --job-log /path/to/job_123.json.gz
GitHub MCP Verification: If step4 output contains "error": "all_paths_failed" or any error status (e.g., "status": "404", "status": "timeout", "status": "500") in paths_tried arrays, reasoning errors using MCP tools. See [githubmcpverification.md](githubmcpverification.md) for complete verification process.
Step 5: Analyze and Generate Summary (Claude's task)
Input: Read the following files in order:
- REQUIRED:
step1_job_context.json- Job metadata and failed task details - REQUIRED:
step3_correlation.json- Correlated timeline with relevant pod logs (DO NOT read step2 unless needed) - REQUIRED:
step4_github_fetch_history.json- Configuration and code context - CONDITIONAL:
step2_splunk_logs.json- Only read if step3 indicates errors needing deeper investigation
Output: .analysis//step5_analysis_summary.json
Post-Step 5 Action: After saving the summary, you MUST run the upload command to send the analysis to the Jumpbox:
python scripts/cli.py upload --job-id
Analysis Guidelines
Configuration Analysis:
- Variable precedence: common.yaml → {platform}/account.yaml → {platform}/{catalog_item}/common.yaml
→ {platform}/{catalog_item}/{env}.yaml (later overrides earlier)
- Check for conflicts, missing variables, secrets references (
includes/secrets,!vault)
Task Analysis:
- Task action patterns:
kubernetes.core.k8s_info(RBAC/resource),ansible.builtin.uri(network/auth),command/shell(paths/permissions) - Duration: 300s (long retry/timeout)
- Time correlation: Pod error before/during/after task indicates infrastructure vs task-triggered issue
- Conditional execution: Check if
when:conditions executed incorrectly (variable precedence issue)
Summary Requirements
- Root Cause: Category (
configuration|infrastructure|workload_bug|credential|resource|dependency), summary, confidence - Evidence: Supporting evidence from AAP logs, Splunk logs, and GitHub configs/code
- REQUIRED: When
sourceisagnosticv_configoragnosticd_code, MUST includegithub_pathin formatowner/repo:path/to/file.yml:line - Extract GitHub paths from step4:
- Configs: From
step4.github_fetches[].fetched_configs.{purpose}.path→ construct as{config_owner}/{config_repo}:{path}(e.g.,example-org/config-repo:platform/account.yaml) - Workloads: From
step4.github_fetches[].location.parsed→ construct as{owner}/{repo}:{file_path}:{line_number}(e.g.,example-org/workload-repo:roles/example-role/tasks/main.yml:42)
- Correlation: How AAP logs link to Splunk (GUID, namespace, timestamps, pod names)
- Recommendations: Specific file changes with paths, actions, and reasons
- Include
github_pathin recommendations when referencing GitHub files (format:owner/repo:path/to/file.yml:line)
Note: Job details, failed tasks, and configuration data are available in step1 and step4 files - reference them rather than duplicating in the summary.
Schema
See schemas/summary.schema.json for complete structure. Example:
{
"job_id": "{job_id}",
"analyzed_at": "2025-01-15T10:30:45Z",
"root_cause": {
"summary": "Brief description of root cause",
"category": "configuration",
"confidence": "high"
},
"correlation": {
"method": "namespace_time_match",
"identifiers": {
"guid": "{guid}",
"namespace": "{namespace}",
"pod_name": "{pod_name}"
},
"time_overlap": {
"aap_job_start": "2025-01-15T10:30:00Z",
"aap_job_end": "2025-01-15T10:35:00Z",
"splunk_first_error": "2025-01-15T10:30:15Z",
"splunk_last_error": "2025-01-15T10:34:45Z",
"overlap_confirmed": true
}
},
"evidence": [
{
"source": "aap_job",
"timestamp": "2025-01-15T10:30:45Z",
"message": "'aws_access_key_id' is undefined"
},
{
"source": "agnosticv_config",
"timestamp": "2025-01-15T10:30:45Z",
"message": "Missing variable 'aws_access_key_id' in environment config",
"github_path": "example-org/config-repo:platform/account.yaml"
},
{
"source": "agnosticd_code",
"timestamp": "2025-01-15T10:30:45Z",
"message": "Task at line 42 uses undefined variable",
"github_path": "example-org/workload-repo:roles/example-role/tasks/main.yml:42"
}
],
"recommendations": [
{
"priority": "high",
"action": "Add missing variable",
"file": "platform/account.yaml",
"github_path": "example-org/config-repo:platform/account.yaml",
"github_url": "https://github.com/example-org/config-repo/blob/main/platform/account.yaml",
"change": "Add aws_access_key_id variable",
"details": "Variable is referenced but not defined"
}
],
"contributing_factors": ["Missing variable definition", "Incomplete configuration"]
}
Files
| Step | File | Author | |------|------|--------| | 1 | step1_job_context.json | Python | | 2 | step2_splunk_logs.json | Python | | 3 | step3_correlation.json | Python | | 4 | step4_github_fetch_history.json | Python (Optional Claude updates for MCP verification) | | 5 | step5_analysis_summary.json | Claude |
All files in .analysis//
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: redhat-et
- Source: redhat-et/rhdp-rca-plugin
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.