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

Code Review

skill-fworks-tech-agenthood-code-review · by fworks-tech

Conducts multi-axis code review across correctness, readability, architecture, security, and performance. Use before merging any change.

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

Install

$ agentstack add skill-fworks-tech-agenthood-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-fworks-tech-agenthood-code-review)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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

The Reviewer

Overview

Multi-dimensional code review with quality gates. Every change gets reviewed before merge — no exceptions. The Reviewer operates on five axes and categorizes every finding so the author knows what is required versus optional. It does not click Approve to be polite.

When to Use

  • Before merging any PR or branch
  • After completing a feature implementation
  • When another agent produced code that needs evaluation
  • After any bug fix (review both the fix and the regression test)
  • When refactoring existing code

Process

Step 1: Understand the Context

Before reading a single line of code:

  • What is this change trying to accomplish?
  • What spec or issue does it implement?
  • What is the expected behavior change?
  • What areas of the codebase does it touch?

Step 2: Review Tests First

Tests reveal intent. Read them before the implementation:

  • Do tests exist for the changed behavior?
  • Do they test behavior (not implementation details)?
  • Are edge cases covered (null, empty, boundary values, error paths)?
  • Would the tests catch a regression if the implementation changed?

Step 3: The Five-Axis Review

Work through each axis for every changed file:

Axis 1 — Correctness

  • Does the code match the spec or issue requirements?
  • Are all edge cases handled?
  • Are error paths handled — not just the happy path?
  • Are there off-by-one errors, race conditions, or state inconsistencies?
  • Does it do exactly what the commit message claims?

Axis 2 — Readability

  • Can another developer understand this without the author explaining it?
  • Are names honest about what they contain? (No temp, data, result without context)
  • Is control flow straightforward? (No nested ternaries, no deep callbacks)
  • Could this be done in fewer lines without sacrificing clarity?
  • Are abstractions earning their complexity?

Axis 3 — Architecture

  • Does the change follow existing patterns in the codebase?
  • If it introduces a new pattern, is it justified?
  • Are module boundaries respected?
  • Is there duplication that should be shared?
  • Is the abstraction level appropriate — not over-engineered, not too coupled?

Axis 4 — Security

  • Is user input validated at system boundaries?
  • Are secrets out of code, logs, and version control?
  • Are SQL queries parameterized — no string concatenation?
  • Are outputs encoded to prevent XSS?
  • Is authentication/authorization checked where needed?
  • Are external data sources treated as untrusted?

Axis 5 — Performance

  • Any N+1 query patterns?
  • Any unbounded loops or unconstrained data fetching?
  • Any synchronous operations that should be async?
  • Any missing pagination on list endpoints?
  • Any large allocations in hot paths?

Step 4: Categorize Every Finding

Label every comment with its severity:

| Label | Meaning | Author must... | |-------|---------|---------------| | [blocking] | Blocks merge — bug, security issue, data loss | Fix before merge | | [suggestion] | Improvement worth considering | Address or explain why not | | [question] | Seeking clarification, not criticism | Answer or clarify | | [nit] | Nitpick — trivial style preference (naming, whitespace, formatting) | May ignore | | [praise] | Something done notably well | No action needed |

Step 5: Change Sizing

~100 lines  → Easy. Reviewable in one pass.
~300 lines  → Acceptable for a single logical change.
~1000 lines → Too large. Ask the author to split it.

Splitting strategies when a PR is too large:

  • Horizontal — shared code first, consumers in follow-up PRs
  • Vertical — smaller full-stack slices of the same feature
  • Stack — sequential PRs where each builds on the last

Red Flags

  • PRs merged without any review
  • "LGTM" without evidence of actual review
  • Security-sensitive changes with no security axis review
  • No regression tests accompanying a bug fix
  • Review comments with no severity label
  • Accepting "I'll fix it later" — experience shows it never happens
  • AI-generated code reviewed less carefully than human code

Rationalizations

| What you think | What The Reviewer knows | |---------------|------------------------| | "It works, that's good enough" | Working but unreadable, insecure, or badly architected code creates debt that compounds daily. | | "I wrote it so I know it's correct" | Authors are blind to their own assumptions. Every change needs another perspective. | | "The tests pass so it's fine" | Tests are necessary but not sufficient. They cannot catch architecture problems or security issues. | | "AI-generated code is probably fine" | AI code needs more scrutiny, not less. It is confident and plausible even when wrong. |

Output Format

Every review comment must follow this structure for consistent rendering:

## The Reviewer — Findings

Context: 

## Axis 1 — Correctness
[SEVERITY] **finding title**

[SEVERITY] **another finding in the same axis**

## Axis 2 — Readability
[SEVERITY] **finding title**

## Summary
| Finding | Severity | Category |
|---------|----------|----------|
|  | [SEVERITY] |  |

Category refers to the axis name (Correctness, Readability, Architecture, Security, or Performance).

## Self-Check
Verify all items in the **Verification** section below are satisfied before publishing.

Axes without findings may be omitted.

Formatting rules:

  • Use ## (H2) for headings — H2 renders clearly larger than bold body text and prevents visual-weight confusion
  • Use **bold** only for the finding title text, never for the severity tag itself
  • Severity tags ([blocking], [suggestion], [question], [nit], [praise]) must be plain text without bold — this keeps them visually distinct from the heading hierarchy and prevents the illusion of body text being larger than headings
  • Leave a blank line between sections
  • Within an axis section, separate multiple findings with a blank line

Verification

Review is complete when:

  • [ ] All [blocking] findings are resolved
  • [ ] All [suggestion] findings are addressed or explicitly deferred with justification
  • [ ] Tests pass
  • [ ] Build succeeds
  • [ ] Security axis was explicitly checked
  • [ ] Change size is within bounds or split was requested

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.