Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ ahoy test-bdd -- --tags=@tagname # Run Behat tests with specific tag

- **Never modify** `scripts/vortex/` - use `scripts/custom/` for your scripts
- **Never use** `ahoy drush php:eval` - use `ahoy drush php:script` instead
- **Never pass inline code to commands** via stdin, heredocs, or `/dev/stdin` - always write code to a temporary file first, then pass the file path to the command (e.g. `ahoy drush php:script path/to/fix.php`)
- **Always export config** after admin UI changes: `ahoy drush cex`
- **Never use compound Bash commands.** See the highest priority rule at the top.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@@ -82,8 +82,8 @@
@@ -83,8 +83,8 @@

## Key Directories

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@@ -82,8 +82,8 @@
@@ -83,8 +83,8 @@

## Key Directories

Expand Down
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ ahoy test-bdd -- --tags=@tagname # Run Behat tests with specific tag

- **Never modify** `scripts/vortex/` - use `scripts/custom/` for your scripts
- **Never use** `ahoy drush php:eval` - use `ahoy drush php:script` instead
- **Never pass inline code to commands** via stdin, heredocs, or `/dev/stdin` - always write code to a temporary file first, then pass the file path to the command (e.g. `ahoy drush php:script path/to/fix.php`)
- **Always export config** after admin UI changes: `ahoy drush cex`
- **Never use compound Bash commands.** See the highest priority rule at the top.

Expand Down
Loading