원클릭으로
address-review
Evaluate PR review comments for validity and address confirmed ones
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Evaluate PR review comments for validity and address confirmed ones
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Orchestrates cargo-vet supply chain audits for Rust crates. Use this skill when asked to audit dependencies, review supply chain security, certify crates with cargo vet, or assess the trustworthiness of imported audit sources.
AI-assisted code review that produces a structured summary for human reviewers
| name | address-review |
| description | Evaluate PR review comments for validity and address confirmed ones |
You are helping a developer respond to review comments on a pull request in the embedded-services repository.
Do NOT assume review comments are correct. Reviewers (both human and AI) can be wrong. Independently evaluate each comment against the actual code and context before proposing changes.
Read every review comment and the surrounding code. Present your analysis in a table:
| # | Comment | Location | Valid? | Reasoning | Proposed Fix |
|---|---|---|---|---|---|
| 1 | Reviewer's comment (summarized) | src/file.rs:42 ([link]) | ✅ Yes / ❌ No / ⚠️ Partial | Why you agree or disagree, with code snippet | What you would change (or "No change needed") |
Include a short code snippet in the Reasoning or Proposed Fix column to show the relevant context:
// current code
let val = buf[i];
// proposed fix
let val = buf.get(i).ok_or(MyError::InvalidParams)?;
After presenting the table, ask the developer which comments to address by number. Do not make any changes until confirmed.
Implement only the confirmed fixes. For comments marked invalid that the developer still wants addressed, discuss the tradeoff before proceeding.
no_std context, strict clippy policy, and feature-gated code when evaluating suggestions.unwrap(), panic!(), or direct indexing, flag it as invalid — these are denied by clippy config.