Cursor rules for Laravel development with TALL Stack best practices

Cursor rules for Laravel development with TALL Stack best practices is a skill for Claude Code, Codex from AmariahAK/atlarix-skills. It costs 11 tokens per session (1,088 once invoked), scanned A, original, Apache-2.0.

A set of frontend coding rules for the Laravel TALL stack: Laravel, Livewire, Alpine.js, and Tailwind CSS. It also covers PHP practices and Laravel project conventions.

In plain words
What is it for?
Use it when building Laravel pages, Livewire features, Alpine interactions, Tailwind layouts, services, and application logic.
Why use it?
It helps prevent inconsistent structure, duplicated code, and departures from common Laravel patterns.

Skill for Claude CodeCodex

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

Good fit Use it when building Laravel pages, Livewire features, Alpine interactions, Tailwind layouts, services, and application logic.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/amariahak/atlarix-skills/acr-laravel-tall-stack-best-practices-cursorrules-prom
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 AmariahAK/atlarix-skills --skill acr-laravel-tall-stack-best-practices-cursorrules-prom
Clone the repo
git clone --depth 1 https://github.com/AmariahAK/atlarix-skills

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 Cursor rules for Laravel development with TALL Stack best practices

README.md
[![agentmods](https://agentmods.dev/badge/skills/amariahak/atlarix-skills/acr-laravel-tall-stack-best-practices-cursorrules-prom/github.svg)](https://agentmods.dev/skills/amariahak/atlarix-skills/acr-laravel-tall-stack-best-practices-cursorrules-prom)
Your own site
<a href="https://agentmods.dev/skills/amariahak/atlarix-skills/acr-laravel-tall-stack-best-practices-cursorrules-prom"><img src="https://agentmods.dev/badge/skills/amariahak/atlarix-skills/acr-laravel-tall-stack-best-practices-cursorrules-prom/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 Cursor rules for Laravel development with TALL Stack best practices

Your own site · 80×15
<a href="https://agentmods.dev/skills/amariahak/atlarix-skills/acr-laravel-tall-stack-best-practices-cursorrules-prom"><img src="https://agentmods.dev/badge/skills/amariahak/atlarix-skills/acr-laravel-tall-stack-best-practices-cursorrules-prom.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,088 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.
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.00011 $0.01088
Opus 5 $0.00005 $0.00544
Sonnet 5 $0.00002 $0.00218
Haiku 4.5 $0.00001 $0.00109

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

Security

Grade A, and why

Cursor rules for Laravel development with TALL Stack best practices 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 9d 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/acr-laravel-tall-stack-best-practices-cursorrules-prom/SKILL.md · 128 lines

How it starts

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

Cursor rules for Laravel development with TALL Stack best practices

When to use this skill

Cursor rules for Laravel development with TALL Stack best practices.

Source

Synced from https://github.com/PatrickJS/awesome-cursorrules/tree/main/rules/laravel-tall-stack-best-practices-cursorrules-prom.mdc.

You are an expert in the TALL stack: Laravel, Livewire, Alpine.js, and Tailwind CSS, with a strong emphasis on Laravel and PHP best practices.

Key Principles

  • Write concise, technical responses with accurate PHP examples.
  • Follow Laravel best practices and conventions.
  • Use object-oriented programming with a focus on SOLID principles.
  • Prefer iteration and modularization over duplication.
  • Use descriptive variable and method names.
  • Favor dependency injection and service containers.

PHP and Laravel Core

  • Use PHP 8.1+ features when appropriate (e.g., typed properties, match expressions).
  • Follow PSR-12 coding standards.
  • Use strict typing: declare(strict_types=1);
  • Utilize Laravel's built-in features and helpers when possible.
  • Follow Laravel's directory structure and naming conventions.
  • Use PascalCase for class-containing directories (e.g., app/Http/Controllers).
  • Implement proper error handling and logging:
    • Use Laravel's exception handling and logging features.
    • Create custom exceptions when necessary.
    • Use try-catch blocks for expected exceptions.
  • Use Laravel's validation features for form and request validation.
  • Implement middleware for request filtering and modification.
  • Utilize Laravel's Eloquent ORM for database interactions.
  • Use Laravel's query builder for complex database queries.
  • Implement proper database migrations and seeders.

Laravel Best Practices

  • Use Eloquent ORM instead of raw SQL queries when possible.
  • Implement Repository pattern for data access layer.
  • Use Laravel's built-in authentication and authorization features.
  • Utilize Laravel's caching mechanisms for improved performance.
  • Implement job queues for long-running tasks.
  • Use Laravel's built-in testing tools (PHPUnit, Dusk) for unit and feature tests.
  • Implement API versioning for public APIs.
  • Use Laravel's localization features for multi-language support.
  • Implement proper CSRF protection and security measures.
  • Use Laravel Mix for asset compilation.
  • Implement proper database indexing for improved query performance.
  • Use Laravel's built-in pagination features.
  • Implement proper error logging and monitoring.

Read the full file on GitHub · 128 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 128 lines · 11 tokens per session scan A c13ab2293821

Subscribe to this mod's changes

Cursor rules for Laravel development with TALL Stack best practices is a skill published in the GitHub repository AmariahAK/atlarix-skills (2 stars, last pushed 5d ago), licensed Apache-2.0. It adds 11 tokens to every session and 1,088 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-09-03.

Related

Other skills, from other repositories

ui-ux-pro-max

Use when planning, building, designing, code review, refactor, fixing, improving, optimizing, enhancing, or checking UI/UX work. Covers product patterns, landing pages, chart choices, visual styles, palettes, typography, UX rules, and 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind…

majiayu000/spellbook · 166 tokens

ui-design-system

Use when creating or maintaining UI design systems, design tokens, component documentation, responsive calculations, quality checks, or design-dev handoff materials.

majiayu000/spellbook · 32 tokens

frontend

Context-led frontend design: art direction derived from product, audience, brand and the existing system, not generic defaults. Named mood variants listed inside. Triggers: frontend, UI, CSS, styling, visual, theme, component, layout, responsive, accessibility, animation.

ariaxhan/kernel-claude · 56 tokens

frontend-craft-director

A self-contained frontend design, redesign, audit, implementation, anti-AI-slop, and rendered visual-QA skill for use directly inside a ChatGPT conversation or through a local MCP-accessible project.

mehrdad03/localdev-mcp · 47 tokens

ui-designer

Extract design systems from reference UI images and generate implementation-ready UI design prompts. Use when users provide UI screenshots/mockups and want to create consistent designs, generate design systems, or build MVP UIs matching reference aesthetics.

majiayu000/spellbook · 47 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.

MagicKidd/Rokid-agentic-workflow · 43 tokens