AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Code Review

skill-developersglobal-ai-agent-skills-code-review · by DevelopersGlobal

Structured code review focusing on correctness, security, and maintainability. Correctness before style. Every reviewer comment must be actionable.

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-developersglobal-ai-agent-skills-code-review

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-developersglobal-ai-agent-skills-code-review)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Code Review? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Overview

Code review is the last line of defense before code reaches production. This skill structures the review process to catch real issues — not just style preferences — and ensures every comment is actionable and proportionate.

When to Use

  • Before merging any pull request
  • When reviewing AI-generated code
  • When auditing existing code for quality

Process

Step 1: Understand the Change

  1. Read the PR description fully — understand the intent before reading code.
  2. Check: Does the implementation match the stated intent?
  3. Identify the risk level: data mutation? auth changes? public API?

Verify: You understand what the PR is trying to accomplish.

Step 2: Correctness Review

  1. Does the code do what it claims to do?
  2. Are there off-by-one errors, null dereferences, or race conditions?
  3. Are all error cases handled?
  4. Do tests cover the happy path AND key failure paths?

Verify: You can trace the execution path for the primary use case and 2 failure cases.

Step 3: Security Review

  1. Apply [security-hardening skill](../security-hardening/SKILL.md) to any auth/input/data changes.
  2. Does this change open any OWASP Top 10 vulnerabilities?
  3. Are any secrets or PII handled correctly?

Step 4: Maintainability Review

  1. Will the next developer understand this code without the author present?
  2. Are functions doing one thing?
  3. Are names descriptive and accurate?
  4. Is complexity proportionate to the problem?

Step 5: Provide Actionable Feedback

  1. Every comment must be one of:
  • Blocker: Must be fixed before merge
  • Suggestion: Optional improvement
  • Question: Needs clarification (not necessarily a problem)
  1. Blockers must be specific: "This SQL query is vulnerable to injection via {username} — use parameterized queries."
  2. Never leave vague comments like "this doesn't look right" without explaining why.

Common Rationalizations (and Rebuttals)

| Excuse | Rebuttal | |--------|----------| | "I'll review it quickly" | A rushed review is not a review. Take the time or ask someone who can. | | "The tests pass so it's fine" | Tests prove the code works for tested inputs, not that it's secure or maintainable. | | "I'll comment on style later" | Style comments without blocker separation waste everyone's time. Label them. |

Verification

  • [ ] Correctness verified for primary and failure paths
  • [ ] Security review applied to sensitive changes
  • [ ] All comments labeled (blocker/suggestion/question)
  • [ ] Tests reviewed for meaningful coverage
  • [ ] No vague or unactionable comments

References

  • [security-hardening skill](../security-hardening/SKILL.md)
  • [references/security-checklist.md](../../references/security-checklist.md)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.