@codexview/react 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/changelog.md +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,9 +43,8 @@ CodexView itself only renders `ChatStreamEvent[]`. Hosts convert their raw logs
|
|
|
43
43
|
|
|
44
44
|
- ✅ **OpenAI Codex CLI** rollouts (`~/.codex/sessions/.../rollout-*.jsonl`)
|
|
45
45
|
- ✅ **AgentWeb codex-team** status logs (`~/Projects/agentweb/.codex-team/runs/*/events.jsonl`)
|
|
46
|
-
- ✅ **Claude Code** main sessions (`~/.claude/projects/<repo>/<sessionId>.jsonl`) — Bash / TodoWrite / Edit / Write / MultiEdit / `mcp__*` tools
|
|
46
|
+
- ✅ **Claude Code** main sessions (`~/.claude/projects/<repo>/<sessionId>.jsonl`) — Bash / TodoWrite / Edit / Write / MultiEdit / `mcp__*` / `Agent` tools; subagent transcripts are loaded from the `subagents/` subfolder and embedded as a Markdown summary under each `Agent` tool call
|
|
47
47
|
- 🔲 **OpenCode** — planned
|
|
48
|
-
- 🔲 **Claude Code subagents** (`subagents/agent-*.jsonl`) — planned (will link to the parent `Task` tool call)
|
|
49
48
|
|
|
50
49
|
These adapters are not published as part of `@codexview/react` yet. To try them locally, clone the repo and run `pnpm playground` — it scans your home directory for sessions across all three supported formats.
|
|
51
50
|
|
package/dist/index.d.ts
CHANGED
|
@@ -35,4 +35,4 @@ export { ItemErrorBoundary } from './components/ItemErrorBoundary.js';
|
|
|
35
35
|
export type { ItemErrorBoundaryProps } from './components/ItemErrorBoundary.js';
|
|
36
36
|
export { Markdown } from './components/Markdown.js';
|
|
37
37
|
export type { MarkdownProps } from './components/Markdown.js';
|
|
38
|
-
export declare const VERSION = "0.1.
|
|
38
|
+
export declare const VERSION = "0.1.4";
|
package/dist/index.js
CHANGED
|
@@ -13494,7 +13494,7 @@ function renderItem(item, c, disableSmoothStream) {
|
|
|
13494
13494
|
return /* @__PURE__ */ jsx(c.RawEventBlock, { item });
|
|
13495
13495
|
}
|
|
13496
13496
|
}
|
|
13497
|
-
const VERSION = "0.1.
|
|
13497
|
+
const VERSION = "0.1.4";
|
|
13498
13498
|
export {
|
|
13499
13499
|
CodexTranscript,
|
|
13500
13500
|
EMPTY_MODEL,
|