用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/opendatahub-io/odh-dashboard --skill coderabbit-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Guides Konflux CI/CD pipeline onboarding for new components — Jira tracking epic, upstream ODH Dockerfile, downstream RHOAI Dockerfile, standalone deployment manifests, OpenShift CI, dashboard-operator registration, and DevOps coordination. Operator registration is deferred here (not in /module-onboarding) because the operator deploys the module image, which must be buildable first.
Scaffold a new federated module under packages/. Runs mod-arch-installer, allocates ports, registers the feature flag and SupportedArea in the host, and verifies the build. Standalone manifests and operator registration are deferred to /konflux-onboarding (after CI/CD is set up and images are available). Pass the module name in kebab-case as the argument.
Debug envtest integration test failures in the Dashboard Module Controller. Analyzes test output, identifies failure patterns, reads relevant test code, and suggests fixes. Use when envtest tests fail locally or in CI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | coderabbit-review |
| description | Run CodeRabbit AI code review on your changes |
Run an AI-powered code review using CodeRabbit.
pwdgit rev-parse --is-inside-work-tree 2>/dev/null && echo "Yes" || echo "No"git branch --show-current 2>/dev/null || echo "detached HEAD"git status --porcelain 2>/dev/null | head -1 | grep -q . && echo "Yes" || echo "No"Review code based on: $ARGUMENTS
Skip these checks if you already verified them earlier in this session.
Otherwise, run:
coderabbit --version 2>/dev/null && coderabbit auth status 2>&1 | head -3
If CLI not found, tell user:
CodeRabbit CLI is not installed. Run in your terminal:
curl -fsSL https://cli.coderabbit.ai/install.sh | shThen restart your shell and try again.
If "Not logged in", tell user:
You need to authenticate. Run in your terminal:
coderabbit auth loginThen try again.
Once prerequisites are met:
coderabbit review --agent -t <type>
Where <type> from $ARGUMENTS:
all (default) - All changescommitted - Committed changes onlyuncommitted - Uncommitted onlyAdd --base <branch> if specified.
Group findings by severity:
Offer to apply fixes if codegenInstructions are present.