holon 0.14.1

A headless, event-driven runtime for long-lived agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { appendFile } from "node:fs/promises";

export async function appendEvent(kind, payload) {
  await appendFile(
    ".events.jsonl",
    JSON.stringify({ kind, payload }) + "\n",
    "utf8"
  );
}

export async function appendBrief(text) {
  await appendFile(
    ".briefs.jsonl",
    JSON.stringify({ kind: "result", text }) + "\n",
    "utf8"
  );
}