harn-parser 0.8.27

Parser, AST, and type checker for the Harn programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# HARN-RMD-007

**Variant:** `Code::ReminderProviderBloat`

An `agent_loop` enables more than eight distinct reminder providers. Many
providers can inject overlapping ambient context and increase prompt size.

Disable providers that are not useful for the loop, or split the loop into
smaller stages with different reminder settings.

Example fix:

```harn
agent_loop(task, nil, {
  reminders: {providers: ["token_pressure", "idle_nudge"]},
})
```