project-laravel

project-laravel is a skill for Claude Code from nasrulhazim/claude. It costs 221 tokens per session (2,419 once invoked), scanned A, original, MIT.

A Laravel code generator and checker built around the conventions of the Kickoff project. It creates common application parts such as models, database migrations, routes, helpers, permissions, and tests in that project’s expected style.

In plain words
What is it for?
Use it to scaffold modules, generate models, enums, action classes, helpers, and modular routes, then check existing code against Kickoff conventions.
Why use it?
It helps keep generated and existing code consistent with local project rules. This reduces mismatched structure and repeated setup work when adding features.

Skill for Claude Code

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

Part of the claude-toolkit plugin — 36 skills, 12 commands, 20 agents shipped together

Good fit Use it to scaffold modules, generate models, enums, action classes, helpers, and modular routes, then check existing code against Kickoff conventions.

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

Made for: Claude Code.

Or install claude-toolkit, the plugin that ships this one along with the rest of its 36 skills, 12 commands, 20 agents.

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 project-laravel

README.md
[![agentmods](https://agentmods.dev/badge/skills/nasrulhazim/claude/project-laravel/github.svg)](https://agentmods.dev/skills/nasrulhazim/claude/project-laravel)
Your own site
<a href="https://agentmods.dev/skills/nasrulhazim/claude/project-laravel"><img src="https://agentmods.dev/badge/skills/nasrulhazim/claude/project-laravel/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 project-laravel

Your own site · 80×15
<a href="https://agentmods.dev/skills/nasrulhazim/claude/project-laravel"><img src="https://agentmods.dev/badge/skills/nasrulhazim/claude/project-laravel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 221 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,419 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.00221 $0.02419
Opus 5 $0.00111 $0.01210
Sonnet 5 $0.00044 $0.00484
Haiku 4.5 $0.00022 $0.00242

Measured 11d ago against content hash 45783fcc4fc8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

project-laravel 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 11d 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/project-laravel/SKILL.md · 257 lines

How it starts

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

Laravel Project Conventions

Enforce Kickoff's opinionated Laravel conventions and scaffold production-ready code that follows all project standards — models, enums, actions, routes, helpers, permissions, and architecture rules.

Command Reference

Command Description
/project scaffold Scaffold a new module (model + migration + factory + seeder + policy + controller + routes + tests)
/project model Generate a model extending Base with correct traits and conventions
/project enum Generate an enum implementing Contract with InteractsWithEnum
/project action Generate an action class with Builder pattern
/project helper Generate a helper function file in support/
/project route Add a modular route file in routes/web/ or routes/api/
/project check Audit existing code against Kickoff conventions

1. /project scaffold — Full Module Scaffold

Step 1: Gather Module Info

Ask the user:

  1. Module name (singular, e.g., Invoice)
  2. Fields (name:type pairs, e.g., title:string, amount:decimal, status:enum)
  3. Relationships (belongsTo, hasMany, belongsToMany)
  4. Needs API routes? (yes/no)
  5. Needs web routes? (yes/no — default yes)

Step 2: Generate Files

Create the following files in order:

  1. Migration — UUID PK, uuid column, timestamps, soft deletes (see references/database-conventions.md)
  2. Model — Extends App\Models\Base, uses correct traits (see references/model-conventions.md)
  3. Factory — Matches model fields with appropriate Faker methods (see references/database-conventions.md)
  4. Seeder — Uses factory with reasonable count (see references/database-conventions.md)
  5. Policy — Standard CRUD methods with Spatie permission checks (see references/access-control.md)
  6. Controller — Resource controller with policy authorization (suffix "Controller")
  7. Form Request — Store and Update request classes with validation rules
  8. Route file — Modular route in routes/web/ or routes/api/ (see references/route-conventions.md)
  9. Pest tests — Feature tests for all CRUD operations (delegate to kickoff-pest-testing skill patterns)
  10. Permission config — Add entries to config/access-control.php (see references/access-control.md)

Read the full file on GitHub · 257 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. 11d ago First seen · 257 lines · 221 tokens per session scan A 45783fcc4fc8

Subscribe to this mod's changes

project-laravel is a skill published in the GitHub repository nasrulhazim/claude (22 stars, last pushed 8d ago), licensed MIT. It adds 221 tokens to every session and 2,419 once invoked, about $0.0011 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-specialist

Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers…

Jeffallan/claude-skills · 86 tokens

create-powergrid-plugin

Create a complete PowerGrid plugin from scratch, including PHP class, Column macro, Blade view, Alpine.js component, and registration.

Power-Components/livewire-powergrid · 31 tokens

owl-admin-devtools-generator

A development guide for Owl Admin, a Laravel-based administration system, covering its code generator, API templates, relationships, and visual pages.

slowlyo/owl-admin · 82 tokens

llamaindex-development

Expert guidance for LlamaIndex development including RAG applications, vector stores, document processing, query engines, and building production AI applications.

Mindrally/skills · 32 tokens

craftcms

Craft CMS 5 plugin and module development — extending Craft with PHP. Covers elements, element queries, services, models, records, controllers, migrations, queue jobs, console commands, field types, native fields, events, behaviors, Twig extensions, widgets, filesystems, permissions, project config, GraphQL, testing…

michtio/craftcms-claude-skills · 327 tokens

laravel-expert

Laravel & PHP Development Instructions for GitHub Copilot.

GulajavaMinistudio/awesome-copilot-id · 15 tokens