Install
$ agentstack add skill-impactcrew-dont-be-a-sloperator-review ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
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 →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:
- Code Reviewer - Code quality, bugs, performance problems, maintainability
- Security Auditor - OWASP Top 10, injection risks, auth/authz issues, dependency vulnerabilities
- 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
$ARGUMENTSis empty, review the full diff of the current branch againstmain - If
$ARGUMENTSnames a file or directory, scope the review to that area - If on
mainwith 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.
- Author: impactcrew
- Source: impactcrew/dont-be-a-sloperator
- License: MIT
- Homepage: https://dontbeasloperator.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.