@codexview/react 0.1.1 → 0.1.3
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/LICENSE +21 -0
- package/README.md +20 -5
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/changelog.md +23 -0
- package/docs/superpowers/plans/2026-05-15-claude-code-adapter-implementation.md +2005 -0
- package/docs/superpowers/specs/2026-05-15-claude-code-adapter-design.md +402 -0
- package/package.json +6 -5
package/docs/changelog.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.3] — 2026-05-16
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
- README now reflects multi-source support: the library renders `ChatStreamEvent[]` and reference adapters in `playground/adapter.mjs` cover OpenAI Codex CLI rollouts, AgentWeb codex-team status logs, and Claude Code main sessions (Bash / TodoWrite / Edit / Write / MultiEdit / `mcp__*`).
|
|
10
|
+
- Fixed install snippet — package name is `@codexview/react`, not `codexview`.
|
|
11
|
+
- Refined `package.json` description to match the new reality.
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- `VERSION` export was stuck at `'0.1.1'`; now matches `package.json`.
|
|
16
|
+
|
|
17
|
+
### Notes
|
|
18
|
+
|
|
19
|
+
- No library API or runtime behavior changes. The Claude Code adapter ships as a reference implementation under `playground/` and is not yet exported from `@codexview/react`.
|
|
20
|
+
|
|
21
|
+
## [0.1.2] — 2026-05-15
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- First release published via GitHub Actions OIDC trusted publishing (no
|
|
26
|
+
long-lived NPM token; provenance attestation included).
|
|
27
|
+
|
|
5
28
|
## [0.1.1] — 2026-05-15
|
|
6
29
|
|
|
7
30
|
### Added
|