PHPackages                             jcf/boost-for-kiro-ide - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. jcf/boost-for-kiro-ide

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

jcf/boost-for-kiro-ide
======================

Kiro IDE support for Laravel Boost - adds Amazon Kiro IDE integration to Laravel Boost MCP server

v2.0.4(2mo ago)1874—7.1%3[1 PRs](https://github.com/jotafurtado/boost-for-kiro-ide/pulls)MITPHPPHP ^8.2CI passing

Since Nov 9Pushed 2mo agoCompare

[ Source](https://github.com/jotafurtado/boost-for-kiro-ide)[ Packagist](https://packagist.org/packages/jcf/boost-for-kiro-ide)[ Docs](https://github.com/jotafurtado/boost-for-kiro-ide)[ RSS](/packages/jcf-boost-for-kiro-ide/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (12)Versions (14)Used By (0)

Boost for Kiro IDE
==================

[](#boost-for-kiro-ide)

[![Latest Version on Packagist](https://camo.githubusercontent.com/5ee3d2a45b057df14f7a0c8721ce8f7f95645bb0f3877f218418e2610bb70812/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a63662f626f6f73742d666f722d6b69726f2d6964652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jcf/boost-for-kiro-ide)[![Total Downloads](https://camo.githubusercontent.com/bc02c3a82e3737666ea55bdb9d3fdeec7b3ccaf189b07bb6c2e1f1454d3910b2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a63662f626f6f73742d666f722d6b69726f2d6964652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jcf/boost-for-kiro-ide)[![License](https://camo.githubusercontent.com/33650696870c1d2d2d2fc54ac0346943f6ebb61be54e6a608cbac22c69225ad0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6a63662f626f6f73742d666f722d6b69726f2d6964652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jcf/boost-for-kiro-ide)

Adds support for Amazon's **Kiro IDE** in [Laravel Boost](https://github.com/laravel/boost), integrating the MCP (Model Context Protocol) server and AI guidelines specifically designed for Kiro.

About Kiro IDE
--------------

[](#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
-------------------

[](#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
------------

[](#requirements)

- PHP 8.2 or higher
- Laravel 11.x or 12.x
- [Laravel Boost](https://github.com/laravel/boost) ^2.0
- Kiro IDE installed on your system

Installation
------------

[](#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.

> **✨ Laravel Boost v2.0 Improvements**
> This package is fully compatible with Laravel Boost v2.0, which brings an enhanced installation experience with improved code environment detection, streamlined configuration, and the powerful new Skills system. After installation, you'll have access to the `boost:add-skill` command to extend Kiro's capabilities with specialized AI instructions.

Usage
-----

[](#usage)

### 1. Install Laravel Boost (if not already installed)

[](#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

[](#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

[](#3-activate-in-kiro-ide)

In Kiro IDE:

1. Open the command palette (`Cmd+Shift+P` or `Ctrl+Shift+P`)
2. Search for "MCP: Reconnect All Servers" and press `Enter`
3. The `laravel-boost` MCP 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.

### 4. Extend with Skills (Optional)

[](#4-extend-with-skills-optional)

After installation, you can enhance Kiro's capabilities by installing Skills:

```
php artisan boost:add-skill laravel/boost-skill-livewire
```

Skills provide specialized AI instructions for specific Laravel development tasks. See the [Skills System Support](#skills-system-support) section below for more details.

### Complete Installation Flow Example

[](#complete-installation-flow-example)

Here's a complete example of setting up a new Laravel project with Kiro IDE and Skills:

```
# 1. Create a new Laravel project
composer create-project laravel/laravel my-project
cd my-project

# 2. Install Laravel Boost and this package
composer require laravel/boost --dev
composer require jcf/boost-for-kiro-ide --dev

# 3. Run the Boost installation wizard
php artisan boost:install
# → Select "Kiro IDE" from the list
# → Configuration files are created automatically

# 4. (Optional) Install Skills to extend capabilities
php artisan boost:add-skill laravel/boost-skill-livewire
php artisan boost:add-skill laravel/boost-skill-testing

# 5. Open in Kiro IDE and reconnect MCP servers
# → Cmd+Shift+P (or Ctrl+Shift+P)
# → "MCP: Reconnect All Servers"
# → Start developing with AI assistance!
```

Created File Structure
----------------------

[](#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
-------------------

[](#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...

Custom Guidelines Path
----------------------

[](#custom-guidelines-path)

By default, Kiro's AI guidelines are stored at `.kiro/steering/laravel-boost.md`, following Kiro's native steering convention. This allows you to take advantage of Kiro-specific features like frontmatter-based inclusion rules and file references.

If your team uses multiple AI-powered IDEs and prefers a shared guidelines file (e.g., `AGENTS.md`), you can customize the path via configuration:

```
// config/boost.php
'agents' => [
    'kiro' => [
        'guidelines_path' => 'AGENTS.md',
    ],
],
```

Updating Guidelines
-------------------

[](#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"]
  }
}
```

Skills System Support
---------------------

[](#skills-system-support)

Laravel Boost v2.0 introduces a powerful **Skills system** that extends AI-assisted development with specialized, reusable instructions. The boost-for-kiro-ide package provides **zero-configuration** support for Skills - they work automatically with Kiro IDE.

### What are Skills?

[](#what-are-skills)

Skills are modular AI instructions (markdown files) that enhance Kiro's ability to perform specific Laravel development tasks. They provide specialized knowledge, workflow automation, and best practices for common patterns.

### Installing Skills

[](#installing-skills)

Install skills from GitHub repositories using the `boost:add-skill` command:

```
php artisan boost:add-skill owner/repository
```

**Example:**

```
php artisan boost:add-skill laravel/boost-skill-livewire
```

Skills are automatically:

- Downloaded and installed to `.ai/skills/`
- Loaded by Laravel Boost
- Made available to Kiro IDE through the MCP protocol
- **No additional configuration required!**

### How It Works

[](#how-it-works)

1. **Automatic Loading**: Laravel Boost loads skills from `.ai/skills/`
2. **MCP Integration**: Skills are delivered to Kiro through the Model Context Protocol
3. **Zero Configuration**: No Kiro-specific setup needed - it just works!
4. **Immediate Availability**: Skills are available in Kiro's AI context right away

### Creating Custom Skills

[](#creating-custom-skills)

You can create custom skills for your team:

```
mkdir -p .ai/skills/my-custom-skill
touch .ai/skills/my-custom-skill/SKILL.md
```

Write your skill instructions in the `SKILL.md` file, and it's automatically available to Kiro.

For more information about the Skills system, see the [Laravel Boost documentation](https://github.com/laravel/boost).

Compatibility
-------------

[](#compatibility)

This package is designed to be compatible with all versions of Laravel Boost ^2.0. It uses the extension hooks provided by Laravel Boost to register the Kiro code environment.

### Tested Versions

[](#tested-versions)

- Laravel Boost: ^2.0
- Laravel: 11.x, 12.x
- PHP: 8.2, 8.3, 8.4

Automatic Detection
-------------------

[](#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 `.kiro` directory in the project

Testing
-------

[](#testing)

Run the tests with:

```
composer test
```

To run only static analysis:

```
composer lint
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information about what has changed recently.

Contributing
------------

[](#contributing)

Contributions are welcome! Please feel free to submit a Pull Request.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [João C. Furtado](https://github.com/jotafurtado)
- [Laravel Boost](https://github.com/laravel/boost) - Original package that this extends
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

Related Links
-------------

[](#related-links)

- [Laravel Boost](https://github.com/laravel/boost) - Main package
- [Model Context Protocol](https://modelcontextprotocol.io/) - MCP specification
- [Laravel Documentation](https://laravel.com/docs) - Official Laravel documentation
- [Kiro IDE](https://aws.amazon.com/kiro) - Official Kiro IDE website

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance85

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 61.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~10 days

Total

12

Last Release

76d ago

Major Versions

v1.0.6 → v2.0.02026-02-02

PHP version history (2 changes)v1.0.0PHP ^8.1

v2.0.3PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/780f9f462d79aec5189728479735d339b890a5db9d389f0b4ec6bb0627fd3ab7?d=identicon)[jotafurtado](/maintainers/jotafurtado)

---

Top Contributors

[![jotafurtado](https://avatars.githubusercontent.com/u/748350?v=4)](https://github.com/jotafurtado "jotafurtado (8 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (4 commits)")[![FSElias](https://avatars.githubusercontent.com/u/6896769?v=4)](https://github.com/FSElias "FSElias (1 commits)")

---

Tags

laravelidemcpaiboostkiro

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/jcf-boost-for-kiro-ide/health.svg)

```
[![Health](https://phpackages.com/badges/jcf-boost-for-kiro-ide/health.svg)](https://phpackages.com/packages/jcf-boost-for-kiro-ide)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[gonetone/laravel-boost-windsurf-extension

Laravel Boost extension package that provides Windsurf editor and Windsurf JetBrains plugin integration.

239.1k](/packages/gonetone-laravel-boost-windsurf-extension)[mischasigtermans/laravel-altitude

Claude Code agents for the TALL stack, powered by Laravel Boost

1139.2k](/packages/mischasigtermans-laravel-altitude)[mateffy/laravel-codebase-mcp

An MCP server to give Cursor, Aider, etc. the ability to introspect your Laravel codebase directly, by querying for your models, views, routes and classes without raw file search.

201.1k](/packages/mateffy-laravel-codebase-mcp)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
