docs(skills): add PHP command-dispatch skills (acture-php{,-greenfield,-strangler})#29
Merged
Merged
Conversation
…d,-strangler}) Three skills for implementing an acture-style command-dispatch layer in PHP systems, mirroring the .NET track (#28): - acture-php: foundational — maps the three primitives to the modern PHP stack (cuyz/valinor + symfony/messenger + #[Command] attribute + spiral/json-schema-generator + opis/json-schema), framework variants (vanilla / Symfony / Laravel), and routes to the greenfield or strangler path. - acture-php-greenfield: file-by-file walk-through for a new PHP project — state model, #[Command] attribute, attribute-scanning registry, Messenger dispatcher, CLI surface, Pest architecture tests. - acture-php-strangler: strangler-fig adoption in an existing codebase — Wrap / Enrich / Extract phases, additive #[Command] + #[AsMessageHandler] overlay, feature-flagged surface activation. Includes the source research note (acture_research_7) the skills cite.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds three agent skills for implementing an acture-style command-dispatch layer in PHP systems — the PHP counterpart to the .NET track in #28. Source:
docs/research/acture_research_7 -- PHP Tooling for a Command-Dispatch Architecture.acture-php(foundational) — maps acture's three primitives to the modern PHP stack (cuyz/valinor+symfony/messenger+ a project-owned#[Command]attribute +spiral/json-schema-generator+opis/json-schema), surfaces the framework variants (vanilla / Symfony / Laravel), and routes to the greenfield or strangler-fig path.acture-php-greenfield— file-by-file walk-through for a new project: state model →#[Command]attribute → ~120-line attribute-scanning registry → Messenger dispatcher → first command → CLI surface (Symfony Console 7.3 invokable commands) → Pest architecture tests.acture-php-strangler— strangler-fig adoption in an existing codebase: Wrap / Enrich / Extract phases, additive#[Command]+#[AsMessageHandler]overlay that never touches legacy call sites, feature-flagged surface activation order, and PHP-specific special cases (Artisan/Console, controllers, Doctrine entities).Notes
#[Command]is project-owned, no reflexivecomposer require mcp/sdk, metadata-is-data-not-code guardrail.acture-*skills (acture-architecture-primer,acture-hard-donts,acture-mcp,acture-ai, themigration-*track), and link to the source research note.spatie/data-transfer-object) per the research note's ecosystem-health findings.Test plan