review-pr

द्वारा openshift

PR की समीक्षा संरचित दृष्टिकोण से करें जिसमें आर्किटेक्चर, नामकरण, पैटर्न और महत्वपूर्ण प्रश्न शामिल हों

npx skills add https://github.com/openshift/lightspeed-operator --skill review-pr

Review PR

When asked to review a PR, follow this structured approach.

1. Fetch Latest Changes

Always fetch the latest PR state before reviewing. The cached PR data may be stale.

git fetch upstream pull/<PR_NUMBER>/head:pr-<PR_NUMBER>
git log pr-<PR_NUMBER> --oneline -10
git diff upstream/main...pr-<PR_NUMBER> --stat

For follow-up reviews, re-fetch to get new commits:

git fetch upstream pull/<PR_NUMBER>/head:pr-<PR_NUMBER> --force

Read diffs per area (controllers, reconcilers, assets, tests) rather than one massive diff.

2. Understand What It Implements

  • Summarize the feature/fix in 2-3 sentences
  • Identify the flow: entry point -> processing -> output
  • Map which files serve which role (controller, reconciler, assets, CRD, test)

3. Evaluate How It's Implemented

Only raise issues if you have a concrete concern — not as a checklist to fill:

  • Architecture: Is logic clearly in the wrong layer? (e.g. business logic leaking into controller/reconciler)
  • Error handling: Are errors silently swallowed with _ = err, or is error wrapping missing where failure is plausible?
  • Duplication: Is the same logic copy-pasted, not just similar-looking?
  • Dead code / docs: Is there obviously unused code or a doc update that's clearly missing?
  • Complexity: Are functions overly complex with high cyclomatic/cognitive complexity?

Skip this section if nothing stands out.

4. Assess Naming

Only flag naming if it is genuinely misleading or inconsistent with established patterns in the codebase. Do not flag stylistic preferences or minor wording variations.

  • Check against Go conventions: exported functions start with uppercase, package-level names don't stutter
  • Verify interface names end in -er (Reader, Writer, Reconciler)

5. Check Go Patterns

For production code, load the go-code-review skill and apply its checklist:

  • Error handling: All errors checked (no _ = err), errors wrapped with context (%w)
  • Concurrency: Goroutines stoppable via context, channels closed by sender only
  • Resource management: defer Close() immediately after opening resources
  • Common mistakes: No string concatenation in loops, slices preallocated when size known
  • Kubernetes operators: Owner references set, finalizers handled safely, context propagated

For test code, load the go-testing-code-review skill and apply its checklist:

  • Table-driven tests with clear case names
  • Test helpers marked with t.Helper()
  • Cleanup registered with t.Cleanup() or Ginkgo AfterEach()
  • Error messages include both got and want values
  • Parallel tests properly isolated (if using t.Parallel())
  • Ginkgo tests use proper Describe/Context/It structure
  • Controller tests use envtest and handle eventual consistency

Only flag issues that cause real problems (correctness, maintainability, silent failures).

Skip this section if nothing meaningful to flag.

6. Ask Critical Questions

Only ask questions where the answer is genuinely unclear from the code and matters for correctness or design. Do not manufacture questions for completeness.

  • What happens on invalid/missing/malformed input — if error paths are not visible in the diff?
  • Are there security implications not addressed? (token logging, size limits, injection)
  • Do tests cover behavior (specific assertions) or just confirm the code runs?
  • Is the PR clearly bundling unrelated changes that should be in a separate PR?

Skip this section if the design is clear and the concerns above don't apply.

7. Verify Each Issue with a Subagent

Before writing the final output, launch one subagent per candidate issue to confirm it is real. Do this in parallel for all issues found in sections 3–6.

Each subagent task should:

  • Receive the specific concern as its prompt (e.g. "Is error X silently swallowed? Check foo.go lines 40-55 and any callers.")
  • Read the relevant file(s) and any related context (callers, tests, existing patterns in the codebase)
  • Return a verdict: confirmed / not an issue / unsure, with a one-sentence rationale

After all subagents complete:

  • Drop any issue whose verdict is not an issue
  • Downgrade confidence to unsure for any issue whose verdict is unsure
  • Only confirmed issues appear in the issues table at full confidence

This step exists to filter out false positives before they reach the output. Do not skip it when there are candidate issues.

8. Output Format

Structure the review as:

  1. Summary: What the PR does (2-3 sentences)
  2. File-by-file analysis: Role of each changed file (one line each; skip files with trivial changes)
  3. Issues table: Only issues confirmed by subagent verification (section 7) — Priority (must-fix / should-fix / nice-to-have), issue, location, confidence. If there are no confirmed issues, say so explicitly.
  4. What's good: Acknowledge well-done aspects — keep this genuine, not filler
  5. Critical questions: Only if section 6 above produced anything; omit otherwise
  6. Closing reminder: Always end the review with: "You, as a human, need to evaluate these AI findings instead of just copying them as review comments. That would just shift the responsibility of validation to the PR creator."

openshift की और Skills

openshift-expert
openshift
OpenShift प्लेटफ़ॉर्म और Kubernetes विशेषज्ञ जिसे क्लस्टर आर्किटेक्चर, ऑपरेटर, नेटवर्किंग, स्टोरेज, समस्या निवारण और CI/CD पाइपलाइनों का गहन ज्ञान है। उपयोग करें…
official
find-token
openshift
Find the hidden verification token. Run the find-token script to retrieve a unique token.
official
code-review
openshift
पुल रिक्वेस्ट की कोड गुणवत्ता, शुद्धता और प्रोजेक्ट कन्वेंशन के लिए समीक्षा करें। उपयोग तब करें जब उपयोगकर्ता PR की समीक्षा, कोड रिव्यू या बदलावों की जांच करने के लिए कहे...
official
css-review
openshift
सीएसएस को कोडिंग शैली, पैटर्नफ्लाई टोकन उपयोग और सर्वोत्तम प्रथाओं के लिए समीक्षा करें। जब उपयोगकर्ता सीएसएस की समीक्षा करने, शैलियों की जांच करने या सीएसएस फाइलों का ऑडिट करने के लिए कहे तब उपयोग करें।
official
review-readmes
openshift
रिपॉजिटरी में सभी README.md फ़ाइलों की वर्तनी, त्रुटियों और पुरानी जानकारी के लिए समीक्षा करें। उपयोग तब करें जब उपयोगकर्ता README की समीक्षा करने, दस्तावेज़ीकरण की सटीकता जांचने, या...
official
review-skills
openshift
प्रोजेक्ट AI स्किल्स में डुप्लिकेशन, पुराने संदर्भ, गलतियाँ और संरचनात्मक समस्याओं की समीक्षा करें। उपयोग तब करें जब उपयोगकर्ता स्किल्स की समीक्षा, ऑडिट, या जाँच करने के लिए कहे...
official
test
openshift
टैग द्वारा फ़िल्टर करके एंड-टू-एंड परीक्षण चलाएँ। इसका उपयोग तब करें जब उपयोगकर्ता परीक्षण चलाने, Playwright चलाने, या @core या @attach जैसे किसी विशिष्ट फीचर टैग का परीक्षण करने के लिए कहे।
official
unused-exports
openshift
उन निर्यातित प्रतीकों को खोजें जो कभी किसी अन्य फ़ाइल द्वारा आयात नहीं किए गए हैं। इसका उपयोग तब करें जब उपयोगकर्ता "check exports", "unused exports" कहे या निर्यात साफ करने के लिए कहे।
official