원클릭으로
dev-commands
Daily development commands for Sylius Stack apps (database, cache, assets, QA)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Daily development commands for Sylius Stack apps (database, cache, assets, QA)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | dev-commands |
| description | Daily development commands for Sylius Stack apps (database, cache, assets, QA) |
| allowed-tools | Bash, Read |
Docker is used only for the PostgreSQL database. PHP runs locally via symfony serve.
| Action | Command |
|---|---|
| Start | docker compose up -d |
| Stop | docker compose down |
| Stop + remove volumes | docker compose down -v |
symfony serve -d # start in background
symfony serve:stop # stop
bin/console cache:clear
bin/console debug:router
bin/console debug:container <service>
bin/console sylius:debug:resource 'App\Entity\{ModelName}'
| Action | Command |
|---|---|
| Generate migration | bin/console make:migration |
| Apply migrations | bin/console doctrine:migrations:migrate --no-interaction |
| Drop + create + migrate | bin/console doctrine:database:drop --force && bin/console doctrine:database:create && bin/console doctrine:migrations:migrate --no-interaction |
| Load fixtures | bin/console doctrine:fixtures:load --no-interaction |
bin/console importmap:install # install JS packages
bin/console asset-map:compile # production build
vendor/bin/phpstan analyse # static analysis
vendor/bin/ecs check # coding standards
vendor/bin/phpunit # unit tests
Implement the fix described in a GitHub issue and open a Pull Request that closes it
Apply the latest review feedback to a Pull Request and push it to the PR branch
Add an admin autocomplete form type for a Sylius Resource (translatable or not), optionally injected into another form via an extension
Add an admin FormType for an existing Sylius Resource
Add a Sylius admin grid for an existing Sylius Resource
Add a multiple images collection (OneToMany) to an existing Sylius Resource