Skip to content

Commit 4c513d9

Browse files
committed
📝 Improve AGENTS.md
1 parent 702aabb commit 4c513d9

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

template/AGENTS.md.example

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,21 @@ gemfiles/
120120

121121
## 🔧 Development Workflows
122122

123+
### Running Commands
124+
125+
Always make commands self-contained. Use `mise exec -C /home/pboling/src/kettle-rb/prism-merge -- ...` so the command gets the project environment in the same invocation.
126+
123127
### Running Tests
124128

129+
Full suite spec runs:
130+
125131
```bash
126132
mise exec -C /path/to/project -- bundle exec rspec
127133
```
128134

129-
Single file (disable coverage threshold):
135+
For single file, targeted, or partial spec runs the coverage threshold **must** be disabled.
136+
Use the `K_SOUP_COV_MIN_HARD=false` environment variable to disable hard failure:
137+
130138
```bash
131139
mise exec -C /path/to/project -- env K_SOUP_COV_MIN_HARD=false bundle exec rspec spec/path/to/spec.rb
132140
```

0 commit comments

Comments
 (0)