coding-laravel-feature-builder

Implement Laravel features with routes, controllers, models, and tests.

10|1|Updated Feb 22, 2026
One-click install
npx skills add https://github.com/marcocello/dot-codex --skill coding-laravel-feature-builder
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: coding-laravel-feature-builder
Source: https://github.com/marcocello/dot-codex/tree/main/skills/coding-laravel-feature-builder
Command: npx skills add https://github.com/marcocello/dot-codex --skill coding-laravel-feature-builder

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you build or fix Laravel application features while keeping the work aligned with framework conventions, testability, and existing project patterns.

Core Features & Use Cases

  • Feature Implementation: Handle routes, controllers, requests, models, policies, jobs, queues, APIs, admin flows, and migrations.
  • Test-Driven Verification: Prefer feature tests for user-visible behavior and unit tests for isolated logic, then run the smallest meaningful verification flow.
  • Framework-Aware Changes: Check Laravel and PHP versions, inspect environment assumptions, and avoid breaking config, storage, or rollback safety.
  • Use Case: Add a validated API endpoint with authorization, persistence, and PHPUnit or Pest coverage that fits the current codebase style.

Quick Start

Use the coding-laravel-feature-builder skill to implement this Laravel feature with validation, tests, and framework-appropriate structure.

Frequently Asked Questions about coding-laravel-feature-builder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a Laravel API endpoint with validation and authorization tests?

To add a Laravel API endpoint with validation and authorization, implement routes, controllers, form requests, and policies, then verify user-visible behavior using focused feature tests. This approach applies framework conventions to ensure testability and fits existing project patterns.

What is the best way to implement Laravel jobs and queue workflows?

Implementing Laravel jobs and queue workflows involves tracing requests, applying framework conventions, and verifying isolated logic with unit tests. This process checks environment assumptions and ensures rollback-safe database changes within existing Laravel applications.

Can I build admin flows and migrations in an existing Laravel application?

Yes, you can build admin flows and migrations in an existing Laravel application by applying framework-aware changes. This requires careful handling of persistence, environment assumptions, and rollback-safe database modifications to avoid breaking existing config or storage.

Does Laravel feature development require checking framework versions before coding?

Laravel feature development requires checking Laravel and PHP versions before coding to ensure framework-aware changes. Inspecting environment assumptions prevents breaking config, storage, or rollback safety when adding models, policies, or routes.

How do I test Laravel form requests for validation and authorization rules?

To test Laravel form requests for validation and authorization, prefer feature tests for user-visible behavior and unit tests for isolated logic. Run the smallest meaningful verification flow to check persistence and policy enforcement within your existing codebase style.