ソース情報
- リポジトリ
- openshift/console
- ソースの最終更新活動
- 2026年2月10日 14:10
- 検出された SKILL.md の言語
- 英語
- スター
- 460
- フォーク
- 745
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/openshift/console --skill testコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Review changes to the OpenShift Console plugin API for compliance with contribution guidelines, styleguide, and proper documentation in changelogs. Provides a detailed report of findings and compliance score.
Audit all Claude Code skills for stale references, broken paths, and deprecated tool names
Migrate a Cypress test file (.cy.ts) or Gherkin feature file (.feature) to Playwright following Console's architecture. This is the ONLY skill for Cypress-to-Playwright conversion work, you can perform full migration, analysis-only (--analyze), or dry-run (--dry-run) modes.
SOC 職業分類に基づく
SKILL.md を表示中
| name | test |
| description | Run tests (frontend, backend, unit, or all) |
| argument-hint | [frontend|backend|unit <name>|all] |
Run tests based on the arguments provided:
$ARGUMENTS contains "frontend", run ./test-frontend.sh$ARGUMENTS contains "backend", run ./test-backend.sh$ARGUMENTS contains "unit", run cd frontend && yarn test and pass any additional arguments after "unit"$ARGUMENTS contains "all", run ./test-frontend.sh first (to generate i18n files), then run ./test-backend.shNote: When running all tests, the frontend tests must run first because they generate i18n localization files. If the backend tests run in parallel during i18n generation, the backend vendor check will detect these generated files as git changes and fail.
Examples:
/test or /test all - Run all tests/test frontend - Run frontend tests only/test backend - Run backend tests only/test unit - Run Jest unit tests/test unit MyComponent - Run Jest unit tests matching "MyComponent"/test frontend backend - Run both frontend and backend testsReport the results from the test suite(s). If any tests fail, troubleshoot the failures and fix them.