用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/openshift/console --skill test命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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.