creating intital scaffolding for claude code plugins

This commit is contained in:
Noah Zweben MacBook
2025-11-20 11:47:24 -08:00
commit 4ca561fb85
191 changed files with 30170 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{
"name": "laravel-boost",
"description": "Laravel development toolkit MCP server. Provides intelligent assistance for Laravel applications including Artisan commands, Eloquent queries, routing, migrations, and framework-specific code generation.",
"version": "1.0.0",
"author": {
"name": "Laravel"
}
}

View File

@@ -0,0 +1,6 @@
{
"laravel-boost": {
"command": "php",
"args": ["artisan", "boost:mcp"]
}
}

View File

@@ -0,0 +1,26 @@
# Laravel Boost Plugin
Laravel development toolkit MCP server for Claude Code.
## What It Does
Provides over 15 specialized tools for Laravel development including Artisan commands, Eloquent queries, routing, migrations, and framework-specific code generation.
## Prerequisites
- Laravel project with Boost installed
- PHP installed
## Setup
1. Install Laravel Boost in your project:
```bash
composer require laravel/boost
php artisan boost:install
```
2. The MCP server is automatically registered during installation
## Learn More
See [Laravel Boost GitHub](https://github.com/laravel/boost) for detailed documentation.