Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@
"name": "hcp",
"source": "./plugins/hcp",
"description": "Generate HyperShift cluster creation commands via hcp CLI from natural language descriptions"
},
{
"name": "polarion",
"source": "./plugins/polarion",
"description": "Polarion test management integration and test case tracking for OpenShift projects"
}
]
}
14 changes: 14 additions & 0 deletions PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This document lists all available Claude Code plugins and their commands in the
- [Must Gather](#must-gather-plugin)
- [Olm](#olm-plugin)
- [Openshift](#openshift-plugin)
- [Polarion](#polarion-plugin)
- [Prow Job](#prow-job-plugin)
- [Session](#session-plugin)
- [Utils](#utils-plugin)
Expand Down Expand Up @@ -151,6 +152,19 @@ OpenShift development utilities and helpers

See [plugins/openshift/README.md](plugins/openshift/README.md) for detailed documentation.

### Polarion Plugin

Polarion test management integration and test case tracking for OpenShift projects

**Commands:**
- **`/polarion:activity` `"[--days-back <days>] [--project-limit <num>] [--keywords <words>] [--output <file>]"`** - Generate comprehensive test activity reports across OpenShift projects with contributor tracking
- **`/polarion:health-check` `"[--verbose] [--projects] [--export]"`** - Verify Polarion connectivity, authentication, and project access permissions
- **`/polarion:projects` `"[--keywords <words>] [--limit <num>] [--output <file>]"`** - Discover and list OpenShift-related projects in Polarion with advanced filtering
- **`/polarion:test-runs` `"<project-id> [--days-back <days>] [--limit <num>] [--output <file>]"`** - Analyze test runs for specific projects with detailed filtering and export options
- **`/polarion:weekly-report` `"[--keywords <words>] [--output <file>] [--format <markdown|json>]"`** - Generate automated weekly test activity reports optimized for team communication

See [plugins/polarion/README.md](plugins/polarion/README.md) for detailed documentation.

### Prow Job Plugin

A plugin to analyze and inspect Prow CI job results
Expand Down
45 changes: 45 additions & 0 deletions docs/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,51 @@
}
],
"has_readme": true
},
{
"name": "polarion",
"description": "Polarion test management integration and test case tracking for OpenShift projects",
"version": "0.0.1",
"commands": [
{
"name": "activity",
"description": "Generate comprehensive test activity reports across OpenShift projects with contributor tracking",
"synopsis": "bash",
"argument_hint": "\"[--days-back <days>] [--project-limit <num>] [--keywords <words>] [--output <file>]\""
},
{
"name": "health-check",
"description": "Verify Polarion connectivity, authentication, and project access permissions",
"synopsis": "/polarion:health-check [--verbose] [--projects] [--export <file>]",
"argument_hint": "\"[--verbose] [--projects] [--export]\""
},
{
"name": "projects",
"description": "Discover and list OpenShift-related projects in Polarion with advanced filtering",
"synopsis": "/polarion:projects [--keywords <words>] [--limit <num>] [--output <file>] [--format <json|csv>] [--verbose]",
"argument_hint": "\"[--keywords <words>] [--limit <num>] [--output <file>]\""
},
{
"name": "test-runs",
"description": "Analyze test runs for specific projects with detailed filtering and export options",
"synopsis": "bash",
"argument_hint": "\"<project-id> [--days-back <days>] [--limit <num>] [--output <file>]\""
},
{
"name": "weekly-report",
"description": "Generate automated weekly test activity reports optimized for team communication",
"synopsis": "bash",
"argument_hint": "\"[--keywords <words>] [--output <file>] [--format <markdown|json>]\""
}
],
"skills": [
{
"name": "Polarion Client Integration",
"id": "polarion-client",
"description": "Comprehensive skill for integrating with Polarion test management system for test execution analysis"
}
],
"has_readme": true
}
]
}
8 changes: 8 additions & 0 deletions plugins/polarion/.claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "polarion",
"description": "Utilities and commands for interacting with Polarion",
"version": "0.0.1",
"author": {
"name": "github.com/openshift-eng"
}
}
8 changes: 8 additions & 0 deletions plugins/polarion/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "polarion",
"description": "Polarion test management integration and test case tracking for OpenShift projects",
"version": "0.0.1",
"author": {
"name": "github.com/openshift-eng"
}
}
Loading