aa0a23293f
- New ProcessLogger in workflow-util: process-scoped JSONL logger
- Entry schema: {ts, pid, tag, msg, thread, workflow}
- Storage: ~/.uncaged/workflow/logs/YYYY-MM-DD.jsonl
- Auto logs process init info (argv, node version, context)
- cli-workflow thread commands fully instrumented:
- thread start/step, moderator evaluate, agent spawn/done
- thread archived, error paths
Refs #411, #412, #410
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
export { createProcessLogger } from "./process-logger.js";
|
|
export type {
|
|
CreateProcessLoggerOptions,
|
|
ProcessLogFn,
|
|
ProcessLogger,
|
|
ProcessLoggerContext,
|
|
} from "./types.js";
|