@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/docs/changelog.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes documented here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
4
4
|
|
|
5
|
+
## [0.1.4] — 2026-05-17
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Reference Claude Code adapter (`playground/adapter.mjs`) now associates `Agent` tool calls with their subagent transcripts (`~/.claude/projects/<repo>/<sessionId>/subagents/agent-*.jsonl`). The subagent's description, agent type, tool-use counts, token totals, and final reply are embedded as Markdown in the parent `Agent` tool's `function_call_output` panel.
|
|
10
|
+
|
|
11
|
+
### Notes
|
|
12
|
+
|
|
13
|
+
- No library API or runtime change in `@codexview/react`. The feature lives entirely in the playground reference adapter.
|
|
14
|
+
- Pairing strategy: primary key is the parent's `toolUseResult.agentId`; secondary fallback is FIFO over subagent files in mtime order (covers legacy/format-drift cases).
|
|
15
|
+
|
|
5
16
|
## [0.1.3] — 2026-05-16
|
|
6
17
|
|
|
7
18
|
### Documentation
|