PHPackages                             guikingone/agent-skills - 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. guikingone/agent-skills

ActiveLibrary

guikingone/agent-skills
=======================

A library that integrate agent skills standard

0.2.0(1mo ago)24↓100%[1 PRs](https://github.com/Guikingone/php-agent-skills/pulls)MITPHPPHP &gt;=8.3CI passing

Since Mar 17Pushed 1mo agoCompare

[ Source](https://github.com/Guikingone/php-agent-skills)[ Packagist](https://packagist.org/packages/guikingone/agent-skills)[ RSS](/packages/guikingone-agent-skills/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (16)Versions (4)Used By (0)

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

[](#installation)

Make sure Composer is installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

```
composer require guikingone/agent-skills
```

Quick start - Standalone
------------------------

[](#quick-start---standalone)

```
require_once dirname(__DIR__) . '/vendor/autoload.php';

$loader = new FilesystemSkillLoader([
    __DIR__ . '/.skills',
]);

$skill = $loader->loadSkill('twig-component');

assert($skill instanceof SkillInterface);

# Agent call with the loaded skill
```

Quick start - Symfony
---------------------

[](#quick-start---symfony)

If symfony/flex is not installed, manually update the `config/bundles.php`:

```
// config/bundles.php

return [
    // ...
    AgentSkills\Bridge\Symfony\AI\AgentSkillsBundle::class => ['all' => true],
];
```

Then configure skills in `config/packages/agent_skills.yaml`:

```
# config/packages/agent_skills.yaml
agent_skills:
    skills:
        enabled: true
        agents:
            my_agent:
                directories:
                    - '%kernel.project_dir%/skills'
                active_skills:
                    - 'twig-component'
                    - 'symfony-console'
                include_index: true
```

Quick start - Laravel
---------------------

[](#quick-start---laravel)

Install the package alongside `laravel/ai`:

```
composer require guikingone/agent-skills laravel/ai
```

The `AgentSkillsServiceProvider` is auto-discovered by Laravel. If auto-discovery is disabled, register it manually in `bootstrap/providers.php`:

```
return [
    // ...
    AgentSkills\Bridge\Laravel\AI\AgentSkillsServiceProvider::class,
];
```

Publish and configure `config/agent-skills.php`:

```
php artisan vendor:publish --tag=agent-skills-config
```

```
// config/agent-skills.php
return [
    'skills' => [
        'enabled' => true,
        'agent' => \App\Agents\MyAgent::class,
        'directories' => [
            resource_path('skills'),
        ],
        'active_skills' => [
            'twig-component',
            'symfony-console',
        ],
        'include_index' => true,
    ],
];
```

###  Health Score

39

—

LowBetter than 85% of packages

Maintenance96

Actively maintained with recent releases

Popularity8

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

53d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b1ea408dc1a7f312337f13b3a6f01446ccb69e9d53d801abbda36bf38d1f640b?d=identicon)[Guillaume Loulier](/maintainers/Guillaume%20Loulier)

---

Top Contributors

[![Guikingone](https://avatars.githubusercontent.com/u/13744329?v=4)](https://github.com/Guikingone "Guikingone (5 commits)")

---

Tags

agentskillslaravelphpsymfony

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/guikingone-agent-skills/health.svg)

```
[![Health](https://phpackages.com/badges/guikingone-agent-skills/health.svg)](https://phpackages.com/packages/guikingone-agent-skills)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M647](/packages/sylius-sylius)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[contao/core-bundle

Contao Open Source CMS

1231.6M2.3k](/packages/contao-core-bundle)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)

PHPackages © 2026

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