laravel-auditor-development

laravel-auditor-development is a skill for Claude Code, Codex from MrPunyapal/laravel-auditor. It costs 46 tokens per session (1,464 once invoked), scanned A, original, MIT.

A setup and usage guide for Laravel Auditor, a package for Laravel applications that helps an AI coding agent perform audits. Laravel is a PHP framework for building web applications.

In plain words
What is it for?
Use it when installing Laravel Auditor, configuring it with Laravel Boost or its standalone installer, running diagnostics, or preparing an application for an audit.
Why use it?
It explains how to install and configure the package, expose its agent-facing resources, and verify that the setup works. It also separates setup from the later audit process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions OpenCode.

Good fit Use it when installing Laravel Auditor, configuring it with Laravel Boost or its standalone installer, running diagnostics, or preparing an application for an audit.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mrpunyapal/laravel-auditor/laravel-auditor-development
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 MrPunyapal/laravel-auditor --skill laravel-auditor-development
Clone the repo
git clone --depth 1 https://github.com/MrPunyapal/laravel-auditor

Made for: Claude Code, Codex.

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-auditor-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/mrpunyapal/laravel-auditor/laravel-auditor-development/github.svg)](https://agentmods.dev/skills/mrpunyapal/laravel-auditor/laravel-auditor-development)
Your own site
<a href="https://agentmods.dev/skills/mrpunyapal/laravel-auditor/laravel-auditor-development"><img src="https://agentmods.dev/badge/skills/mrpunyapal/laravel-auditor/laravel-auditor-development/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for laravel-auditor-development

Your own site · 80×15
<a href="https://agentmods.dev/skills/mrpunyapal/laravel-auditor/laravel-auditor-development"><img src="https://agentmods.dev/badge/skills/mrpunyapal/laravel-auditor/laravel-auditor-development.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,464 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.00046 $0.01464
Opus 5 $0.00023 $0.00732
Sonnet 5 $0.00009 $0.00293
Haiku 4.5 $0.00005 $0.00146

Measured 6d ago against content hash 021baa220943, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

laravel-auditor-development 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 6d 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.

resources/auditor/skills/laravel-auditor-development/SKILL.md · 136 lines

How it starts

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

Laravel Auditor Development

Use this skill when a Laravel application needs to install, configure, or apply the Laravel Auditor package. Auditor does not scan the app. After setup, the user asks their AI agent to use the laravel-audit skill.

Primary goals

  • Install Laravel Auditor as a development dependency.
  • Run the appropriate setup command (Boost-based or standalone).
  • Verify setup with the diagnostics command.
  • Use the audit workflow skill to perform an audit.

Workflow

1. Install the package

composer require --dev mrpunyapal/laravel-auditor

2. Set up resources

When Laravel Boost is installed, expose Auditor resources through Boost:

php artisan boost:install

(or php artisan boost:update after package updates).

When Boost is not installed, use the standalone installer:

php artisan auditor:install --agents=claude_code
php artisan auditor:install --agents=claude_code,opencode

The installer is idempotent and safe. It detects the Laravel application context, detects whether Boost is installed, prepares Auditor's agent-facing resources, and reports what it created or updated.

Non-interactive runs resolve agents from --agents, then laravel-auditor.agents, then project markers. When none of those resolve, no agents are wired. A .github directory alone is not treated as Copilot. Unknown --agents values warn and are skipped. To wire an agent that is not in the built-in list, add it under laravel-auditor.custom_agents. Pass --force to refresh Auditor-owned resources, including an existing laravel-auditor MCP entry.

3. Verify setup

php artisan auditor:status

4. Inspect the available rules and project facts

php artisan auditor:rules
php artisan auditor:context --list
php artisan auditor:context project_info

5. Run an audit

Ask the agent to use the laravel-audit skill to perform a structured, evidence-based audit of the application.

6. Render a report

Read the full file on GitHub · 136 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. 6d ago Changed 021baa220943
  2. 12d ago First seen · 136 lines · 46 tokens per session scan A 19276a7fc5fa

Subscribe to this mod's changes

laravel-auditor-development is a skill published in the GitHub repository MrPunyapal/laravel-auditor (47 stars, last pushed 6d ago), licensed MIT. It adds 46 tokens to every session and 1,464 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

laravel-best-practices

Laravel 13 conventions and best practices. Use when creating controllers, models, migrations, validation, services, or structuring Laravel applications. Triggers on tasks involving Laravel architecture, Eloquent, database, API development, or PHP patterns.

AsyrafHussin/agent-skills · 54 tokens

laravel-database-optimization

Laravel database optimization patterns. Use when writing Eloquent queries, creating migrations, configuring caching, debugging slow queries, or optimizing database performance. Triggers on tasks involving N+1 queries, indexing, Redis caching, pagination, or database transactions.

AsyrafHussin/agent-skills · 55 tokens

laravel-testing

Laravel 13 testing with Pest PHP 4 or PHPUnit 12. Use when writing feature tests, unit tests, or any test code in a Laravel application. Triggers on tasks involving HTTP tests, model factories, database assertions, mocking facades, authentication testing, or test organisation patterns.

AsyrafHussin/agent-skills · 62 tokens

php-best-practices

PHP 8.x modern patterns, PSR standards, and SOLID principles. Use when reviewing PHP code, checking type safety, auditing code quality, or ensuring PHP best practices. Triggers on "review PHP", "check PHP code", "audit PHP", or "PHP best practices".

AsyrafHussin/agent-skills · 64 tokens

laravel-ai-sdk

Laravel AI SDK for building AI-powered features. Use when creating agents, generating images or audio, working with embeddings, vector search, or testing AI features. Triggers on tasks involving laravel/ai, AI agents, tool-calling, structured output, streaming, embeddings, reranking, or AI faking in tests.

AsyrafHussin/agent-skills · 70 tokens

first-plan-lens-php

Stack lens para PHP. Use durante Discovery quando composer.json for detectado. Cobre Laravel, Symfony, Slim, Hyperf, Laminas, raw PHP. Identifica PSR compliance, ORM, padrões de fila.

vynazevedo/first-plan · 51 tokens