Files
breadcrumb-the-shire/.agents/skills/starterkit-php-style-ci/references/style-workflow.md
fs 4dd6d451f6 refactor: relocate agent-system/ to .agents/ with 7-role workflow restructure
Moves the agent workflow system from agent-system/ to .agents/ (dotfile convention).
Restructured from 5-role to 7-role pipeline: adds Analyst and splits Reviewer into
Code Reviewer + Security Reviewer. Removes all old workflow run artifacts.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 18:23:04 +01:00

26 lines
541 B
Markdown

# Local Style Workflow
## Commands
```bash
composer cs:check
composer cs:fix
```
## Praktikabler Ablauf
1. Erst `cs:check` laufen lassen.
2. Danach `cs:fix`.
3. Nur relevante Diffs uebernehmen, grosse Misch-Diffs vermeiden.
4. Anschliessend:
```bash
docker compose exec php vendor/bin/phpunit
docker compose exec php vendor/bin/phpstan analyse -c phpstan.neon --no-progress
```
## Review-Fokus
1. `ordered_imports`, `braces_position`, `statement_indentation`.
2. Kein semantischer Drift bei anon classes, arrow functions, array maps.