Open
Conversation
…p 25 Add native/systems code support (C, C++, Rust) alongside existing OWASP Top 10 web patterns. New cwe-top25-native.context covers memory safety (CWE-787, 416, 125, 119), integer overflow (CWE-190), null deref (CWE-476), race conditions (CWE-362), format strings, and compiler hardening checks. SKILL.md gains auto-detection for native code, a subagent validation step (Step 5.5) to reduce false positives, and C/C++/Rust language adaptation examples.
… secdevai-export Replace inline validation logic with delegation to secdevai-validate skill (CVSS scoring, Red Hat severity, exploitability checks). Replace inline export code with optional user prompt that delegates to secdevai-export.
…SS analysis Extract inline finding validation from secdevai-review into a dedicated secdevai-validate skill. The new skill checks exploitability, calibrates severity against Red Hat's classification, and produces CVSS v3.1 base score analysis per finding. secdevai-review now delegates to this skill via subagent and reports only validated, exploitable findings.
Collaborator
|
This looks great |
Collaborator
owatkins-redhat
left a comment
There was a problem hiding this comment.
Looks good to me
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR broadens secdevai-review for native/systems code, introduces a dedicated secdevai-validate skill for calibrated findings, and tightens the review flow by delegating validation and export instead of inlining them.
Changes