You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: template/AGENTS.md.example
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -120,13 +120,21 @@ gemfiles/
120
120
121
121
## 🔧 Development Workflows
122
122
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
+
123
127
### Running Tests
124
128
129
+
Full suite spec runs:
130
+
125
131
```bash
126
132
mise exec -C /path/to/project -- bundle exec rspec
127
133
```
128
134
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:
0 commit comments