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: templates/AGENTS.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,11 +25,21 @@ to add and pull a specific Git dependency.
25
25
After making Wurst changes, always run:
26
26
27
27
```bash
28
-
grill typecheck
28
+
grill typecheck --quiet
29
29
```
30
30
31
+
The `--quiet` flag suppresses verbose compiler output and only prints errors — use it to keep context small. Without it, the compiler emits a large amount of output that wastes context window space.
32
+
31
33
Fix reported errors and relevant warnings before considering the task done.
32
34
35
+
When running tests:
36
+
37
+
```bash
38
+
grill test --quiet
39
+
```
40
+
41
+
Same rule applies: `--quiet` filters output to errors only and prints `✔ All tests succeeded.` on success.
42
+
33
43
## Project configuration (`wurst.build`)
34
44
35
45
`wurst.build` is a YAML file at the repository root that controls project metadata, dependencies, and map build settings. It is the source of truth for:
@@ -474,7 +484,7 @@ Hot doc comments:
474
484
475
485
## Common pitfalls
476
486
477
-
* Always run `grill typecheck` after code changes.
487
+
* Always run `grill typecheck --quiet` after code changes.
478
488
* Do not commit `_build/` or edit `_build/dependencies/` as source.
0 commit comments