Pipeline for running coder agents on your project with analyzing and user story building + implementation in isolated environment.
Run command
./coderOne Step commands chain:
bin/console one:story
bin/console one:implement
bin/console one:cleanupExample command:
WORK_DIR=/home/ec/p/abracadabra/factory-backend APP_TYPE=php-symfony APP_SETUP_SERVICE=backend-dev docker compose -f deploy/docker-compose.yml run --rm coder-dev ...WORK_DIR=/home/ec/p/abracadabra/factory-backend APP_TYPE=php-symfony APP_SETUP_SERVICE=backend-dev docker compose -f deploy/docker-compose.yml run --rm coder-dev sh
For this repository, keep changes focused and easy to review.
WORK_DIR=/absolute/path/to/target APP_TYPE=php-symfony APP_SETUP_SERVICE=backend-dev bin/console one:storyWORK_DIR=/absolute/path/to/target APP_TYPE=php-symfony APP_SETUP_SERVICE=backend-dev docker compose -f deploy/docker-compose.yml run --rm coder-dev /app/bin/console one:storyvendor/bin/phpstan analyse -c phpstan.neonvendor/bin/simple-phpunit- Keep diffs small and directly related to the requested behavior.
- Add or update tests when behavior changes.
- For One flow tasks, prefer touching
src/Application/Command/One/only unless the acceptance criteria require otherwise.