Laravel Ai Sdk Skills banner
anilcancakir anilcancakir

Laravel Ai Sdk Skills

AI community

Description

A skill system for Laravel AI SDK agents. Define reusable AI capabilities with SKILL.md files.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Laravel AI SDK Skills

Build Status Total Downloads Latest Stable Version License

Laravel AI SDK Skills

This package extends the Laravel AI SDK with a high-performance skill system. Skills are reusable capability modules that provide instructions, tools, and context to your AI agents through a **Progressive Disclosure** mechanism.

Instead of embedding all logic in your agent class or bloating the context window with unused instructions, you define skills as separate markdown files. Each skill encapsulates its own instructions and tools. Agents discover what's available and load only what they need during the conversation.

For a detailed walkthrough with real-world examples, check out the [announcement article on Medium](https://medium.com/@anilcan/level-up-your-laravel-ai-agents-with-modular-skills-39da3fe9fe4b).

Installation

Install the package via composer:

composer require anilcancakir/laravel-ai-sdk-skills

The service provider registers automatically. You should publish the configuration file to customize discovery paths and modes:

php artisan vendor:publish --provider="AnilcanCakir\LaravelAiSdkSkills\SkillsServiceProvider"

Quick Start

Let's look at how quickly