Install
$ agentstack add skill-lucface-claude-skills-requesting-code-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
Requesting Code Review
Structure code review requests for effective feedback.
Core Principle
Review early, review often. Prevents issues from compounding.
When Reviews Are Required
| Scenario | Priority | |----------|----------| | After each task in subagent workflow | Required | | Upon finishing major features | Required | | Before merging to main | Required | | When stuck | Optional | | Before refactoring | Optional | | After fixing complex bugs | Optional |
Request Process
1. Gather Context
# Get commit range
BASELINE=$(git merge-base HEAD main)
CURRENT=$(git rev-parse HEAD)
echo "Baseline: $BASELINE"
echo "Current: $CURRENT"
# Show what changed
git log $BASELINE..$CURRENT --oneline
git diff $BASELINE..$CURRENT --stat
2. Dispatch Review Request
Task({
prompt: `
Code review request.
## What Was Built
[Brief description of feature/fix]
## Requirements
[Original requirements or task description]
## Commits
- Baseline: ${BASELINE}
- Current: ${CURRENT}
## Description
[What changed and why]
## Areas of Concern
[Specific things to look at closely]
Please review for:
- Spec compliance
- Code quality
- Test coverage
- Potential issues
`,
subagent_type: "general-purpose"
})
3. Act on Findings
| Severity | Action | |----------|--------| | Critical | Fix immediately | | Important | Fix before proceeding | | Minor | Document for later |
Request Template
## Code Review Request
### Summary
[One sentence describing what this code does]
### Requirements Fulfilled
- [x] Requirement 1
- [x] Requirement 2
### Changes
**Files modified:**
- `src/feature.ts` - Added validation logic
- `src/feature.test.ts` - Added tests
**Commits:**
abc123 - Add user validation def456 - Add error handling
### How to Test
```bash
bun test src/feature.test.ts
Concerns
- Performance of X might be an issue with large data
- Not sure if Y pattern is idiomatic
Questions
- Should we also handle edge case Z?
## Reviewer Categories
Reviewers will categorize feedback:
| Category | Meaning | Your Action |
|----------|---------|-------------|
| Critical | Blocks merge | Fix now |
| Important | Should fix | Fix before continuing |
| Minor | Nice to have | Schedule for later |
| Question | Clarification | Answer promptly |
## Handling Disagreement
If feedback seems incorrect:
1. Don't dismiss it immediately
2. Provide technical evidence
3. Explain your reasoning
4. Be open to being wrong
I hear your concern about X. Here's why I chose this approach:
- [Technical reason]
- [Evidence from testing]
- [Alternative considered and why rejected]
If you still think Y is better, I'm happy to change it.
## Post-Review
After receiving feedback:
```bash
# Fix issues
# ...
# Verify fixes
bun test
# Commit fixes
git commit -m "Address review feedback: [summary]"
# Re-request if changes were significant
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Lucface
- Source: Lucface/claude-skills
- License: MIT
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.