AgentStack
SKILL verified MIT Self-run

Review

skill-impactcrew-dont-be-a-sloperator-review · by impactcrew

Run a multi-angle code review using three specialist agents in parallel. Use when the user types /review or when finishing a code task.

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

Install

$ agentstack add skill-impactcrew-dont-be-a-sloperator-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-impactcrew-dont-be-a-sloperator-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 Review? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

/review - Code Review

Run a multi-angle code review on the current branch using three specialist agents in parallel.

Usage

Type /review to review all changes on the current branch against main. Or /review to narrow the scope.

What it does

Launches three agents simultaneously, each reviewing the same diff from a different angle:

  1. Code Reviewer - Code quality, bugs, performance problems, maintainability
  2. Security Auditor - OWASP Top 10, injection risks, auth/authz issues, dependency vulnerabilities
  3. Architect Reviewer - Structural integrity, design patterns, coupling, scalability

Each agent runs on Sonnet for speed. Results are consolidated into a single report.

Instructions

Determine the review target:

  • If $ARGUMENTS is empty, review the full diff of the current branch against main
  • If $ARGUMENTS names a file or directory, scope the review to that area
  • If on main with uncommitted changes, review the working tree diff

Step 1: Gather context

git diff main...HEAD --stat
git diff main...HEAD

If $ARGUMENTS specifies a scope, filter to those paths.

Step 2: Launch reviewers

Launch all three agents in parallel using the Agent tool with run_in_background: true:

Agent 1: Code Review

  • subagent_type: "code-reviewer"
  • Prompt: "Review this diff for code quality issues. Check for bugs, performance problems, dead code, unclear naming, missing error handling, and adherence to existing code patterns. Prioritize issues by severity. Diff: [include diff]"

Agent 2: Security Audit

  • subagent_type: "security-auditor"
  • Prompt: "Audit this diff for security vulnerabilities. Check for OWASP Top 10 issues, injection risks, authentication/authorization problems, secrets exposure, insecure dependencies, and missing input validation. Prioritize by CVSS-equivalent severity. Diff: [include diff]"

Agent 3: Architecture Review

  • subagent_type: "architect-review"
  • Prompt: "Review this diff for architectural concerns. Check for proper separation of concerns, coupling issues, violated abstractions, missing patterns, scalability risks, and consistency with the existing codebase structure. Diff: [include diff]"

Step 3: Consolidate results

Once all three agents complete, present a single report:

## Review Results

### Critical (fix before merge)
- [list any critical findings from all three agents]

### Important (should fix)
- [list important findings]

### Suggestions (nice to have)
- [list suggestions]

### Clean
- [note any areas all three reviewers found no issues with]

If all three agents find nothing, say so: "All three reviewers passed. No issues found."

Step 4: Offer next steps

After presenting results, ask:

  • "Want me to fix any of these?" (if issues found)
  • "Ready to commit?" (if clean or after fixes)

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.