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
18
# HARN-RMD-005

**Variant:** `Code::ReminderUnknownPropagate`

A reminder specified an unsupported `propagate` value. Reminder propagation must
be one of `all`, `session`, or `none`.

Use `all` for reminders that should follow child agents, `session` for the
current session only, and `none` for reminders that should never propagate.

Example fix:

```harn
transcript.inject_reminder(transcript(), {
  body: "Check the task ledger before continuing.",
  propagate: "session",
})
```