agl 22.0.4 → 24.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.
Files changed (44) hide show
  1. package/changelog.md +21 -0
  2. package/dist_serve/bundle.js +2418 -2408
  3. package/dist_serve/bundle.js.map +1 -0
  4. package/dist_ts/00_commitinfo_data.js +1 -1
  5. package/dist_ts/classes.authstore.js +2 -2
  6. package/dist_ts/classes.browserresourcehost.d.ts +1 -0
  7. package/dist_ts/classes.browserresourcehost.js +7 -1
  8. package/dist_ts/classes.controller.d.ts +37 -5
  9. package/dist_ts/classes.controller.js +1491 -249
  10. package/dist_ts/classes.flexservice.d.ts +5 -0
  11. package/dist_ts/classes.flexservice.js +131 -4
  12. package/dist_ts/classes.opencodeclient.d.ts +2 -0
  13. package/dist_ts/classes.opencodeclient.js +23 -1
  14. package/dist_ts/classes.validation.d.ts +9 -1
  15. package/dist_ts/classes.validation.js +62 -7
  16. package/dist_ts/interfaces.flexipc.d.ts +18 -1
  17. package/dist_ts/interfaces.flexipc.js +42 -8
  18. package/dist_ts_interfaces/browsertransport.d.ts +72 -0
  19. package/dist_ts_interfaces/browsertransport.js +47 -0
  20. package/dist_ts_interfaces/index.d.ts +1 -0
  21. package/dist_ts_interfaces/index.js +2 -1
  22. package/dist_ts_interfaces/interfaces.d.ts +42 -7
  23. package/dist_ts_interfaces/interfaces.js +5 -3
  24. package/dist_ts_interfaces/requests.d.ts +20 -21
  25. package/package.json +7 -7
  26. package/readme.md +12 -2
  27. package/ts/00_commitinfo_data.ts +1 -1
  28. package/ts/classes.authstore.ts +1 -1
  29. package/ts/classes.browserresourcehost.ts +7 -0
  30. package/ts/classes.controller.ts +1960 -305
  31. package/ts/classes.flexservice.ts +132 -2
  32. package/ts/classes.opencodeclient.ts +19 -0
  33. package/ts/classes.validation.ts +77 -6
  34. package/ts/interfaces.flexipc.ts +65 -7
  35. package/ts_interfaces/browsertransport.ts +126 -0
  36. package/ts_interfaces/index.ts +1 -0
  37. package/ts_interfaces/interfaces.ts +46 -11
  38. package/ts_interfaces/requests.ts +23 -30
  39. package/ts_web/00_commitinfo_data.ts +1 -1
  40. package/ts_web/classes.browserviewtransport.ts +532 -0
  41. package/ts_web/classes.controllersocketclient.ts +119 -29
  42. package/ts_web/elements.harnesscontrollerapp.ts +1727 -287
  43. package/ts_web/index.ts +1 -0
  44. package/ts_web/plugins.ts +2 -0
package/changelog.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026-08-24 - 24.0.0
4
+
5
+ ### Breaking Changes
6
+
7
+ - upgrade browser view transport to protocol v24 (protocol)
8
+ - Bump the controller protocol version to 24 and document the new browser stream model.
9
+ - Replace browser view operate/event typed requests with paired authenticated event and operation streams using stream generations.
10
+ - Add browser transport packet codecs, validation, operation cancellation, recovery, and close-generation fencing.
11
+ - Update the web client to use the new browser view transport client and handle recoverable stream failures.
12
+ - Canonicalize persisted project directory identity to its ancestry before storage.
13
+
14
+ ## 2026-08-22 - 23.0.0
15
+
16
+ ### Breaking Changes
17
+
18
+ - stream live Assistant output through exact bounded deltas (streaming)
19
+ - 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.
20
+ - Preserve one canonical browser transcript while applying targeted text, reasoning, tool, and terminal-state updates without broad root renders.
21
+ - Defer Markdown parsing until streaming settles and keep conversation Archive/Delete actions in the sidebar rather than the chat toolbar.
22
+ - Upgrade FlexHarness to 5.0.0 and dees-catalog to 6.12.1 for the new delta and targeted refresh contracts.
23
+
3
24
  ## 2026-08-21 - 22.0.4
4
25
 
5
26
  ### Fixes