agl 22.0.4 → 23.0.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/changelog.md +10 -0
- package/dist_serve/bundle.js +2414 -2407
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.controller.d.ts +2 -0
- package/dist_ts/classes.controller.js +499 -22
- package/dist_ts/classes.flexservice.d.ts +5 -0
- package/dist_ts/classes.flexservice.js +131 -4
- package/dist_ts/classes.opencodeclient.d.ts +2 -0
- package/dist_ts/classes.opencodeclient.js +23 -1
- package/dist_ts/interfaces.flexipc.d.ts +18 -1
- package/dist_ts/interfaces.flexipc.js +42 -8
- package/dist_ts_interfaces/interfaces.d.ts +33 -2
- package/dist_ts_interfaces/interfaces.js +5 -2
- package/package.json +3 -3
- package/readme.md +6 -0
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.controller.ts +589 -22
- package/ts/classes.flexservice.ts +132 -2
- package/ts/classes.opencodeclient.ts +19 -0
- package/ts/interfaces.flexipc.ts +65 -7
- package/ts_interfaces/interfaces.ts +36 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/classes.controllersocketclient.ts +113 -12
- package/ts_web/elements.harnesscontrollerapp.ts +1272 -167
package/changelog.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-22 - 23.0.0
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
|
|
7
|
+
- stream live Assistant output through exact bounded deltas (streaming)
|
|
8
|
+
- Bump the controller protocol to 23 and the private Flex IPC protocol to 15 for snapshot hydration, ordered deltas, UTF-8 coordinates, and stream-gap barriers.
|
|
9
|
+
- Preserve one canonical browser transcript while applying targeted text, reasoning, tool, and terminal-state updates without broad root renders.
|
|
10
|
+
- Defer Markdown parsing until streaming settles and keep conversation Archive/Delete actions in the sidebar rather than the chat toolbar.
|
|
11
|
+
- Upgrade FlexHarness to 5.0.0 and dees-catalog to 6.12.1 for the new delta and targeted refresh contracts.
|
|
12
|
+
|
|
3
13
|
## 2026-08-21 - 22.0.4
|
|
4
14
|
|
|
5
15
|
### Fixes
|