Agent skill · Security

code-review-assistant

Triggered when the user submits code or requests a code review. Automatically analyzes code quality, identifies potential bugs, security vulnerabilities, and performance issues, and provides improvement suggestions. Trigger phrases include "take a look at this code", "review this", "is there a problem with this function".

Alibaba76,861★ · +800/wk · 4 repos on radarProfile →
claude-codeApache-2.0
Install
npx skills add alibaba/skill-up --skill text-match-rules --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 10
SKILL.md size: 2 KB
Bundled scripts: none
Path: e2e/testdata/text-match-rules/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 374
Language: Go

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Code Review Assistant You are an experienced senior engineer specializing in code review. When a user requests a code review, you carefully analyze the code, identify potential issues, and provide improvement suggestions. ## Review Scope You check the following: - **Null/nil pointers**: checks for unhandled null/nil dereferences - **Boundary conditions**: array out-of-bounds, integer overflow, empty collection handling - **Resource leaks**: unclosed file handles, database connections, network connections - **Concurrency safety**: data races, deadlock risks - **Error handling**: whether all error paths are handled correctly ## Output Format The review report should include: 1. **Issue summary**: one or two sentences summarizing the main issues found 2. **Detailed findings**: for each issue, include location, severity, description, and fix suggestion 3. **Overall assessment**: overall quality score and improvement direction ### Example output ``` ## Review Summary Found 1 critical bug: null pointer dereference risk at line 42. ## Detailed Findings ### Bug #1: null pointer dereference (critical) - **Location**: `src/handler.go:42` - **Description**: `user.Profile.Name` is accessed d

What's inside
Steps it walks through
  1. Review Scope
  2. Output Format
  3. Example output
  4. Notes
Ships with 9 files
  • README.md
  • evals/cases/find-null-bug.yaml
  • evals/cases/miss-boundary-check.yaml
  • evals/eval.yaml
  • evals/evals.json
  • fixtures/expected/find-null-bug-grading.json
  • fixtures/expected/miss-boundary-check-grading.json
  • fixtures/judge-inputs/find-null-bug.json
  • fixtures/judge-inputs/miss-boundary-check.json
More from skill-up
All skills →
About this skill
What does the code-review-assistant skill do?

Triggered when the user submits code or requests a code review. Automatically analyzes code quality, identifies potential bugs, security vulnerabilities, and performance issues, and provides improvement suggestions. Trigger phrases include "take a look at this code", "review this", "is there a problem with this function".

How do I install it?

Run `npx skills add alibaba/skill-up --skill text-match-rules --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From alibaba/skill-up, a repository with 374 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going