@codexview/react 0.1.3 → 0.2.0
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 +5 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/changelog.md +22 -0
- package/package.json +2 -2
- package/LICENSE +0 -21
- package/docs/superpowers/plans/2026-05-15-claude-code-adapter-implementation.md +0 -2005
- package/docs/superpowers/plans/2026-05-15-codexview-implementation.md +0 -3903
- package/docs/superpowers/specs/2026-05-15-claude-code-adapter-design.md +0 -402
- package/docs/superpowers/specs/2026-05-15-codexview-design.md +0 -661
package/docs/changelog.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
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.2.0] — 2026-05-17
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Repo restructured as a pnpm workspace monorepo (`packages/react`, `packages/cli`, `packages/adapters`). No `@codexview/react` API change — source under `packages/react/src/` is bit-for-bit identical to 0.1.4. Re-published to keep semver in step with the parallel cli + adapters releases.
|
|
10
|
+
|
|
11
|
+
### Notes
|
|
12
|
+
|
|
13
|
+
- The reference Claude Code adapter that lived under `playground/adapter.mjs` has moved into the new [`@codexview/adapters`](https://www.npmjs.com/package/@codexview/adapters) package and gained two opt-in options (`patchMode`, `subagents`). The playground in this repo now re-exports from that package; external consumers can install it alongside `@codexview/react`.
|
|
14
|
+
- No code changes are required to upgrade from 0.1.4 — re-installation only.
|
|
15
|
+
|
|
16
|
+
## [0.1.4] — 2026-05-17
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- 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.
|
|
21
|
+
|
|
22
|
+
### Notes
|
|
23
|
+
|
|
24
|
+
- No library API or runtime change in `@codexview/react`. The feature lives entirely in the playground reference adapter.
|
|
25
|
+
- 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).
|
|
26
|
+
|
|
5
27
|
## [0.1.3] — 2026-05-16
|
|
6
28
|
|
|
7
29
|
### Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codexview/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"react-dom": "^18.3.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
+
"@codexview/adapters": "workspace:*",
|
|
61
62
|
"@testing-library/jest-dom": "^6.4.6",
|
|
62
63
|
"@testing-library/react": "^16.0.0",
|
|
63
64
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -77,7 +78,6 @@
|
|
|
77
78
|
"engines": {
|
|
78
79
|
"node": ">=20"
|
|
79
80
|
},
|
|
80
|
-
"packageManager": "pnpm@10.28.2",
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"react-markdown": "^10.1.0",
|
|
83
83
|
"remark-gfm": "^4.0.1"
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Jay Liu (maxazure)
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|