PHPackages                             stolt/list-skills-command - 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. [CLI &amp; Console](/categories/cli)
4. /
5. stolt/list-skills-command

ActiveLibrary[CLI &amp; Console](/categories/cli)

stolt/list-skills-command
=========================

A symfony/console command for listing and introspecting AI skills files of a project.

v1.4.0(1mo ago)13.9k↑88.7%MITPHPPHP &gt;=8.2CI passing

Since Apr 29Pushed 1mo agoCompare

[ Source](https://github.com/raphaelstolt/list-skills-command)[ Packagist](https://packagist.org/packages/stolt/list-skills-command)[ RSS](/packages/stolt-list-skills-command/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (11)Versions (10)Used By (0)

list-skills-command
===================

[](#list-skills-command)

[![Test Status](https://github.com/raphaelstolt/list-skills-command/workflows/test/badge.svg)](https://github.com/raphaelstolt/list-skills-command/workflows/test/badge.svg)[![Lint Status](https://github.com/raphaelstolt/list-skills-command/workflows/lint/badge.svg)](https://github.com/raphaelstolt/list-skills-command/workflows/lint/badge.svg)[![Version](https://camo.githubusercontent.com/a933f9d86252507dbe4ed609d18d84924355e1b8cc1562eef91961103297ca57/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73746f6c742f6c6973742d736b696c6c732d636f6d6d616e642e7376673f7374796c653d666c6174)](https://packagist.org/packages/stolt/list-skills-command)[![Downloads](https://camo.githubusercontent.com/1a438d871a0635653fb6b31463913be0813f3dd29f7bb6e411749f7440864931/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73746f6c742f6c6973742d736b696c6c732d636f6d6d616e64)](https://camo.githubusercontent.com/1a438d871a0635653fb6b31463913be0813f3dd29f7bb6e411749f7440864931/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73746f6c742f6c6973742d736b696c6c732d636f6d6d616e64)[![PHP Version](https://camo.githubusercontent.com/bee070518258ca00da0973b812d6713d5b4a97a70b8a92b1043436deed97d5dd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d382e322b2d6666363962342e737667)](https://camo.githubusercontent.com/bee070518258ca00da0973b812d6713d5b4a97a70b8a92b1043436deed97d5dd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d382e322b2d6666363962342e737667)[![PDS Skeleton](https://camo.githubusercontent.com/3c7140ee36205075ed977142f25c29eb1fb7809e9b86a865461fc21776ad1665/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7064732d736b656c65746f6e2d626c75652e7376673f7374796c653d666c6174)](https://github.com/php-pds/skeleton)[![Lean dist package](https://camo.githubusercontent.com/9ef308bdbe7c45e8b0328885c82eb69788f8204f9483a16c8dff3b778346637a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c65616e2d646973742532307061636b6167652d3030666662362e7376673f7374796c653d666c6174)](https://github.com/raphaelstolt/lean-package-validator)

A simple drop-in `syfmony/console` command to list and introspect your AI skill files straight from the command line.

Installation and usage
----------------------

[](#installation-and-usage)

```
composer require stolt/list-skills-command
```

### Adding the command to your `symfony/console` based application

[](#adding-the-command-to-your-symfonyconsole-based-application)

```
use Stolt\Console\Commands\ListSkillsCommand;
use Symfony\Component\Console\Application;

$application = new Application(
    'your-cli-application-with-custom-boost-skills',
    A_VERSION_NUMBER
);

# Actual command integration
$application->addCommand(new ListSkillsCommand());

$application->run();
```

### Listing all available skills

[](#listing-all-available-skills)

Here for [llms-txt-php-cli](https://github.com/raphaelstolt/llms-txt-php-cli) which integrates the list skills command.

```
php bin/llms-txt-cli list-skills

Available AI skills:
- llms-txt-check-links
- llms-txt-info
- llms-txt-init
- llms-txt-validate
```

### Listing more detailed skill metadata

[](#listing-more-detailed-skill-metadata)

Use Symfony Console's verbose mode to include the skill `name`, optional `version`, and `description` metadata. Since `v1.1.0`it also does some basic `validation` of the available skill files.

```
php bin/llms-txt-cli list-skills --verbose|-v

Available AI skills:
- Check links in llms.txt (1.0.0): Validate that all links in an llms.txt file are reachable.
- Show llms.txt info: Display metadata and summary information for an llms.txt file.
- Initialize llms.txt: Create a new llms.txt file for a project.
- Validate llms.txt: Validate the structure and contents of an llms.txt file.
```

### Filtering skills by tag

[](#filtering-skills-by-tag)

Use the `--tag` option to filter the available skills by a specific tag or a comma-separated list of tags.

### Filtering skills by stable version

[](#filtering-skills-by-stable-version)

Use the `--stable-version` option to filter skills having a stable version number i.e. `>=1.0.0`.

### Switching the output format

[](#switching-the-output-format)

Use the `--format-json` option to switch the output format to machine-readable JSON for AI agents or CI environments. Since `v1.2.1` this is auto-enabled for AI agentic runs.

Use the `--format-md` option to render the skills as a Markdown table in the terminal.

### Running tests

[](#running-tests)

```
composer test
```

### License

[](#license)

This command is licensed under the MIT license. Please see [LICENSE.md](LICENSE.md) for more details.

### Changelog

[](#changelog)

Please see [CHANGELOG.md](CHANGELOG.md) for more details.

### Contributing

[](#contributing)

Please see [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more details.

###  Health Score

48

—

FairBetter than 94% of packages

Maintenance93

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

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

9

Last Release

36d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/132faf5713fa951f4263fad02858a62e55c5d832ad775b33e49ba0cda2f2a028?d=identicon)[Raphael Stolt](/maintainers/Raphael%20Stolt)

---

Top Contributors

[![raphaelstolt](https://avatars.githubusercontent.com/u/48225?v=4)](https://github.com/raphaelstolt "raphaelstolt (27 commits)")

---

Tags

cliskill-developmentskill-mdskill-validationsymfony-consolephpcliconsolesymfonyailistskillsboostintrospectagent-skillsSKILL.md

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/stolt-list-skills-command/health.svg)

```
[![Health](https://phpackages.com/badges/stolt-list-skills-command/health.svg)](https://phpackages.com/packages/stolt-list-skills-command)
```

###  Alternatives

[nunomaduro/collision

Cli error handling for console/command-line PHP applications.

4.6k348.7M10.3k](/packages/nunomaduro-collision)[nunomaduro/termwind

It's like Tailwind CSS, but for the console.

2.5k260.6M359](/packages/nunomaduro-termwind)[nunomaduro/laravel-console-menu

Laravel Console Menu is an output method for your Laravel/Laravel Zero commands.

816424.6k51](/packages/nunomaduro-laravel-console-menu)[nunomaduro/laravel-console-task

Laravel Console Task is a output method for your Laravel/Laravel Zero commands.

2582.3M13](/packages/nunomaduro-laravel-console-task)[nunomaduro/laravel-console-summary

A Beautiful Laravel Console Summary for your Laravel/Laravel Zero commands.

672.2M4](/packages/nunomaduro-laravel-console-summary)[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16357.3k8](/packages/nunomaduro-laravel-console-dusk)

PHPackages © 2026

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