php-ecosystem-reference

SkillAI & models

Use when picking a non-Laravel PHP tool — Symfony components, API Platform, or Slim — and routing to implementation. Do NOT use for Laravel (laravel-expert).

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the php-ecosystem-reference skill

What this skill tells your AI

The instructions your AI receives, as published by fusengine/agents in plugins/php-expert/skills/php-ecosystem-reference/SKILL.md and read by ahel’s review.

It does not carry deep, version-specific how-to knowledge for Symfony full-stack, API Platform, or Slim — for implementation details it hands off to the research-expert agent and to [[php-http-psr]] for framework-agnostic HTTP.

Laravel is entirely out of scope — any Laravel task routes to the laravel-expert agent. Deep Symfony full-stack work has no dedicated expert in this ecosystem; this skill's job is to flag that gap explicitly to the user rather than improvise.

PHP Ecosystem Reference (Orientation)

Scope (read this first)

This skill is a routing / orientation map, NOT an implementation expert. It answers "which tool fits this problem, and where do I go next?" It does not carry deep, version-specific how-to knowledge for Symfony full-stack, API Platform, or Slim.

For actual implementation:

  • Laravel → route to the laravel-expert agent (out of scope here).
  • Framework-agnostic HTTP (PSR-7/15/17/18) → use [[php-http-psr]].
  • Deep Symfony full-stack → there is no dedicated expert agent; flag this to the user (see boundaries.md).

Agent Workflow (MANDATORY)

Before relying on any detail here, spawn 2 agents in parallel, one Agent call each with a name:

  1. fuse-ai-pilot:research-expert - Verify current versions/APIs on symfony.com, api-platform.com, slimframework.com
  2. fuse-ai-pilot:explore-codebase - Detect which of these are already in composer.json

This skill orients; the research agent supplies verified specifics before any code.


Overview

AreaWhat it isReference
Symfony ComponentsDecoupled PHP libraries, each installable standalone via Composer — no full framework neededsymfony-components.md
API Platform 4.3API-first framework built on Symfony (REST, GraphQL, OpenAPI from resource classes)api-platform.md
Slim 4.15PSR-7/PSR-15 micro-framework for small APIs and servicesslim-framework.md
BoundariesWhere this skill stops and who to route toboundaries.md

Critical Rules

  1. Orientation only - Never present ecosystem details as authoritative; the research agent verifies before code.
  2. Standalone ≠ framework - Symfony components run WITHOUT the Symfony framework; composer require symfony/console is enough.
  3. HttpFoundation is not PSR-7 - Symfony's HTTP model differs from PSR-7; bridge via symfony/psr-http-message-bridge ([[php-http-psr]]).
  4. Laravel is out of scope - Any Laravel task routes to laravel-expert.
  5. No deep Symfony expert exists - For full-stack Symfony depth, tell the user explicitly rather than improvising.

Reference Guide

Concepts

TopicReferenceWhen to Consult
Symfony Componentssymfony-components.mdPicking a standalone library (CLI, process, events, validation…)
API Platformapi-platform.mdBuilding an API-first app on Symfony
Slimslim-framework.mdSmall PSR-based micro-service or API
Boundariesboundaries.mdDeciding whether to route elsewhere

Quick Reference

Install a standalone Symfony component

composer require symfony/console       # CLI apps
composer require symfony/process       # run sub-processes
composer require symfony/event-dispatcher
composer require symfony/validator
composer require symfony/serializer

Decision shortcut

NeedRoute to
Full Laravel applaravel-expert agent
Framework-agnostic HTTP messages/middleware[[php-http-psr]]
One utility (CLI, events, validation) without a frameworkSymfony component, see symfony-components.md
API-first product on SymfonyAPI Platform, see api-platform.md
Tiny PSR-7 API/serviceSlim, see slim-framework.md
Deep Symfony full-stack MVCNo expert — flag to user (boundaries.md)

Best Practices

DO

  • Use this map to choose a direction, then hand off to the research agent for specifics
  • Prefer a single standalone component over a full framework for a narrow need
  • State clearly when a task falls outside any available expert

DON'T

  • Present version-specific API details from here as verified — they are orientation
  • Attempt deep Laravel or deep Symfony full-stack work under this skill
  • Assume Symfony HttpFoundation and PSR-7 are interchangeable

Signals

GitHub stars
25
Forks
4
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
php-ecosystem-reference
Source
github.com/fusengine/agents