ami-praha-a-s / ami-ai-skills
Set of shared AI skills for every AI supported project.
Package info
github.com/AMI-Praha-a-s/ami-ai-skills
Language:JavaScript
pkg:composer/ami-praha-a-s/ami-ai-skills
Fund package maintenance!
Requires
- php: ^8.2
Requires (Dev)
- laravel/pint: ^1.0
- pestphp/pest: ^4.0
This package is auto-updated.
Last update: 2026-04-14 13:06:27 UTC
README
A collection of AI skills for Laravel Boost. When installed in a Laravel project alongside Boost, these skills are automatically discovered and made available to AI coding agents (Claude Code, Cursor, Copilot, etc.).
Included Skills
| Skill | Description |
|---|---|
create-ai-skill |
Teaches AI agents how to create new Laravel Boost AI skills with correct directory structure, frontmatter, and content patterns. |
create-ai-guideline |
Teaches AI agents how to create new Laravel Boost AI guidelines with correct format, discovery mechanism, and best practices. |
design-guide |
Manages the project's design guide -- creates it via codebase analysis and collaborative brainstorming if missing, consults it during frontend work, and keeps it updated as the design evolves. |
Installation
composer require ami-praha-a-s/ami-ai-skills --dev
Then run Boost install (or update) to discover and activate the skills:
php artisan boost:install
When prompted, select ami-praha-a-s/ami-ai-skills from the third-party packages list.
How It Works
Laravel Boost uses convention-based discovery. This package places skill files at:
resources/boost/skills/{skill-name}/SKILL.md
Boost scans all installed Composer packages for this directory structure and makes any discovered skills available during boost:install or boost:update. No ServiceProvider or PHP registration code is needed.
Adding New Skills
To add a new skill to this package:
- Create a directory under
resources/boost/skills/with a kebab-case name - Add a
SKILL.mdfile with YAML frontmatter (nameanddescriptionrequired) - Write the skill content in Markdown
- Run
composer testto validate the skill format
resources/boost/skills/my-new-skill/
SKILL.md
The automated tests verify that all skills have valid frontmatter and correct structure.
Testing
composer test
License
The MIT License (MIT). Please see License File for more information.