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-008

**Variant:** `Code::ReminderUnsupportedHookEvent`

A hook handler returned a reminder effect from a lifecycle event that cannot
inject reminders. Worker lifecycle events are observational and must not mutate
the active transcript with reminder effects.

Move the reminder to a session, tool, step, or persona hook that runs at a
turn-boundary mutation point.

Example fix:

```harn
register_session_hook("post_turn", { _event ->
  return {reminder: {body: "Review worker progress before continuing."}}
})
```