laravel:code-review-requests

laravel:code-review-requests is a skill for Claude Code from jpcaparas/superpowers-laravel. It costs 29 tokens per session (1,512 once invoked), scanned A, original, MIT.

A guide for asking for focused code reviews in Laravel projects. Laravel is a PHP framework for building web applications.

In plain words
What is it for?
Use it to prepare review requests that identify concerns such as permissions, unsafe database queries, repeated database calls, transactions, and error handling.
Why use it?
It helps reviewers inspect the risks that matter instead of returning broad or generic comments.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the superpowers-laravel plugin — 12 skills, 44 commands, 1 agent, 1 hook shipped together

Good fit Use it to prepare review requests that identify concerns such as permissions, unsafe database queries, repeated database calls, transactions, and error handling.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jpcaparas/superpowers-laravel/code-review-requests
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add jpcaparas/superpowers-laravel --skill code-review-requests
Clone the repo
git clone --depth 1 https://github.com/jpcaparas/superpowers-laravel

Made for: Claude Code.

Or install superpowers-laravel, the plugin that ships this one along with the rest of its 12 skills, 44 commands, 1 agent, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for laravel:code-review-requests

README.md
[![agentmods](https://agentmods.dev/badge/skills/jpcaparas/superpowers-laravel/code-review-requests.svg)](https://agentmods.dev/skills/jpcaparas/superpowers-laravel/code-review-requests)
Your own site
<a href="https://agentmods.dev/skills/jpcaparas/superpowers-laravel/code-review-requests"><img src="https://agentmods.dev/badge/skills/jpcaparas/superpowers-laravel/code-review-requests.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,512 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.01512
Opus 5 $0.00015 $0.00756
Sonnet 5 $0.00006 $0.00302
Haiku 4.5 $0.00003 $0.00151

Measured 8d ago against content hash 5548141404bd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

laravel:code-review-requests scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/code-review-requests/SKILL.md · 260 lines

How it starts

The opening of the file, as written. The whole thing — 260 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Code Review Requests

Focused review requests get actionable feedback. Vague requests get generic advice.

Specify Focus Areas

Vague

"Review this code"

Focused

"Review OrderService for security and performance:

Focus on:

  • Authorization checks (are we verifying user owns the order?)
  • SQL injection risks (any raw queries?)
  • N+1 query problems (eager loading correct?)
  • Transaction handling (atomic operations?)
  • Error handling (graceful failures?)

Code:

class OrderService
{
    public function createOrder(User $user, array $items): Order
    {
        $order = Order::create(['user_id' => $user->id]);
        
        foreach ($items as $item) {
            OrderItem::create([
                'order_id' => $order->id,
                'product_id' => $item['product_id'],
                'quantity' => $item['quantity'],
            ]);
        }
        
        return $order;
    }
}
```"

**Why it works:** Clear focus areas guide the review toward specific concerns.

## Provide Context

### Insufficient Context
"Is this controller okay?"

### Sufficient Context
"Review ProductController for our API:

**Context:**
- Public API used by mobile app and web frontend
- Handles 10k requests/day, needs to scale to 100k
- Products have categories (belongsTo) and reviews (hasMany)
- Using Laravel 13.x with Sanctum authentication
- Following repository pattern (ProductRepository exists)

**Concerns:**
- Is the response format consistent with our other API endpoints?
- Are we handling errors appropriately?
- Should we add rate limiting?

**Code:**
```php
class ProductController extends Controller
{
    public function index(Request $request)
    {
        $products = Product::with('category')
            ->paginate(20);
            
        return ProductResource::collection($products);
    }
}
```"

**Why it works:** Context about usage, scale, patterns, and specific concerns.

## Architectural Feedback

### Unclear
"Is the architecture good?"

Read the full file on GitHub · 260 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 260 lines · 29 tokens per session scan A 5548141404bd

Subscribe to this mod's changes

laravel:code-review-requests is a skill published in the GitHub repository jpcaparas/superpowers-laravel (151 stars, last pushed 2mo ago), licensed MIT. It adds 29 tokens to every session and 1,512 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.