jcf / boost-for-kiro-ide
Kiro IDE support for Laravel Boost - adds Amazon Kiro IDE integration to Laravel Boost MCP server
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/jcf/boost-for-kiro-ide
Requires
- php: ^8.1
- laravel/boost: ^1.0
Requires (Dev)
- laravel/pint: ^1.20
- mockery/mockery: ^1.6.12
- orchestra/testbench: ^8.36.0|^9.15.0|^10.6
- pestphp/pest: ^2.36.0|^3.8.4
- phpstan/phpstan: ^2.1
README
Adds support for Amazon's Kiro IDE in Laravel Boost, integrating the MCP (Model Context Protocol) server and AI guidelines specifically designed for Kiro.
About Kiro IDE
Kiro IDE is an AI-powered integrated development environment from Amazon that supports the Model Context Protocol (MCP), allowing AI agents to interact with your Laravel project in a contextualized and efficient manner.
About Laravel Boost
Laravel Boost accelerates AI-assisted development by providing the essential context and structure that AI needs to generate high-quality, framework-specific Laravel code. This package extends Boost to work seamlessly with Kiro IDE.
Requirements
- PHP 8.1 or higher
- Laravel 10.x, 11.x or 12.x
- Laravel Boost ^1.0
- Kiro IDE installed on your system
Installation
You can install the package via Composer:
composer require jcf/boost-for-kiro-ide --dev
The package automatically registers Kiro IDE with Laravel Boost through Laravel's auto-discovery.
Usage
1. Install Laravel Boost (if not already installed)
If you don't have Laravel Boost installed yet, install it first:
composer require laravel/boost --dev php artisan boost:install
2. Configure Kiro IDE
When running the php artisan boost:install command, Kiro IDE will appear as an available option. Select it to automatically configure:
- MCP Configuration: Created at
.kiro/settings/mcp.json - AI Guidelines: Created at
.kiro/steering/laravel-boost.md
3. Activate in Kiro IDE
In Kiro IDE:
- Open the command palette (
Cmd+Shift+PorCtrl+Shift+P) - Search for "MCP: Reconnect All Servers" and press
Enter - The
laravel-boostMCP server will be automatically detected and connected
Kiro automatically loads the AI guidelines from .kiro/steering/laravel-boost.md to provide contextualized assistance for your Laravel application.
Created File Structure
After installation, the following files will be created in your Laravel project:
.kiro/
├── settings/
│ └── mcp.json # MCP server configuration
└── steering/
└── laravel-boost.md # AI guidelines for Kiro
You can add these files to .gitignore if desired, as they can be regenerated by running php artisan boost:install or php artisan boost:update.
Available MCP Tools
After installation, Kiro will have access to all Laravel Boost MCP tools, including:
- Application Info: Information about PHP, Laravel, packages, and Eloquent models
- Browser Logs: Browser logs and errors
- Database Connections: Database connection inspection
- Database Query: Execute database queries
- Database Schema: Read database schema
- Get Config: Get configuration values
- Last Error: Read the last error from logs
- List Artisan Commands: List available Artisan commands
- List Routes: List application routes
- Read Log Entries: Read log entries
- Search Docs: Search Laravel documentation
- Tinker: Execute arbitrary code in the application context
- And much more...
Updating Guidelines
To keep your AI guidelines up to date with the latest versions of installed Laravel ecosystem packages, run:
php artisan boost:update
You can also automate this process by adding it to your Composer scripts:
{
"scripts": {
"post-update-cmd": ["@php artisan boost:update --ansi"]
}
}
Compatibility
This package is designed to be compatible with all versions of Laravel Boost ^1.0. It uses the extension hooks provided by Laravel Boost to register the Kiro code environment.
Tested Versions
- Laravel Boost: ^1.0
- Laravel: 10.x, 11.x, 12.x
- PHP: 8.1, 8.2, 8.3
Automatic Detection
The package automatically detects Kiro IDE installations in the following locations:
macOS:
/Applications/Kiro.app
Linux:
/opt/kiro/usr/local/bin/kiro~/.local/bin/kiro
Windows:
%ProgramFiles%\Kiro%LOCALAPPDATA%\Programs\Kiro
Project Detection:
- Presence of the
.kirodirectory in the project
Testing
Run the tests with:
composer test
To run only static analysis:
composer lint
Changelog
Please see CHANGELOG for more information about what has changed recently.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Security
If you discover any security related issues, please email jotacfurtado@gmail.com instead of using the issue tracker.
Credits
- João C. Furtado
- Laravel Boost - Original package that this extends
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
Related Links
- Laravel Boost - Main package
- Model Context Protocol - MCP specification
- Laravel Documentation - Official Laravel documentation
- Kiro IDE - Official Kiro IDE website