A Claude Code plugin that extends Claude with specialized skills for DevOps and cloud-native development workflows.
Claudio Skills Plugin provides four production-ready skills designed to streamline interactions with GitLab CI/CD, Konflux, AWS CloudWatch Logs, and Slack. Each skill provides Claude Code with domain-specific capabilities, allowing you to leverage Claude as an intelligent assistant for complex DevOps tasks.
- CI/CD Job Analysis - Analyze GitLab pipeline failures, parse logs, and identify error patterns
- Konflux Release Orchestration - Automate stage-to-production release workflows on the Konflux platform
- AWS Log Analysis - Troubleshoot and analyze CloudWatch Logs with advanced querying
- Slack Utilities - Search messages, post updates, and interact with Slack workspaces
Analyze GitLab CI/CD job failures with structured scripts and error pattern recognition.
Use Cases:
- Summarize job activity across pipelines in a time range
- Analyze failures by runner type
- Deep-dive into specific pipeline failures
- Compare successful vs failed job runs
- Extract and categorize error patterns from job logs
Key Features:
- JSON-first output for programmatic parsing
- Time-based and runner-based analysis
- Error pattern recognition and categorization
- Uses
glabCLI directly through structured scripts
Work with Konflux - a build and release platform based on OpenShift and Tekton.
Use Cases:
- Create production releases from successful stage releases
- Query Konflux Release, Snapshot, and ReleasePlan resources
- Generate release YAMLs with release notes
- Orchestrate multi-component releases
- Follow stage-to-production deployment workflows
Key Features:
- Automates stage → production release pattern
- Deterministic YAML generation with Python scripts
- Self-contained with inline kubectl, glab, and skopeo commands
- Supports manual mode and config-driven mode with external product configs
Troubleshoot and analyze logs from AWS CloudWatch Logs.
Use Cases:
- Investigate errors and exceptions across log groups
- Trace requests through multiple services
- Analyze performance issues and slow queries
- Monitor for specific error patterns in real-time
- Perform complex log aggregations and analysis
Key Features:
- CloudWatch Logs filter patterns and Insights queries
- Real-time log tailing with filtering
- Multi-log-group search capabilities
- Efficient time range handling
Interact with Slack workspaces using the Slack Web API.
Use Cases:
- Search messages across channels
- Post messages and updates
- List channels and conversations
- Retrieve conversation history
Key Features:
- Uses Slack Web API for programmatic access
- Supports message search and posting
- Channel and conversation management
To get values for them the easiest way is to authenticate to your slack workspace in chrome/chromium browser
On same page go to More Tools -> Developer Tools
On Developer Tools go to:
- XOXC: Application -> Storage -> Local Storage -> https>//app.slack.com -> localConfig_v2 (key) -> 'token' key inside the json value
- XOXD: Application -> Storage -> Cookies -> https>//app.slack.com -> d (key)
Since it is slack enterpise we need to get value for User-Agent. To get it from same place we check Networking and check request headers to get the value,
it should be something similar to Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36
Disclaimer, the first time you reuse those Tokens you will probably be signed off as precaution, the second time you sign in the tokens should last.
Core Requirements:
- Claude Code CLI
- Git
Skill-Specific Dependencies:
Each skill manages its own dependencies through installer scripts in claudio-plugin/tools/:
| Skill | Required Tools | Auto-Installed |
|---|---|---|
| GitLab Job Analyzer | glab, jq |
jq only |
| Konflux Release | kubectl, glab, skopeo, python3 + PyYAML, jq |
kubectl, skopeo, jq, PyYAML |
| AWS Log Analyzer | aws CLI v2, jq |
Both |
| Slack Utilities | curl, jq, python3 + requests |
jq, requests |
Authentication:
- GitLab: Authenticate with
glab auth loginbefore using (required for GitLab Job Analyzer and Konflux Release) - Kubernetes: Configure kubectl context with
kubectl config use-context(required for Konflux Release) - AWS: Authenticate with AWS CLI (
aws configure, SSO, or instance profile) - Slack: Configure API token (see skill documentation or MCP server integration)
-
Clone this repository:
git clone <repository-url> cd claudio-plugin
-
The plugin will be automatically discovered by Claude Code from the
claudio-plugindirectory -
Verify installation by invoking a skill in Claude Code
Skills are invoked automatically by Claude Code when relevant to your request. You can also explicitly reference them:
# CI/CD analysis
"Analyze failed jobs in the last 24 hours for owner/repo"
# Konflux releases
"Create a production release for tag v1.2.3 in owner/repo"
# AWS log troubleshooting
"Find errors in /aws/application/myapp from the last hour"
# Slack operations
"Search for messages about 'deployment' in #engineering"
Using the Konflux Release skill:
"Create a production release for tag v1.2.3 in owner/repo"
Claude will:
- Resolve the tag to a commit SHA using
glab - Find successful stage releases using
kubectl - Generate production release YAMLs with the Python script
- Prepare release files for review (does not auto-apply)
Using the AWS Log Analyzer skill:
"Investigate errors in /aws/application/myapp from the last hour"
Claude will:
- Search CloudWatch Logs for errors with time-range filtering
- Extract and categorize error patterns
- Analyze error distribution and provide actionable insights
Using GitLab Job Analyzer skill:
"Analyze CI/CD failures for owner/repo in the last 24 hours, broken down by runner type"
Claude will:
- Run comprehensive job analysis
- Identify failure patterns by runner, stage, and error type
- Provide actionable insights
claudio-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── tools/
│ ├── common.sh # Shared library for tool installers
│ ├── TOOLS.md # Tool installation guide
│ ├── aws-cli/
│ │ └── install.sh # AWS CLI installer
│ ├── glab/
│ │ └── install.sh # glab GitLab CLI installer
│ ├── jq/
│ │ └── install.sh # jq installer
│ ├── kubectl/
│ │ └── install.sh # kubectl installer
│ ├── python/
│ │ ├── install.sh # Python pip installer
│ │ ├── konflux-release-requirements.txt
│ │ └── slack-requirements.txt
│ └── skopeo/
│ └── install.sh # skopeo installer
└── skills/
├── gitlab-job-analyzer/
│ ├── SKILL.md # GitLab CI/CD job analysis skill
│ └── scripts/ # Analysis scripts
├── konflux-release/
│ ├── SKILL.md # Konflux release workflow skill
│ └── scripts/
│ └── generate_release_yaml.py
├── aws-log-analyzer/
│ ├── SKILL.md # AWS CloudWatch Logs analysis skill
│ └── scripts/ # Log analysis scripts
└── slack-utilities/
├── SKILL.md # Slack Web API skill
└── scripts/ # Slack interaction scripts
The claudio-plugin/tools/ directory provides centralized installation scripts for CLI tools used by skills. This system ensures consistent, maintainable dependency management.
Design Principles:
- Simplicity: Scripts do one thing well - install the tool if not present
- Reusability: Common functions shared via
common.shlibrary - Linux-only: Focus on Linux x86_64 and ARM64 architectures
- Idempotent: Safe to run multiple times
Available Tools:
aws-cli/install.sh- AWS CLI v2 installerglab/install.sh- glab GitLab CLI installerjq/install.sh- jq JSON processor installerkubectl/install.sh- kubectl Kubernetes CLI installerpython/- Python package installers (pip-based requirements.txt files)skopeo/install.sh- skopeo container image inspector installer
Adding New Tools:
See claudio-plugin/tools/TOOLS.md for comprehensive guidelines on adding new tool installers.
When using multiple skills together (especially GitLab Job Analyzer + AWS Log Analyzer), follow these optimization patterns:
- Maximum Parallelization - Execute independent data fetches concurrently
- Parse JSON Directly - Use
jqon existing outputs instead of multiple queries - Eliminate Redundant Calls - Extract data from existing results
- Smart Targeting - Analyze first, then target specific resources
See CLAUDE.md for detailed optimization guidelines and performance benchmarks.
- Create a directory under
claudio-plugin/skills/<skill-name>/ - Add a
SKILL.mdfile with skill documentation - Add any required scripts under
scripts/ - Update
claudio-plugin/.claude-plugin/plugin.jsonif needed - Add tool installers to
claudio-plugin/tools/if dependencies are needed
Each skill includes its own test scenarios. Run skill-specific scripts directly to test functionality:
# Test GitLab job analyzer
./claudio-plugin/skills/gitlab-job-analyzer/scripts/analyze_recent_jobs.sh owner/repo --hours 24
# Test AWS log analyzer
./claudio-plugin/skills/aws-log-analyzer/scripts/analyze_errors.sh /aws/application/myapp 24- CLAUDE.md - Comprehensive plugin documentation for Claude Code
- LICENSE - Apache License 2.0
- tools/TOOLS.md - Tool installation guide
Skill-Specific Documentation:
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests and documentation
- Submit a pull request
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Claudio (v0.1.0)
For issues, questions, or feature requests, please file an issue on the GitHub repository.