Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2a64efc
Add OTE migration plugin
ming1013 Dec 15, 2025
2fe42b6
Update OTE migration documentation
ming1013 Dec 26, 2025
2123c2e
Fix Go version compatibility in OTE migration
ming1013 Dec 31, 2025
40ff77b
Update OTE migration documentation
ming1013 Jan 14, 2026
bf418f6
OTE Migration Plugin: Multiple improvements
ming1013 Jan 21, 2026
58578bb
Fix markdown linting issues
ming1013 Jan 23, 2026
eaf7220
Fix CodeRabbit issues and add migration resume support
ming1013 Jan 23, 2026
9ae5c4f
Fix CodeRabbit review issues
ming1013 Jan 23, 2026
88948c9
Fix FixturePath migration to remove redundant testdata prefix
ming1013 Jan 27, 2026
2b11eb4
Automatically add Makefile targets for building/compressing binary
ming1013 Jan 27, 2026
e0fd393
Update README
ming1013 Jan 27, 2026
261b03a
Fix new review comments for README
ming1013 Jan 27, 2026
290ba3b
1. Pseudo-version timestamps - The most critical fix that prevents go…
ming1013 Jan 27, 2026
24f928e
Remove Phase1
ming1013 Jan 27, 2026
c450bee
Run git clones in parallel (50% faster, prevents timeout);Defer 'go m…
ming1013 Jan 28, 2026
8fb5516
Add language identifiers to code fences.
ming1013 Jan 28, 2026
54bb2f4
Automate k8s.io replace directive copying in monorepo mode
ming1013 Jan 28, 2026
db3281f
Flatten nested testdata paths for monorepo mode
ming1013 Jan 28, 2026
b17829d
Fix monorepo Makefile to directly build binary and generate bindata, …
ming1013 Jan 28, 2026
98acafb
Enhance Phase 6 automation for monorepo: run go mod tidy in both test…
ming1013 Jan 29, 2026
8af45ed
Add GOTOOLCHAIN=auto to monorepo Phase 4 go commands to handle Go ver…
ming1013 Jan 29, 2026
6684a74
Add automatic dependency conflict resolution for monorepo by syncing …
ming1013 Jan 29, 2026
dfb4083
Implement unified workspace/target-repo separation for both strategie…
ming1013 Jan 29, 2026
1885c7c
Reorganize input order to detect extension name from target repository
ming1013 Jan 29, 2026
abd38b2
Clarify that workspace is temporary and working directory becomes tar…
ming1013 Jan 29, 2026
c475ca1
Update test filtering documentation to reflect multi-tag OR logic
ming1013 Jan 29, 2026
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
6 changes: 6 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,12 @@
"source": "./plugins/gwapi",
"description": "Gateway API installation utilities for Kubernetes/OpenShift clusters",
"version": "0.0.1"
},
{
"name": "ote-migration",
"source": "./plugins/ote-migration",
"description": "Automate OpenShift Tests Extension (OTE) migration for component repositories",
"version": "1.0.0"
}
]
}
10 changes: 10 additions & 0 deletions PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This document lists all available Claude Code plugins and their commands in the
- [Olm](#olm-plugin)
- [Openshift](#openshift-plugin)
- [Origin](#origin-plugin)
- [Ote Migration](#ote-migration-plugin)
- [Prow Job](#prow-job-plugin)
- [Session](#session-plugin)
- [Sosreport](#sosreport-plugin)
Expand Down Expand Up @@ -273,6 +274,15 @@ Helpers for openshift/origin development.

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

### Ote Migration Plugin

Automate OpenShift Tests Extension (OTE) migration for component repositories

**Commands:**
- **`/ote-migration:migrate`** - Automate OpenShift Tests Extension (OTE) migration for component repositories

See [plugins/ote-migration/README.md](plugins/ote-migration/README.md) for detailed documentation.

### Prow Job Plugin

A plugin to analyze and inspect Prow CI job results
Expand Down
16 changes: 16 additions & 0 deletions docs/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1157,6 +1157,22 @@
"name": "gwapi",
"skills": [],
"version": "0.0.1"
},
{
"commands": [
{
"argument_hint": "",
"description": "Automate OpenShift Tests Extension (OTE) migration for component repositories",
"name": "migrate",
"synopsis": "bash"
}
],
"description": "Automate OpenShift Tests Extension (OTE) migration for component repositories",
"has_readme": true,
"hooks": [],
"name": "ote-migration",
"skills": [],
"version": "1.0.0"
}
]
}
8 changes: 8 additions & 0 deletions plugins/ote-migration/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "ote-migration",
"description": "Automate OpenShift Tests Extension (OTE) migration for component repositories",
"version": "1.0.0",
"author": {
"name": "minl@redhat.com"
}
}
Loading