harn-parser 0.10.116

Parser, AST, and type checker for the Harn programming language
Documentation
# HARN-RMD-008

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
fn main(harness: Harness) {
  harness.agent.register_session_hook(
    "post_turn", { _hook_harness, _event ->
      return {
        reminder: {body: "Review worker progress before continuing."},
      }
    })
}
```