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 @@ -74,6 +74,11 @@
"source": "./plugins/must-gather",
"description": "A plugin to analyze and report on must-gather data"
},
{
"name": "microshift-prow-job",
"source": "./plugins/microshift-prow-job",
"description": "Analyze MicroShift Test Results from Prow CI jobs"
},
{
"name": "hcp",
"source": "./plugins/hcp",
Expand Down
11 changes: 11 additions & 0 deletions PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This document lists all available Claude Code plugins and their commands in the
- [Hcp](#hcp-plugin)
- [Hello World](#hello-world-plugin)
- [Jira](#jira-plugin)
- [Microshift Prow Job](#microshift-prow-job-plugin)
- [Must Gather](#must-gather-plugin)
- [Olm](#olm-plugin)
- [Openshift](#openshift-plugin)
Expand Down Expand Up @@ -107,6 +108,16 @@ A plugin to automate tasks with Jira

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

### Microshift Prow Job Plugin

Analyze MicroShift Prow CI jobs

**Commands:**
- **`/microshift-prow-job:analyze-job` `<job-url>`** - Analyze a MicroShift Prow CI job execution
- **`/microshift-prow-job:analyze-test-scenario` `<job-url> <scenario-name>`** - Analyze MicroShift Test Scenario results

See [plugins/microshift-prow-job/README.md](plugins/microshift-prow-job/README.md) for detailed documentation.

### Must Gather Plugin

A plugin to analyze and report on must-gather data
Expand Down
27 changes: 27 additions & 0 deletions docs/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,33 @@
],
"has_readme": true
},
{
"name": "microshift-prow-job",
"description": "Analyze MicroShift Test Results from Prow CI jobs",
"version": "0.0.1",
"commands": [
{
"name": "analyze-job",
"description": "Analyze a MicroShift Prow CI job execution",
"synopsis": "/microshift-prow-job:analyze-job <job-url>",
"argument_hint": "<job-url>"
},
{
"name": "analyze-test-scenario",
"description": "Analyze MicroShift Test Scenario results",
"synopsis": "/microshift-prow-job:analyze-test-scenario <job-url> <scenario-name>",
"argument_hint": "<job-url> <scenario-name>"
}
],
"skills": [
{
"name": "Extract MicroShift Version",
"id": "extract-microshift-version",
"description": "Extract MicroShift version and build type from Prow CI build logs"
}
],
"has_readme": true
},
{
"name": "hcp",
"description": "Generate HyperShift cluster creation commands via hcp CLI from natural language descriptions",
Expand Down
10 changes: 10 additions & 0 deletions plugins/microshift-prow-job/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "microshift-prow-job",
"description": "Analyze MicroShift Prow CI jobs",
"version": "0.0.1",
"author": {
"name": "Alejandro Gullón",
"email": "[email protected]",
"url": "https://github.com/agullon"
}
}
Loading