acc-create-action
Installation
SKILL.md
Action Generator
Generate ADR-compliant Action classes for HTTP endpoints.
Action Characteristics
- Single Responsibility: One action = one HTTP endpoint
- Input Parsing: Collects and parses request input
- Domain Invocation: Calls UseCase/Handler
- Response Delegation: Passes result to Responder
- No Business Logic: Thin coordination layer
- Invokable: Single
__invoke()method
Template
<?php
declare(strict_types=1);