Claude Laravel provides opinionated Laravel skills and commands for Claude Code. It enables developers to automate Laravel tasks, benefiting operations teams by streamlining workflows. It connects to Laravel applications and integrates with Claude agents.
git clone https://github.com/leeovery/claude-laravel.gitClaude Laravel is a skill pack that integrates Laravel development tools with Claude Code and Cursor, allowing AI agents to automate common Laravel operations. It provides opinionated commands and skills designed to streamline Laravel development workflows. The project is actively maintained through the agentic-skills framework, which consolidates multiple agent skill implementations. Installation is straightforward using the agntc package manager. Developers and operations teams benefit from reduced manual task overhead and faster Laravel project automation.
Install Claude Laravel via agntc with the command: npx agntc@latest add leeovery/agentic-skills/laravel. Once installed, the Laravel skills become available within Claude Code and Cursor for automating Laravel tasks.
Automating Laravel database migrations and schema updates
Streamlining Laravel application scaffolding and code generation
Automating routine Laravel maintenance and configuration tasks
Integrating Laravel workflows with Claude-based development agents
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/leeovery/claude-laravelCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I'm working on a Laravel project for [COMPANY], a [INDUSTRY] company. I need to [SPECIFIC TASK, e.g., 'generate a migration for a new users table with specific fields']. Can you help me with this using Claude Laravel?
# Laravel Migration for Users Table
Here's a migration file for a users table with the requested fields:
```php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
$table->string('phone')->nullable();
$table->string('address')->nullable();
$table->string('city')->nullable();
$table->string('state')->nullable();
$table->string('zip_code')->nullable();
$table->string('country')->nullable();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}
```
### Next Steps
- Run the migration using `php artisan migrate`
- Consider creating a corresponding User model if needed
- Implement any additional logic or validations in the modelAI assistant built for thoughtful, nuanced conversation
Get more done every day with Microsoft Teams – powered by AI
Automate security compliance and monitor real-time security posture seamlessly.
Automate your spreadsheet tasks with AI power
Agentic AI Workflow platform
Connected workspace for docs, wikis, and projects
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan