this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add old Codex entry types to CodexEntry union

Old format (pre-October 2025) uses 'message' and 'function_call' at the
top level rather than wrapped in response_item.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice 2671b22d 1f874d19

+1 -1
+1 -1
src/core/codex-reader.ts
··· 5 5 // Codex JSONL entry types 6 6 interface CodexEntry { 7 7 timestamp: string; 8 - type: 'session_meta' | 'event_msg' | 'response_item' | 'turn_context'; 8 + type: 'session_meta' | 'event_msg' | 'response_item' | 'turn_context' | 'message' | 'function_call'; 9 9 payload: unknown; 10 10 } 11 11